From 3a203986be927628c6bc4b60948e797ef8378c99 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Tue, 22 Apr 2025 22:43:47 +0900 Subject: [PATCH 01/27] GH-790 Add call/execute --- data/ai/function/call/execute/.mcfunction | 4 ++++ data/ai/function/call/execute/all.mcfunction | 7 +++++++ .../execute/apply_global_condition.mcfunction | 6 ++++++ .../execute/apply_global_settings.mcfunction | 5 +++++ data/ai/function/call/execute/call.mcfunction | 5 +++++ data/ai/function/call/execute/fork.mcfunction | 5 +++++ data/ai/function/call/execute/if.mcfunction | 7 +++++++ .../ai/function/call/execute/random.mcfunction | 18 ++++++++++++++++++ 8 files changed, 57 insertions(+) create mode 100644 data/ai/function/call/execute/.mcfunction create mode 100644 data/ai/function/call/execute/all.mcfunction create mode 100644 data/ai/function/call/execute/apply_global_condition.mcfunction create mode 100644 data/ai/function/call/execute/apply_global_settings.mcfunction create mode 100644 data/ai/function/call/execute/call.mcfunction create mode 100644 data/ai/function/call/execute/fork.mcfunction create mode 100644 data/ai/function/call/execute/if.mcfunction create mode 100644 data/ai/function/call/execute/random.mcfunction diff --git a/data/ai/function/call/execute/.mcfunction b/data/ai/function/call/execute/.mcfunction new file mode 100644 index 000000000..55bdc7e49 --- /dev/null +++ b/data/ai/function/call/execute/.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/execute/ +#先頭にGlobal Settingsあれば適用 +execute unless data storage mob_data: CallList[0].Settings[{Global:1b}] run function ai:call/execute/fork +execute if data storage mob_data: CallList[0].Settings[{Global:1b}] run function ai:call/execute/apply_global_settings diff --git a/data/ai/function/call/execute/all.mcfunction b/data/ai/function/call/execute/all.mcfunction new file mode 100644 index 000000000..c354fcb0d --- /dev/null +++ b/data/ai/function/call/execute/all.mcfunction @@ -0,0 +1,7 @@ +#> ai:call/execute/all +#順番にすべて実行 +data modify storage mob_data: Call set from storage mob_data: CallList[0] +function ai:call/execute/call + +data remove storage mob_data: CallList[0] +execute if data storage mob_data: CallList[0] run function ai:call/execute/all diff --git a/data/ai/function/call/execute/apply_global_condition.mcfunction b/data/ai/function/call/execute/apply_global_condition.mcfunction new file mode 100644 index 000000000..ea4c2ef03 --- /dev/null +++ b/data/ai/function/call/execute/apply_global_condition.mcfunction @@ -0,0 +1,6 @@ +#> ai:call/execute/apply_global_condition +#Execute If|Random時 +#先頭にGlobalコンディションがあれば適用 +data modify storage mob_data: Call set from storage mob_data: CallList[0] +function ai:call/condition/logic/ +data remove storage mob_data: CallList[0].Condition[{Global:1b}] diff --git a/data/ai/function/call/execute/apply_global_settings.mcfunction b/data/ai/function/call/execute/apply_global_settings.mcfunction new file mode 100644 index 000000000..94812aa07 --- /dev/null +++ b/data/ai/function/call/execute/apply_global_settings.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/execute/apply_global_settings +#先頭にGlobal Settingsあれば適用 +data modify storage mob_data: Call set from storage mob_data: CallList[0] +data remove storage mob_data: CallList[0].Settings +function ai:call/settings/init diff --git a/data/ai/function/call/execute/call.mcfunction b/data/ai/function/call/execute/call.mcfunction new file mode 100644 index 000000000..de6e74684 --- /dev/null +++ b/data/ai/function/call/execute/call.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/execute/apply_global_settings +data modify storage mob_data: Success set value 1b +execute if data storage mob_data: Call.Condition store result storage mob_data: Success byte 1 run function ai:call/condition/logic/ +execute if data storage mob_data: {Success:1b} if data storage mob_data: Call.Settings run function ai:call/settings/init +execute if data storage mob_data: {Success:1b} unless data storage mob_data: Call.Settings run function ai:call/call diff --git a/data/ai/function/call/execute/fork.mcfunction b/data/ai/function/call/execute/fork.mcfunction new file mode 100644 index 000000000..2b108ca3f --- /dev/null +++ b/data/ai/function/call/execute/fork.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/execute/fork +execute unless data storage mob_data: CallList[0].Execute if data storage mob_data: CallList[].Name run function ai:call/execute/all +execute if data storage mob_data: CallList[0].Execute if data storage mob_data: CallList[0].Condition[{Global:1b}] run function ai:call/execute/apply_global_condition +execute if data storage mob_data: CallList[{Execute:"Random"}] run function ai:call/execute/random +execute if data storage mob_data: CallList[{Execute:"If"}] run function ai:call/execute/if diff --git a/data/ai/function/call/execute/if.mcfunction b/data/ai/function/call/execute/if.mcfunction new file mode 100644 index 000000000..d21517cd4 --- /dev/null +++ b/data/ai/function/call/execute/if.mcfunction @@ -0,0 +1,7 @@ +#> ai:call/execute/if +#条件を満たすまで順番に確認 +data modify storage mob_data: Call set from storage mob_data: CallList[0] +function ai:call/execute/call + +data remove storage mob_data: CallList[0] +execute if data storage mob_data: CallList[0] if data storage mob_data: {Success:0b} run function ai:call/execute/if diff --git a/data/ai/function/call/execute/random.mcfunction b/data/ai/function/call/execute/random.mcfunction new file mode 100644 index 000000000..d144f770d --- /dev/null +++ b/data/ai/function/call/execute/random.mcfunction @@ -0,0 +1,18 @@ +#> ai:call/execute/random +#SkillListからランダムで1つ選ぶ 10個まで +execute store result score _ Calc run function calc:random +execute store result score _ _ if data storage mob_data: CallList[] +scoreboard players operation _ Calc %= _ _ + +execute if score _ Calc matches 0 run data modify storage mob_data: Call set from storage mob_data: CallList[0] +execute if score _ Calc matches 1 run data modify storage mob_data: Call set from storage mob_data: CallList[1] +execute if score _ Calc matches 2 run data modify storage mob_data: Call set from storage mob_data: CallList[2] +execute if score _ Calc matches 3 run data modify storage mob_data: Call set from storage mob_data: CallList[3] +execute if score _ Calc matches 4 run data modify storage mob_data: Call set from storage mob_data: CallList[4] +execute if score _ Calc matches 5 run data modify storage mob_data: Call set from storage mob_data: CallList[5] +execute if score _ Calc matches 6 run data modify storage mob_data: Call set from storage mob_data: CallList[6] +execute if score _ Calc matches 7 run data modify storage mob_data: Call set from storage mob_data: CallList[7] +execute if score _ Calc matches 8 run data modify storage mob_data: Call set from storage mob_data: CallList[8] +execute if score _ Calc matches 9 run data modify storage mob_data: Call set from storage mob_data: CallList[9] + +function ai:call/execute/call From b1594741f2d32dda268a6a12851828e27dcce53e Mon Sep 17 00:00:00 2001 From: Ponpon Date: Tue, 22 Apr 2025 22:51:39 +0900 Subject: [PATCH 02/27] GH-790 Add call/condition/logic --- .../function/call/condition/logic/.mcfunction | 10 ++++++++++ .../call/condition/logic/and.mcfunction | 13 +++++++++++++ .../function/call/condition/logic/or.mcfunction | 13 +++++++++++++ .../call/condition/logic/single.mcfunction | 17 +++++++++++++++++ 4 files changed, 53 insertions(+) create mode 100644 data/ai/function/call/condition/logic/.mcfunction create mode 100644 data/ai/function/call/condition/logic/and.mcfunction create mode 100644 data/ai/function/call/condition/logic/or.mcfunction create mode 100644 data/ai/function/call/condition/logic/single.mcfunction diff --git a/data/ai/function/call/condition/logic/.mcfunction b/data/ai/function/call/condition/logic/.mcfunction new file mode 100644 index 000000000..f99688335 --- /dev/null +++ b/data/ai/function/call/condition/logic/.mcfunction @@ -0,0 +1,10 @@ +#> ai:call/condition/logic/ +# OR,AND未指定の場合ANDにする +execute unless data storage mob_data: Call.Condition[].Logic run data modify storage mob_data: Call.Condition[0].Logic set value "AND" + +# OR,ANDに分岐 +execute if data storage mob_data: Call.Condition[{Logic:"OR"}] run function ai:call/condition/logic/or +execute if data storage mob_data: Call.Condition[{Logic:"AND"}] run function ai:call/condition/logic/and + +#スキルを実行するフラグが立っていればスキル実行 +return run scoreboard players get _ Ret diff --git a/data/ai/function/call/condition/logic/and.mcfunction b/data/ai/function/call/condition/logic/and.mcfunction new file mode 100644 index 000000000..4336cff43 --- /dev/null +++ b/data/ai/function/call/condition/logic/and.mcfunction @@ -0,0 +1,13 @@ +#> ai:call/condition/logic/and +#AND条件 + +# Condition[0]を試す +function ai:call/condition/logic/single + +# 成功時次のConditionを試す。 +execute if score _ Calc matches 1 if data storage mob_data: Call.Condition[0] run function ai:call/condition/logic/and + +#失敗時スキルを実行するフラグを落とす +execute unless score _ Calc matches 1 run scoreboard players set _ Ret 0 +#全て成功時スキルを実行するフラグを立てる +execute if score _ Calc matches 1 unless data storage mob_data: Call.Condition[0] run scoreboard players set _ Ret 1 diff --git a/data/ai/function/call/condition/logic/or.mcfunction b/data/ai/function/call/condition/logic/or.mcfunction new file mode 100644 index 000000000..7674a3c8c --- /dev/null +++ b/data/ai/function/call/condition/logic/or.mcfunction @@ -0,0 +1,13 @@ +#> ai:call/condition/logic/or +#OR条件 + +# Condition[0]を試す +function ai:call/condition/logic/single + +#失敗時次のConditionを試す。 +execute unless score _ Calc matches 1 if data storage mob_data: Call.Condition[0] run function ai:call/condition/logic/or + +#全て失敗時スキルを実行するフラグを落とす +execute unless score _ Calc matches 1 unless data storage mob_data: Call.Condition[0] run scoreboard players set _ Ret 0 +#成功時スキルを実行するフラグを立てる +execute if score _ Calc matches 1 run scoreboard players set _ Ret 1 diff --git a/data/ai/function/call/condition/logic/single.mcfunction b/data/ai/function/call/condition/logic/single.mcfunction new file mode 100644 index 000000000..d254d734a --- /dev/null +++ b/data/ai/function/call/condition/logic/single.mcfunction @@ -0,0 +1,17 @@ +#> ai:call/condition/logic/single +#条件フラグをリセット +scoreboard players set _ Calc 0 + +data modify storage mob_data: Condition set from storage mob_data: Call.Condition[0] +data remove storage mob_data: Call.Condition[0] + +#条件フラグ +function ai:call/condition/condition/ + +#Notフラグ +execute store success score _ _ if data storage mob_data: Condition{Inverse:1b} +scoreboard players operation _ Calc += _ _ + +# グローバルコンディション +execute if data storage mob_data: Condition{Global:1b} if score _ Calc matches 1 run data modify storage mob_data: CallList[].Condition append value {Name:"Pass",Pass:1b} +execute if data storage mob_data: Condition{Global:1b} if score _ Calc matches 0 run data modify storage mob_data: CallList[].Condition append value {Name:"Pass",Pass:0b} From 408869b0a61dff31ea9d27cca45e30f2e6b03e81 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 23 Apr 2025 22:17:09 +0900 Subject: [PATCH 03/27] GH-790 Add call/settings --- data/ai/function/call/settings/.mcfunction | 28 +++++++++++++++++++ .../function/call/settings/align/.mcfunction | 4 +++ .../call/settings/align/x/.mcfunction | 3 ++ .../call/settings/align/y/.mcfunction | 3 ++ .../call/settings/align/z/.mcfunction | 3 ++ .../function/call/settings/anchor.mcfunction | 3 ++ data/ai/function/call/settings/as.mcfunction | 5 ++++ data/ai/function/call/settings/at.mcfunction | 3 ++ .../call/settings/calc/add_pos.mcfunction | 10 +++++++ .../call/settings/calc/direction.mcfunction | 16 +++++++++++ .../settings/calc/range/direction.mcfunction | 16 +++++++++++ .../call/settings/calc/range/speed.mcfunction | 9 ++++++ .../call/settings/calc/speed.mcfunction | 11 ++++++++ .../call/settings/direction.mcfunction | 7 +++++ .../function/call/settings/facing.mcfunction | 4 +++ .../ai/function/call/settings/init.mcfunction | 10 +++++++ .../call/settings/rotation.mcfunction | 8 ++++++ .../function/call/settings/target/.mcfunction | 10 +++++++ .../call/settings/target/child.mcfunction | 4 +++ .../call/settings/target/find.mcfunction | 4 +++ .../call/settings/target/fork.mcfunction | 24 ++++++++++++++++ .../call/settings/target/loop.mcfunction | 5 ++++ .../call/settings/target/parent.mcfunction | 4 +++ 23 files changed, 194 insertions(+) create mode 100644 data/ai/function/call/settings/.mcfunction create mode 100644 data/ai/function/call/settings/align/.mcfunction create mode 100644 data/ai/function/call/settings/align/x/.mcfunction create mode 100644 data/ai/function/call/settings/align/y/.mcfunction create mode 100644 data/ai/function/call/settings/align/z/.mcfunction create mode 100644 data/ai/function/call/settings/anchor.mcfunction create mode 100644 data/ai/function/call/settings/as.mcfunction create mode 100644 data/ai/function/call/settings/at.mcfunction create mode 100644 data/ai/function/call/settings/calc/add_pos.mcfunction create mode 100644 data/ai/function/call/settings/calc/direction.mcfunction create mode 100644 data/ai/function/call/settings/calc/range/direction.mcfunction create mode 100644 data/ai/function/call/settings/calc/range/speed.mcfunction create mode 100644 data/ai/function/call/settings/calc/speed.mcfunction create mode 100644 data/ai/function/call/settings/direction.mcfunction create mode 100644 data/ai/function/call/settings/facing.mcfunction create mode 100644 data/ai/function/call/settings/init.mcfunction create mode 100644 data/ai/function/call/settings/rotation.mcfunction create mode 100644 data/ai/function/call/settings/target/.mcfunction create mode 100644 data/ai/function/call/settings/target/child.mcfunction create mode 100644 data/ai/function/call/settings/target/find.mcfunction create mode 100644 data/ai/function/call/settings/target/fork.mcfunction create mode 100644 data/ai/function/call/settings/target/loop.mcfunction create mode 100644 data/ai/function/call/settings/target/parent.mcfunction diff --git a/data/ai/function/call/settings/.mcfunction b/data/ai/function/call/settings/.mcfunction new file mode 100644 index 000000000..8d8c60ef0 --- /dev/null +++ b/data/ai/function/call/settings/.mcfunction @@ -0,0 +1,28 @@ +#> ai:call/settings/ +#{Name:"As",Target:{}} +#{Name:"At",Target:{}} +#{Name:"Direction",Target:{},Direction:[0f,0f],DirectionRange:[0f,0f],Speed:1d,SpeedRange:1d} +#{Name:"Rotation",Target:{},Flip:1b,Direction:[0f,0f],DirectionRange:[0f,0f],Absolute:{Horizontal:1b,Vertical:1b}} +#{Name:"Facing",Target:{}} +#{Name:"Anchor",Anchor:"Eyes|Feet"} + +#Target:{Look:"self|player|enemy|all",Radius:10,IgnoreBlocks:1b} + +data modify storage mob_data: Settings set from storage mob_data: SettingsList[0] +data remove storage mob_data: SettingsList[0] + +execute unless data storage mob_data: Settings.Name unless data storage mob_data: Settings{Global:1b} if score 00000000-0000-0000-0000-000000000002 _ matches 1 at 0-0-0-0-1 run function ai:call/call +execute unless data storage mob_data: Settings.Name if data storage mob_data: Settings{Global:1b} if score 00000000-0000-0000-0000-000000000002 _ matches 1 at 0-0-0-0-1 run function ai:call/execute/fork + +#Target有無フラグ:Target NBTあるが見つからなかったとき0で失敗 +scoreboard players set 00000000-0000-0000-0000-000000000002 _ 1 + +execute if data storage mob_data: Settings{Name:"At"} run function ai:call/settings/at +execute if data storage mob_data: Settings{Name:"Direction"} run function ai:call/settings/direction +execute if data storage mob_data: Settings{Name:"Rotation"} run function ai:call/settings/rotation +execute if data storage mob_data: Settings{Name:"Facing"} run function ai:call/settings/facing +execute if data storage mob_data: Settings{Name:"Anchor"} run function ai:call/settings/anchor +execute if data storage mob_data: Settings{Name:"As"} run function ai:call/settings/as +execute if data storage mob_data: Settings{Name:"Align"} run function ai:call/settings/align/ + +execute if data storage mob_data: Settings.Name if score 00000000-0000-0000-0000-000000000002 _ matches 1 at 0-0-0-0-1 run function ai:call/settings/ diff --git a/data/ai/function/call/settings/align/.mcfunction b/data/ai/function/call/settings/align/.mcfunction new file mode 100644 index 000000000..611075d4f --- /dev/null +++ b/data/ai/function/call/settings/align/.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/settings/align/ +execute if data storage mob_data: Settings{Vector:[X]} run function ai:call/settings/align/x/ +execute if data storage mob_data: Settings{Vector:[Y]} run function ai:call/settings/align/y/ +execute if data storage mob_data: Settings{Vector:[Z]} run function ai:call/settings/align/z/ diff --git a/data/ai/function/call/settings/align/x/.mcfunction b/data/ai/function/call/settings/align/x/.mcfunction new file mode 100644 index 000000000..c4efd597b --- /dev/null +++ b/data/ai/function/call/settings/align/x/.mcfunction @@ -0,0 +1,3 @@ +#> ai:call/settings/align/x/ +execute unless data storage mob_data: Settings{Center:[X]} at 0-0-0-0-1 align x run tp 0-0-0-0-1 ~ ~ ~ +execute if data storage mob_data: Settings{Center:[X]} at 0-0-0-0-1 align x run tp 0-0-0-0-1 ~0.5 ~ ~ diff --git a/data/ai/function/call/settings/align/y/.mcfunction b/data/ai/function/call/settings/align/y/.mcfunction new file mode 100644 index 000000000..71c4cb454 --- /dev/null +++ b/data/ai/function/call/settings/align/y/.mcfunction @@ -0,0 +1,3 @@ +#> ai:call/settings/align/y/ +execute unless data storage mob_data: Settings{Center:[Y]} at 0-0-0-0-1 align y run tp 0-0-0-0-1 ~ ~ ~ +execute if data storage mob_data: Settings{Center:[Y]} at 0-0-0-0-1 align y run tp 0-0-0-0-1 ~ ~0.5 ~ diff --git a/data/ai/function/call/settings/align/z/.mcfunction b/data/ai/function/call/settings/align/z/.mcfunction new file mode 100644 index 000000000..29fa88005 --- /dev/null +++ b/data/ai/function/call/settings/align/z/.mcfunction @@ -0,0 +1,3 @@ +#> ai:call/settings/align/z/ +execute unless data storage mob_data: Settings{Center:[Z]} at 0-0-0-0-1 align z run tp 0-0-0-0-1 ~ ~ ~ +execute if data storage mob_data: Settings{Center:[Z]} at 0-0-0-0-1 align z run tp 0-0-0-0-1 ~ ~ ~0.5 diff --git a/data/ai/function/call/settings/anchor.mcfunction b/data/ai/function/call/settings/anchor.mcfunction new file mode 100644 index 000000000..311b61182 --- /dev/null +++ b/data/ai/function/call/settings/anchor.mcfunction @@ -0,0 +1,3 @@ +#> ai:call/settings/anchor +execute if data storage mob_data: Settings{Anchor:"Eyes"} anchored eyes run tp 0-0-0-0-1 ^ ^ ^ ~ ~ +execute if data storage mob_data: Settings{Anchor:"Feet"} anchored feet run tp 0-0-0-0-1 ^ ^ ^ ~ ~ diff --git a/data/ai/function/call/settings/as.mcfunction b/data/ai/function/call/settings/as.mcfunction new file mode 100644 index 000000000..b62eeaa68 --- /dev/null +++ b/data/ai/function/call/settings/as.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/settings/as +execute if data storage mob_data: Settings.Target run function ai:call/settings/target/ +execute if score 00000000-0000-0000-0000-000000000002 _ matches 1 positioned as 0-0-0-0-2 as @e[predicate=entity:all_mob,tag=Unmoved,distance=..0.01,limit=1,sort=nearest] run tag @s add TargetChanged +execute if score 00000000-0000-0000-0000-000000000002 _ matches 1 positioned as 0-0-0-0-2 as @e[predicate=entity:all_mob,distance=..0.01,limit=1,sort=nearest] positioned as 0-0-0-0-1 run function ai:call/settings/ +execute if score 00000000-0000-0000-0000-000000000002 _ matches 1 positioned as 0-0-0-0-2 as @e[predicate=entity:all_mob,tag=Unmoved,distance=..0.01,limit=1,sort=nearest] run tag @s remove TargetChanged diff --git a/data/ai/function/call/settings/at.mcfunction b/data/ai/function/call/settings/at.mcfunction new file mode 100644 index 000000000..4e09ab263 --- /dev/null +++ b/data/ai/function/call/settings/at.mcfunction @@ -0,0 +1,3 @@ +#> ai:call/settings/at +execute if data storage mob_data: Settings.Target run function ai:call/settings/target/ +execute if data storage mob_data: Settings.Target if score 00000000-0000-0000-0000-000000000002 _ matches 1 at 0-0-0-0-2 run tp 0-0-0-0-1 ^ ^ ^ ~ ~ diff --git a/data/ai/function/call/settings/calc/add_pos.mcfunction b/data/ai/function/call/settings/calc/add_pos.mcfunction new file mode 100644 index 000000000..bd5d3cc51 --- /dev/null +++ b/data/ai/function/call/settings/calc/add_pos.mcfunction @@ -0,0 +1,10 @@ +#> ai:call/settings/calc/add_pos +execute store result score _ Calc run data get entity 0-0-0-0-1 Pos[0] 100 +execute store result score _ _ run data get entity 0-0-0-0-0 Pos[0] 100 +execute store result entity 0-0-0-0-1 Pos[0] double 0.01 run scoreboard players operation _ Calc += _ _ +execute store result score _ Calc run data get entity 0-0-0-0-1 Pos[1] 100 +execute store result score _ _ run data get entity 0-0-0-0-0 Pos[1] 100 +execute store result entity 0-0-0-0-1 Pos[1] double 0.01 run scoreboard players operation _ Calc += _ _ +execute store result score _ Calc run data get entity 0-0-0-0-1 Pos[2] 100 +execute store result score _ _ run data get entity 0-0-0-0-0 Pos[2] 100 +execute store result entity 0-0-0-0-1 Pos[2] double 0.01 run scoreboard players operation _ Calc += _ _ diff --git a/data/ai/function/call/settings/calc/direction.mcfunction b/data/ai/function/call/settings/calc/direction.mcfunction new file mode 100644 index 000000000..c7f3dffa4 --- /dev/null +++ b/data/ai/function/call/settings/calc/direction.mcfunction @@ -0,0 +1,16 @@ +#> ai:call/settings/calc/direction +#向きを設定 +#Marker召喚 +execute in area:control_area positioned 0.0 0.0 0.0 run function calc:geometry/tp_00000 +#向きを設定 +execute if data storage mob_data: Settings.DirectionRange run function ai:call/settings/calc/range/direction +#水平 +execute store result score _ Calc run data get entity 0-0-0-0-1 Rotation[0] 100 +execute if data storage mob_data: Settings.Absolute{Horizontal:1b} run scoreboard players set _ Calc 0 +execute store result score _ _ run data get storage mob_data: Settings.Direction[0] 100 +execute store result entity 0-0-0-0-0 Rotation[0] float 0.01 run scoreboard players operation _ Calc += _ _ +#垂直 +execute store result score _ Calc run data get entity 0-0-0-0-1 Rotation[1] 100 +execute if data storage mob_data: Settings.Absolute{Vertical:1b} run scoreboard players set _ Calc 0 +execute store result score _ _ run data get storage mob_data: Settings.Direction[1] 100 +execute store result entity 0-0-0-0-0 Rotation[1] float 0.01 run scoreboard players operation _ Calc += _ _ diff --git a/data/ai/function/call/settings/calc/range/direction.mcfunction b/data/ai/function/call/settings/calc/range/direction.mcfunction new file mode 100644 index 000000000..b183aad7b --- /dev/null +++ b/data/ai/function/call/settings/calc/range/direction.mcfunction @@ -0,0 +1,16 @@ +#> ai:call/settings/calc/range/direction +### Directionに0~DirectionRangeを足す +# 水平 +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Settings.DirectionRange[0] 100 +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Settings.Direction[0] 100 +execute store result storage mob_data: Settings.Direction[0] float 0.01 run scoreboard players operation _ _ += _ Calc +# 垂直 +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Settings.DirectionRange[1] 100 +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Settings.Direction[1] 100 +execute store result storage mob_data: Settings.Direction[1] float 0.01 run scoreboard players operation _ _ += _ Calc diff --git a/data/ai/function/call/settings/calc/range/speed.mcfunction b/data/ai/function/call/settings/calc/range/speed.mcfunction new file mode 100644 index 000000000..87d3b4ae4 --- /dev/null +++ b/data/ai/function/call/settings/calc/range/speed.mcfunction @@ -0,0 +1,9 @@ +#> ai:call/settings/calc/range/speed +### Speedに0~SpeedRangeを足す +# 水平 +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Settings.SpeedRange 100 +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Settings.Speed 100 +execute store result storage mob_data: Settings.Speed double 0.01 run scoreboard players operation _ _ += _ Calc diff --git a/data/ai/function/call/settings/calc/speed.mcfunction b/data/ai/function/call/settings/calc/speed.mcfunction new file mode 100644 index 000000000..edec260f7 --- /dev/null +++ b/data/ai/function/call/settings/calc/speed.mcfunction @@ -0,0 +1,11 @@ +#> ai:call/settings/calc/speed +#速度を設定 +execute as 0-0-0-0-0 at @s run tp @s ^ ^ ^1 +execute if data storage mob_data: Settings.SpeedRange run function ai:call/settings/calc/range/speed +execute store result score _ _ run data get storage mob_data: Settings.Speed 100 +execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[0] 100 +execute store result entity 0-0-0-0-0 Pos[0] double 0.0001 run scoreboard players operation _ Calc *= _ _ +execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[1] 100 +execute store result entity 0-0-0-0-0 Pos[1] double 0.0001 run scoreboard players operation _ Calc *= _ _ +execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[2] 100 +execute store result entity 0-0-0-0-0 Pos[2] double 0.0001 run scoreboard players operation _ Calc *= _ _ diff --git a/data/ai/function/call/settings/direction.mcfunction b/data/ai/function/call/settings/direction.mcfunction new file mode 100644 index 000000000..aed985c10 --- /dev/null +++ b/data/ai/function/call/settings/direction.mcfunction @@ -0,0 +1,7 @@ +#> ai:call/settings/direction +execute if data storage mob_data: Settings.Target run function ai:call/settings/target/ +execute if data storage mob_data: Settings.Target if score 00000000-0000-0000-0000-000000000002 _ matches 1 positioned as 0-0-0-0-2 run tp 0-0-0-0-1 ^ ^ ^ ~ ~ + +execute if data storage mob_data: Settings.Speed run function ai:call/settings/calc/direction +execute if data storage mob_data: Settings.Speed run function ai:call/settings/calc/speed +execute if data storage mob_data: Settings.Speed run function ai:call/settings/calc/add_pos diff --git a/data/ai/function/call/settings/facing.mcfunction b/data/ai/function/call/settings/facing.mcfunction new file mode 100644 index 000000000..1f7859305 --- /dev/null +++ b/data/ai/function/call/settings/facing.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/settings/facing +execute if data storage mob_data: Settings.Target run function ai:call/settings/target/ +execute if data storage mob_data: Settings.Target if data storage mob_data: Settings{Anchor:"Eyes"} if score 00000000-0000-0000-0000-000000000002 _ matches 1 positioned ~ ~-1.62 ~ facing entity 0-0-0-0-2 feet positioned ~ ~1.62 ~ run tp 0-0-0-0-1 ^ ^ ^ ~ ~ +execute if data storage mob_data: Settings.Target unless data storage mob_data: Settings{Anchor:"Eyes"} if score 00000000-0000-0000-0000-000000000002 _ matches 1 facing entity 0-0-0-0-2 feet run tp 0-0-0-0-1 ^ ^ ^ ~ ~ diff --git a/data/ai/function/call/settings/init.mcfunction b/data/ai/function/call/settings/init.mcfunction new file mode 100644 index 000000000..4461c9757 --- /dev/null +++ b/data/ai/function/call/settings/init.mcfunction @@ -0,0 +1,10 @@ +#> ai:call/settings/init +#0-0-0-0-1の実行座標を変化させ、最後にその地点で実行 +function calc:geometry/tp_00001 +data modify storage mob_data: SettingsList set from storage mob_data: Call.Settings +data modify storage mob_data: SettingsList append value {} +execute if data storage mob_data: SettingsList[{Global:1b}] run data modify storage mob_data: SettingsList[-1].Global set value 1b +function ai:call/settings/ + +execute as 0-0-0-0-1 run function calc:geometry/return_marker +execute as 0-0-0-0-2 run function calc:geometry/return_marker diff --git a/data/ai/function/call/settings/rotation.mcfunction b/data/ai/function/call/settings/rotation.mcfunction new file mode 100644 index 000000000..8335ea58f --- /dev/null +++ b/data/ai/function/call/settings/rotation.mcfunction @@ -0,0 +1,8 @@ +#> ai:call/settings/rotation +execute if data storage mob_data: Settings.Target run function ai:call/settings/target/ +execute if data storage mob_data: Settings.Target if score 00000000-0000-0000-0000-000000000002 _ matches 1 rotated as 0-0-0-0-2 run tp 0-0-0-0-1 ^ ^ ^ ~ ~ + +execute if data storage mob_data: Settings{Flip:1b} as 0-0-0-0-1 rotated as @s facing ^ ^ ^-1 run tp @s ^ ^ ^ ~ ~ + +execute if data storage mob_data: Settings.Direction run function ai:call/settings/calc/direction +execute if data storage mob_data: Settings.Direction rotated as 0-0-0-0-0 run tp 0-0-0-0-1 ^ ^ ^ ~ ~ diff --git a/data/ai/function/call/settings/target/.mcfunction b/data/ai/function/call/settings/target/.mcfunction new file mode 100644 index 000000000..a33220c0a --- /dev/null +++ b/data/ai/function/call/settings/target/.mcfunction @@ -0,0 +1,10 @@ +#> ai:call/settings/target/ +data modify storage mob_data: Target set from storage mob_data: Settings.Target +tp 0-0-0-0-2 ^ ^ ^ + +#自身が対象にならないようにタグ付与 +tag @s add NonTarget +execute if data storage mob_data: Target{Look:"Self"} run tp 0-0-0-0-2 @s +execute unless data storage mob_data: Target{Look:"Self"} as 0-0-0-0-2 run function ai:call/settings/target/fork +tag @s remove NonTarget +execute if score 00000000-0000-0000-0000-000000000002 _ matches 0 run data modify storage mob_data: Success set value 0b diff --git a/data/ai/function/call/settings/target/child.mcfunction b/data/ai/function/call/settings/target/child.mcfunction new file mode 100644 index 000000000..7a8f198e2 --- /dev/null +++ b/data/ai/function/call/settings/target/child.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/settings/target/child +scoreboard players operation * ParentID -= @s OhMyDatID +execute store success score @s Calc at @e[scores={ParentID=0},tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +scoreboard players operation * ParentID += @s OhMyDatID diff --git a/data/ai/function/call/settings/target/find.mcfunction b/data/ai/function/call/settings/target/find.mcfunction new file mode 100644 index 000000000..9ef31e4de --- /dev/null +++ b/data/ai/function/call/settings/target/find.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/settings/target/find +#残りLoop > (Radius - MinRadius) なら失敗 +execute unless score # Calc >= _ _ store success score @s _ run tp @s 0-0-0-0-0 +execute if score # Calc >= _ _ run scoreboard players set # Calc 0 diff --git a/data/ai/function/call/settings/target/fork.mcfunction b/data/ai/function/call/settings/target/fork.mcfunction new file mode 100644 index 000000000..487886bfd --- /dev/null +++ b/data/ai/function/call/settings/target/fork.mcfunction @@ -0,0 +1,24 @@ +#> ai:call/settings/target/fork +##Target処理 + +#Target有無フラグをリセット +scoreboard players set @s _ 0 +scoreboard players set @s Calc 0 +#Radiusを倍で取得 +execute store result score # Calc run data get storage mob_data: Target.Radius 2 +#Radius - MinRadius +execute store result score _ _ run data get storage mob_data: Target.MinRadius -2 +scoreboard players operation _ _ += # Calc + +execute if data storage mob_data: Target{Look:"Player"} store success score @s Calc at @a[gamemode=!creative,gamemode=!spectator,tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +execute if data storage mob_data: Target{Look:"Friendly"} store success score @s Calc at @e[predicate=entity:friendly,tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +execute if data storage mob_data: Target{Look:"Enemy"} store success score @s Calc at @e[tag=Enemy,tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +execute if data storage mob_data: Target{Look:"All"} store success score @s Calc at @e[predicate=entity:all_mob,tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +execute if data storage mob_data: Target{Look:"Mob"} store success score @s Calc at @e[tag=Mob,tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +execute if data storage mob_data: Target{Look:"Parent"} run function ai:call/settings/target/parent +execute if data storage mob_data: Target{Look:"Child"} run function ai:call/settings/target/child + +execute if score @s Calc matches 1 at @s facing entity 0-0-0-0-0 feet facing ^ ^ ^-1 positioned as 0-0-0-0-0 run function ai:call/settings/target/loop + +#Target解除 +execute as 0-0-0-0-0 run function calc:geometry/return_marker diff --git a/data/ai/function/call/settings/target/loop.mcfunction b/data/ai/function/call/settings/target/loop.mcfunction new file mode 100644 index 000000000..8af53245a --- /dev/null +++ b/data/ai/function/call/settings/target/loop.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/settings/target/loop +execute unless data storage mob_data: Target{IgnoreBlocks:1b} anchored eyes unless block ^ ^ ^ #block:no_collision run scoreboard players set # Calc 0 +scoreboard players remove # Calc 1 +execute if entity @s[distance=..0.5] run function ai:call/settings/target/find +execute if score # Calc matches 1.. if score @s _ matches 0 positioned ^ ^ ^0.5 run function ai:call/settings/target/loop diff --git a/data/ai/function/call/settings/target/parent.mcfunction b/data/ai/function/call/settings/target/parent.mcfunction new file mode 100644 index 000000000..bc613c17f --- /dev/null +++ b/data/ai/function/call/settings/target/parent.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/settings/target/parent +scoreboard players operation * OhMyDatID -= @s ParentID +execute store success score @s Calc at @e[tag=Parent,scores={OhMyDatID=0},tag=!NonTarget,sort=nearest,limit=1] run tp 0-0-0-0-0 ^ ^ ^ ~ ~ +scoreboard players operation * OhMyDatID += @s ParentID From a05db9fa88e20304aa4999caaccafc187a326ce0 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 23 Apr 2025 22:18:59 +0900 Subject: [PATCH 04/27] GH-790 Add call/condition/condition --- .../function/call/condition/condition/.mcfunction | 13 +++++++++++++ .../call/condition/condition/check_block.mcfunction | 5 +++++ .../call/condition/condition/check_nbt.mcfunction | 6 ++++++ .../call/condition/condition/function.mcfunction | 10 ++++++++++ .../function/call/condition/condition/hp.mcfunction | 12 ++++++++++++ .../call/condition/condition/min_hp.mcfunction | 9 +++++++++ .../call/condition/condition/min_lv.mcfunction | 4 ++++ .../call/condition/condition/min_mp.mcfunction | 9 +++++++++ .../function/call/condition/condition/mp.mcfunction | 10 ++++++++++ .../condition/condition/random_chance.mcfunction | 7 +++++++ .../call/condition/condition/target/.mcfunction | 13 +++++++++++++ .../call/condition/condition/target/half.mcfunction | 5 +++++ 12 files changed, 103 insertions(+) create mode 100644 data/ai/function/call/condition/condition/.mcfunction create mode 100644 data/ai/function/call/condition/condition/check_block.mcfunction create mode 100644 data/ai/function/call/condition/condition/check_nbt.mcfunction create mode 100644 data/ai/function/call/condition/condition/function.mcfunction create mode 100644 data/ai/function/call/condition/condition/hp.mcfunction create mode 100644 data/ai/function/call/condition/condition/min_hp.mcfunction create mode 100644 data/ai/function/call/condition/condition/min_lv.mcfunction create mode 100644 data/ai/function/call/condition/condition/min_mp.mcfunction create mode 100644 data/ai/function/call/condition/condition/mp.mcfunction create mode 100644 data/ai/function/call/condition/condition/random_chance.mcfunction create mode 100644 data/ai/function/call/condition/condition/target/.mcfunction create mode 100644 data/ai/function/call/condition/condition/target/half.mcfunction diff --git a/data/ai/function/call/condition/condition/.mcfunction b/data/ai/function/call/condition/condition/.mcfunction new file mode 100644 index 000000000..435947b68 --- /dev/null +++ b/data/ai/function/call/condition/condition/.mcfunction @@ -0,0 +1,13 @@ +#> ai:call/condition/condition/ +#条件フラグ +execute if data storage mob_data: Condition{Name:"HasTarget"} run function ai:call/condition/condition/target/ +execute if data storage mob_data: Condition{Name:"RandomChance"} run function ai:call/condition/condition/random_chance +execute if data storage mob_data: Condition{Name:"MP"} run function ai:call/condition/condition/mp +execute if data storage mob_data: Condition{Name:"HP"} run function ai:call/condition/condition/hp +execute if data storage mob_data: Condition{Name:"MinMP"} run function ai:call/condition/condition/min_mp +execute if data storage mob_data: Condition{Name:"MinHP"} run function ai:call/condition/condition/min_hp +execute if data storage mob_data: Condition{Name:"MinLv"} run function ai:call/condition/condition/min_lv +execute if data storage mob_data: Condition{Name:"CheckNBT"} run function ai:call/condition/condition/check_nbt +execute if data storage mob_data: Condition{Name:"CheckBlock"} run function ai:call/condition/condition/check_block +execute if data storage mob_data: Condition{Name:"Function"} run function ai:call/condition/condition/function +execute if data storage mob_data: Condition{Name:"Pass"} store result score _ Calc run data get storage mob_data: Condition.Pass diff --git a/data/ai/function/call/condition/condition/check_block.mcfunction b/data/ai/function/call/condition/condition/check_block.mcfunction new file mode 100644 index 000000000..3f3ad799c --- /dev/null +++ b/data/ai/function/call/condition/condition/check_block.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/condition/condition/check_block +#ブロックのリストに該当すれば成功 +execute if data storage mob_data: Condition{Block:[Water]} if block ~ ~ ~ water run scoreboard players set _ Calc 1 +execute if data storage mob_data: Condition{Block:[Lava]} if block ~ ~ ~ lava run scoreboard players set _ Calc 1 +execute if data storage mob_data: Condition{Block:[Air]} if block ~ ~ ~ #block:no_collision run scoreboard players set _ Calc 1 diff --git a/data/ai/function/call/condition/condition/check_nbt.mcfunction b/data/ai/function/call/condition/condition/check_nbt.mcfunction new file mode 100644 index 000000000..b7d063dd5 --- /dev/null +++ b/data/ai/function/call/condition/condition/check_nbt.mcfunction @@ -0,0 +1,6 @@ +#> ai:call/condition/condition/check_nbt +#同じNBTがある=マージ失敗すれば成功 +data modify storage mob_data: NBT set from entity @s {} +execute store success score _ _ run data modify storage mob_data: NBT merge from storage mob_data: Condition.NBT +execute if score _ _ matches 0 run scoreboard players set _ Calc 1 +data remove storage mob_data: NBT diff --git a/data/ai/function/call/condition/condition/function.mcfunction b/data/ai/function/call/condition/condition/function.mcfunction new file mode 100644 index 000000000..cdc822f05 --- /dev/null +++ b/data/ai/function/call/condition/condition/function.mcfunction @@ -0,0 +1,10 @@ +#> ai:call/condition/condition/function +#functionのstore successを取得 +#Tagsをストレージに退避 +#呼び出すfunction内ではmob_data: Tagsを参照すること +data modify storage mob_data: Tags set from entity @s Tags +data modify entity @s Tags set from storage mob_data: Condition.Tags +#function呼び出し +execute store success score _ Calc run function settings:enemy/ +#Tagsを復元 +data modify entity @s Tags set from storage mob_data: Tags diff --git a/data/ai/function/call/condition/condition/hp.mcfunction b/data/ai/function/call/condition/condition/hp.mcfunction new file mode 100644 index 000000000..8e6c45cbc --- /dev/null +++ b/data/ai/function/call/condition/condition/hp.mcfunction @@ -0,0 +1,12 @@ +#> ai:call/condition/condition/hp +#HPがあれば消費して成功 +execute store result score _ HP run data get storage mob_data: Condition.HP +#割合消費のとき +scoreboard players set _ _ 100 +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ HP *= @s HPMax +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ HP /= _ _ + +execute if score @s HP >= _ HP store success score _ Calc run scoreboard players operation @s HP -= _ HP +scoreboard players operation @s HP < @s HPMax +#共通 - ライフスカウター +execute if score @s HP >= _ HP if entity @s[tag=LifeScouter] run function skill:act/common/life_scouter/bar_set diff --git a/data/ai/function/call/condition/condition/min_hp.mcfunction b/data/ai/function/call/condition/condition/min_hp.mcfunction new file mode 100644 index 000000000..34b8366f4 --- /dev/null +++ b/data/ai/function/call/condition/condition/min_hp.mcfunction @@ -0,0 +1,9 @@ +#> ai:call/condition/condition/min_hp +#モブが最低HP以上あれば成功 +execute store result score _ HP run data get storage mob_data: Condition.HP +#割合消費のとき +scoreboard players set _ _ 100 +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ HP *= @s HPMax +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ HP /= _ _ + +execute store success score _ Calc if score @s HP >= _ HP diff --git a/data/ai/function/call/condition/condition/min_lv.mcfunction b/data/ai/function/call/condition/condition/min_lv.mcfunction new file mode 100644 index 000000000..4d14239db --- /dev/null +++ b/data/ai/function/call/condition/condition/min_lv.mcfunction @@ -0,0 +1,4 @@ +#> ai:call/condition/condition/min_lv +#モブが最低Level以上あれば成功 +execute store result score _ Level run data get storage mob_data: Condition.Level +execute store success score _ Calc if score @s Level >= _ Level diff --git a/data/ai/function/call/condition/condition/min_mp.mcfunction b/data/ai/function/call/condition/condition/min_mp.mcfunction new file mode 100644 index 000000000..61c73dbb2 --- /dev/null +++ b/data/ai/function/call/condition/condition/min_mp.mcfunction @@ -0,0 +1,9 @@ +#> ai:call/condition/condition/min_mp +#モブが最低MP以上あれば成功 +execute store result score _ MP run data get storage mob_data: Condition.MP +#割合消費のとき +scoreboard players set _ _ 100 +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ MP *= @s MPMax +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ MP /= _ _ + +execute store success score _ Calc if score @s MP >= _ MP diff --git a/data/ai/function/call/condition/condition/mp.mcfunction b/data/ai/function/call/condition/condition/mp.mcfunction new file mode 100644 index 000000000..3cb449eb8 --- /dev/null +++ b/data/ai/function/call/condition/condition/mp.mcfunction @@ -0,0 +1,10 @@ +#> ai:call/condition/condition/mp +#MPがあれば消費して成功 +execute store result score _ MP run data get storage mob_data: Condition.MP +#割合消費のとき +scoreboard players set _ _ 100 +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ MP *= @s MPMax +execute if data storage mob_data: Condition{Percent:1b} run scoreboard players operation _ MP /= _ _ + +execute if score @s MP >= _ MP store success score _ Calc run scoreboard players operation @s MP -= _ MP +scoreboard players operation @s MP < @s MPMax diff --git a/data/ai/function/call/condition/condition/random_chance.mcfunction b/data/ai/function/call/condition/condition/random_chance.mcfunction new file mode 100644 index 000000000..23388b5bf --- /dev/null +++ b/data/ai/function/call/condition/condition/random_chance.mcfunction @@ -0,0 +1,7 @@ +#> ai:call/condition/condition/random_chance +#RandomChanceの確率で成功 +execute store result score @s _ run function calc:random +scoreboard players set _ _ 100 +scoreboard players operation @s _ %= _ _ +execute store result score _ _ run data get storage mob_data: Condition.Chance 100 +execute if score _ _ > @s _ run scoreboard players set _ Calc 1 diff --git a/data/ai/function/call/condition/condition/target/.mcfunction b/data/ai/function/call/condition/condition/target/.mcfunction new file mode 100644 index 000000000..14a0c7309 --- /dev/null +++ b/data/ai/function/call/condition/condition/target/.mcfunction @@ -0,0 +1,13 @@ +#> ai:call/condition/condition/target/ +#Targetの有無を確認 +data modify storage mob_data: Target set from storage mob_data: Condition.Target +execute unless data storage mob_data: Condition{Position:"Entity"} run function calc:geometry/tp_00001 +execute if data storage mob_data: Condition{Position:"Entity"} run tp 0-0-0-0-1 @s +#自身が対象にならないようにタグ付与 +tag @s add NonTarget +execute at @s as 0-0-0-0-1 run function ai:call/settings/target/fork +tag @s remove NonTarget +scoreboard players set _ Calc 0 +execute if score 00000000-0000-0000-0000-000000000001 _ matches 1 unless data storage mob_data: Condition.Half run scoreboard players set _ Calc 1 +execute if score 00000000-0000-0000-0000-000000000001 _ matches 1 if data storage mob_data: Condition.Half facing entity 0-0-0-0-1 feet positioned ^ ^ ^0.003 rotated as @s run function ai:call/condition/condition/target/half +execute as 0-0-0-0-1 run function calc:geometry/return_marker diff --git a/data/ai/function/call/condition/condition/target/half.mcfunction b/data/ai/function/call/condition/condition/target/half.mcfunction new file mode 100644 index 000000000..099a3d55f --- /dev/null +++ b/data/ai/function/call/condition/condition/target/half.mcfunction @@ -0,0 +1,5 @@ +#> ai:call/condition/condition/target/half +execute if data storage mob_data: Condition{Half:"up"} positioned ^ ^-0.004 ^ if entity @s[distance=..0.00479] run scoreboard players set _ Calc 1 +execute if data storage mob_data: Condition{Half:"down"} positioned ^ ^0.004 ^ if entity @s[distance=..0.00479] run scoreboard players set _ Calc 1 +execute if data storage mob_data: Condition{Half:"front"} positioned ^ ^ ^-0.004 if entity @s[distance=..0.005] run scoreboard players set _ Calc 1 +execute if data storage mob_data: Condition{Half:"back"} positioned ^ ^ ^0.004 if entity @s[distance=..0.005] run scoreboard players set _ Calc 1 From d4bdac0d7bda5b841181beb4b033e61eb45d0406 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 23 Apr 2025 23:16:24 +0900 Subject: [PATCH 05/27] GH-790 Add call/call --- data/ai/function/call/call.mcfunction | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 data/ai/function/call/call.mcfunction diff --git a/data/ai/function/call/call.mcfunction b/data/ai/function/call/call.mcfunction new file mode 100644 index 000000000..2b20e3bdc --- /dev/null +++ b/data/ai/function/call/call.mcfunction @@ -0,0 +1,21 @@ +#> ai:call/call +execute if data storage mob_data: Call{Name:"Kill"} run tag @s add Garbage +execute if data storage mob_data: Call{Name:"Spawn"} run function skill:enemy/spawn/ +execute if data storage mob_data: Call{Name:"Step"} run function skill:enemy/step/ +execute if data storage mob_data: Call{Name:"ChangeTurn"} run function skill:enemy/change_turn/ +execute if data storage mob_data: Call{Name:"ChangeMove"} run function skill:enemy/change_move/ +execute if data storage mob_data: Call{Name:"ChangeAI"} run function skill:enemy/change_ai +execute if data storage mob_data: Call{Name:"ChangeStatus"} run function skill:enemy/change_status/ +execute if data storage mob_data: Call{Name:"MergeNBT"} run function skill:enemy/merge_nbt +execute if data storage mob_data: Call{Name:"Teleport"} unless entity @s[tag=TargetChanged,tag=Unmoved] run function skill:enemy/teleport/ +execute if data storage mob_data: Call{Name:"Message"} run function skill:enemy/message +execute if data storage mob_data: Call{Name:"Function"} run function skill:enemy/function/ +execute if data storage mob_data: Call{Name:"DelayAction"} run function skill:enemy/delay_action/append/ +execute if data storage mob_data: Call{Name:"Damage"} run function skill:enemy/damage/ +execute if data storage mob_data: Call{Name:"Blink"} run function skill:enemy/blink/cast/ +execute if data storage mob_data: Call{Name:"Laser"} run function skill:enemy/laser/main/init +execute if data storage mob_data: Call{Name:"Rotate"} run function skill:enemy/rotate +execute if data storage mob_data: Call{Name:"Heal"} run function skill:enemy/heal/ +execute if data storage mob_data: Call{Name:"SmartMotion"} unless entity @s[tag=TargetChanged,tag=Unmoved] run function skill:enemy/smart_motion/ +execute if data storage mob_data: Call{Name:"Reraise"} run function skill:enemy/reraise/ +execute if data storage mob_data: Call{Name:"Parabolic"} run function skill:enemy/parabolic_motion/ From 1797122e7c6fd13820551d6eff9975b1f6b0fc29 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Sat, 26 Apr 2025 00:01:01 +0900 Subject: [PATCH 06/27] GH-790 Add call/skill --- .../function/skill/blink/activate/.mcfunction | 7 ++ .../activate/decorate/finalize.mcfunction | 2 + .../activate/decorate/initialize.mcfunction | 4 + .../blink/activate/decorate/tick.mcfunction | 12 +++ .../skill/blink/activate/roll.mcfunction | 7 ++ .../skill/blink/activate/success.mcfunction | 6 ++ data/ai/function/skill/blink/cast/.mcfunction | 1 + .../skill/blink/cast/default.mcfunction | 1 + .../skill/blink/cast/success.mcfunction | 10 +++ data/ai/function/skill/change_ai.mcfunction | 24 ++++++ .../ai/function/skill/change_move/.mcfunction | 8 ++ .../skill/change_move/front.mcfunction | 13 +++ .../skill/change_move/horizontal.mcfunction | 13 +++ .../skill/change_move/range.mcfunction | 5 ++ .../skill/change_move/side.mcfunction | 13 +++ .../function/skill/change_move/up.mcfunction | 13 +++ .../skill/change_move/vertical.mcfunction | 13 +++ .../function/skill/change_status/.mcfunction | 15 ++++ .../skill/change_status/attack.mcfunction | 14 ++++ .../skill/change_status/defense.mcfunction | 14 ++++ .../skill/change_status/hp.mcfunction | 18 +++++ .../skill/change_status/level/.mcfunction | 31 +++++++ .../change_status/level/rename.mcfunction | 7 ++ .../change_status/magic_attack.mcfunction | 14 ++++ .../change_status/magic_defense.mcfunction | 14 ++++ .../skill/change_status/mp.mcfunction | 18 +++++ .../ai/function/skill/change_turn/.mcfunction | 10 +++ .../skill/change_turn/random.mcfunction | 6 ++ .../function/skill/change_turn/set.mcfunction | 7 ++ data/ai/function/skill/damage/.mcfunction | 24 ++++++ data/ai/function/skill/damage/aec.mcfunction | 3 + .../ai/function/skill/damage/apply.mcfunction | 4 + .../skill/damage/apply_to_player.mcfunction | 4 + .../skill/damage/can_be_blocked.mcfunction | 2 + .../skill/damage/check_distance.mcfunction | 15 ++++ .../skill/damage/explosion.mcfunction | 5 ++ .../function/skill/damage/friendly.mcfunction | 6 ++ .../skill/damage/is_blocking.mcfunction | 2 + .../skill/damage/is_player.mcfunction | 4 + .../skill/damage/is_using_shield.mcfunction | 3 + data/ai/function/skill/damage/mob.mcfunction | 22 +++++ data/ai/function/skill/damage/mp.mcfunction | 11 +++ .../function/skill/damage/player.mcfunction | 28 +++++++ .../skill/damage/use_shield.mcfunction | 11 +++ .../skill/delay_action/act/.mcfunction | 3 + .../skill/delay_action/act/check/.mcfunction | 30 +++++++ .../delay_action/act/check/loop.mcfunction | 15 ++++ .../delay_action/act/check/shift.mcfunction | 6 ++ .../delay_action/act/execute/.mcfunction | 8 ++ .../act/execute/affect/.mcfunction | 2 + .../affect/huge_explosion_01/.mcfunction | 61 ++++++++++++++ .../affect/huge_explosion_02/.mcfunction | 61 ++++++++++++++ .../act/execute/casting/.mcfunction | 15 ++++ .../casting/bubble_launcher_01/.mcfunction | 81 +++++++++++++++++++ .../casting/bubble_launcher_02/.mcfunction | 81 +++++++++++++++++++ .../casting/bubble_launcher_03/.mcfunction | 81 +++++++++++++++++++ .../act/execute/casting/cast/.mcfunction | 1 + .../execute/casting/cast/normal/.mcfunction | 5 ++ .../act/execute/casting/charge/.mcfunction | 1 + .../execute/casting/charge/normal/.mcfunction | 12 +++ .../casting/charge/normal/act.mcfunction | 34 ++++++++ .../execute/casting/circle_hearts/.mcfunction | 31 +++++++ .../execute/casting/cross_ring/.mcfunction | 21 +++++ .../act/execute/casting/doom_bomb/.mcfunction | 34 ++++++++ .../act/execute/casting/doom_cast/.mcfunction | 16 ++++ .../casting/finishing_move/.mcfunction | 61 ++++++++++++++ .../act/execute/casting/healing/.mcfunction | 32 ++++++++ .../execute/casting/laser_pointer/.mcfunction | 1 + .../laser_pointer/red_dust/.mcfunction | 3 + .../laser_pointer/red_dust/loop.mcfunction | 5 ++ .../red_dust/loop_end.mcfunction | 1 + .../red_dust/loop_start.mcfunction | 3 + .../casting/pillar_of_water/.mcfunction | 21 +++++ .../casting/sludge_garbager/.mcfunction | 61 ++++++++++++++ .../execute/casting/water_bolt/.mcfunction | 31 +++++++ .../act/execute/common.mcfunction | 4 + .../act/execute/enemy/.mcfunction | 12 +++ .../act/execute/enemy/abyss_mage/.mcfunction | 4 + .../enemy/abyss_mage/abyss_magic.mcfunction | 29 +++++++ .../act/execute/enemy/aurora_eye/.mcfunction | 5 ++ .../execute/enemy/aurora_eye/shard.mcfunction | 44 ++++++++++ .../execute/enemy/aurora_eye/zone.mcfunction | 19 +++++ .../act/execute/enemy/common/.mcfunction | 4 + .../execute/enemy/common/paralyze.mcfunction | 19 +++++ .../act/execute/enemy/crimson_eye/.mcfunction | 35 ++++++++ .../act/execute/enemy/lunatic_eye/.mcfunction | 59 ++++++++++++++ .../act/execute/enemy/ryomen/.mcfunction | 8 ++ .../skill/delay_action/act/sort/.mcfunction | 6 ++ .../delay_action/act/sort/loop.mcfunction | 7 ++ .../skill/delay_action/append/.mcfunction | 49 +++++++++++ .../skill/delay_action/append/act.mcfunction | 2 + .../delay_action/append/affect/.mcfunction | 2 + .../affect/huge_explosion_01/.mcfunction | 2 + .../affect/huge_explosion_02/.mcfunction | 2 + .../delay_action/append/casting/.mcfunction | 15 ++++ .../casting/bubble_launcher_01/.mcfunction | 2 + .../casting/bubble_launcher_02/.mcfunction | 2 + .../casting/bubble_launcher_03/.mcfunction | 2 + .../append/casting/cast/.mcfunction | 1 + .../append/casting/cast/normal/.mcfunction | 2 + .../append/casting/charge/.mcfunction | 1 + .../append/casting/charge/normal/.mcfunction | 1 + .../append/casting/circle_hearts/.mcfunction | 2 + .../append/casting/cross_ring/.mcfunction | 3 + .../append/casting/doom_bomb/.mcfunction | 2 + .../append/casting/doom_cast/.mcfunction | 2 + .../append/casting/finishing_move/.mcfunction | 2 + .../append/casting/healing/.mcfunction | 2 + .../append/casting/laser_pointer/.mcfunction | 1 + .../laser_pointer/red_dust/.mcfunction | 1 + .../casting/pillar_of_water/.mcfunction | 2 + .../casting/sludge_garbager/.mcfunction | 2 + .../append/casting/water_bolt/.mcfunction | 4 + .../delay_action/append/enemy/.mcfunction | 12 +++ .../append/enemy/abyss_mage/.mcfunction | 4 + .../enemy/abyss_mage/abyss_magic.mcfunction | 5 ++ .../append/enemy/aurora_eye/.mcfunction | 5 ++ .../append/enemy/aurora_eye/shard.mcfunction | 5 ++ .../append/enemy/aurora_eye/zone.mcfunction | 5 ++ .../append/enemy/common/.mcfunction | 4 + .../append/enemy/common/paralyze.mcfunction | 5 ++ .../append/enemy/crimson_eye/.mcfunction | 5 ++ .../append/enemy/lunatic_eye/.mcfunction | 5 ++ .../append/enemy/ryomen/.mcfunction | 14 ++++ .../skill/delay_action/append/loop.mcfunction | 19 +++++ .../delay_action/append/search.mcfunction | 18 +++++ .../delay_action/append/shift.mcfunction | 3 + data/ai/function/skill/function/.mcfunction | 8 ++ .../skill/function/loot_add.mcfunction | 13 +++ data/ai/function/skill/heal/.mcfunction | 30 +++++++ data/ai/function/skill/heal/act.mcfunction | 14 ++++ data/ai/function/skill/heal/search.mcfunction | 3 + .../function/skill/icicle_magic/.mcfunction | 2 + .../skill/icicle_magic/icicle/.mcfunction | 4 + .../skill/icicle_magic/icicle/fall.mcfunction | 2 + .../icicle_magic/icicle_summoner/.mcfunction | 5 ++ .../icicle_summoner/find_place/end.mcfunction | 2 + .../find_place/start.mcfunction | 8 ++ .../find_place_above/end.mcfunction | 1 + .../find_place_above/start.mcfunction | 5 ++ .../icicle_summoner/place_icicle/.mcfunction | 5 ++ .../place_icicle/act.mcfunction | 2 + .../schedule_loop/icicle.mcfunction | 2 + .../schedule_loop/icicle_summoner.mcfunction | 2 + .../skill/laser/loop/blue_laser/.mcfunction | 9 +++ .../laser/loop/blue_laser/damage.mcfunction | 2 + .../laser/loop/blue_laser/end.mcfunction | 1 + .../skill/laser/loop/frozenlaser/.mcfunction | 9 +++ .../laser/loop/frozenlaser/damage.mcfunction | 11 +++ .../skill/laser/loop/green_laser/.mcfunction | 9 +++ .../laser/loop/green_laser/damage.mcfunction | 2 + .../laser/loop/green_laser/end.mcfunction | 1 + .../skill/laser/loop/kame_hame_ha/.mcfunction | 8 ++ .../laser/loop/kame_hame_ha/1.mcfunction | 9 +++ .../laser/loop/kame_hame_ha/2.mcfunction | 9 +++ .../laser/loop/kame_hame_ha/3.mcfunction | 9 +++ .../laser/loop/kame_hame_ha/4.mcfunction | 9 +++ .../laser/loop/kame_hame_ha/5.mcfunction | 9 +++ .../laser/loop/kame_hame_ha/6.mcfunction | 9 +++ .../laser/loop/kame_hame_ha/7.mcfunction | 9 +++ .../laser/loop/lightning_laser/.mcfunction | 10 +++ .../skill/laser/loop/piglin_snipe/.mcfunction | 10 +++ .../laser/loop/piglin_snipe/damage.mcfunction | 2 + .../laser/loop/piglin_snipe/end.mcfunction | 1 + .../skill/laser/loop/red_laser/.mcfunction | 9 +++ .../laser/loop/red_laser/damage.mcfunction | 2 + .../skill/laser/loop/red_laser/end.mcfunction | 1 + .../laser/loop/security_laser/.mcfunction | 3 + .../loop/security_laser/dual/.mcfunction | 10 +++ .../loop/security_laser/dual/1.mcfunction | 10 +++ .../loop/security_laser/dual/2.mcfunction | 10 +++ .../security_laser/dual/damage.mcfunction | 5 ++ .../loop/security_laser/single/.mcfunction | 9 +++ .../security_laser/single/damage.mcfunction | 5 ++ .../function/skill/laser/loop/test.mcfunction | 9 +++ .../skill/laser/loop/violet_laser/.mcfunction | 9 +++ .../laser/loop/violet_laser/damage.mcfunction | 2 + .../laser/loop/violet_laser/end.mcfunction | 1 + .../skill/laser/loop/white_laser/.mcfunction | 9 +++ .../laser/loop/white_laser/damage.mcfunction | 2 + .../laser/loop/white_laser/end.mcfunction | 1 + .../skill/laser/loop/yellow_laser/.mcfunction | 9 +++ .../laser/loop/yellow_laser/damage.mcfunction | 2 + .../laser/loop/yellow_laser/end.mcfunction | 1 + .../laser/main/call_on_attack.mcfunction | 4 + .../skill/laser/main/damage.mcfunction | 4 + .../function/skill/laser/main/fork.mcfunction | 12 +++ .../function/skill/laser/main/init.mcfunction | 15 ++++ data/ai/function/skill/merge_nbt.mcfunction | 2 + data/ai/function/skill/message.mcfunction | 1 + .../skill/parabolic_motion/.mcfunction | 26 ++++++ .../skill/parabolic_motion/core/.mcfunction | 21 +++++ .../parabolic_motion/core/calc.mcfunction | 43 ++++++++++ data/ai/function/skill/reraise/.mcfunction | 2 + .../skill/reraise/death_cancel.mcfunction | 15 ++++ .../skill/reraise/health_recovery.mcfunction | 10 +++ .../skill/reraise/remove_raise.mcfunction | 5 ++ .../function/skill/reraise/success.mcfunction | 4 + data/ai/function/skill/rotate.mcfunction | 12 +++ .../function/skill/smart_motion/.mcfunction | 29 +++++++ .../skill/smart_motion/gravity.mcfunction | 10 +++ .../skill/smart_motion/on_block.mcfunction | 9 +++ .../skill/smart_motion/rotation.mcfunction | 7 ++ .../skill/smart_motion/speed.mcfunction | 10 +++ data/ai/function/skill/spawn/.mcfunction | 5 ++ data/ai/function/skill/spawn/apply.mcfunction | 7 ++ data/ai/function/skill/spawn/child.mcfunction | 3 + .../skill/spawn/count_range.mcfunction | 7 ++ data/ai/function/skill/step/.mcfunction | 6 ++ .../function/skill/step/direction.mcfunction | 16 ++++ .../skill/step/range/direction.mcfunction | 15 ++++ .../skill/step/range/speed.mcfunction | 8 ++ .../function/skill/step/set_motion.mcfunction | 2 + data/ai/function/skill/step/speed.mcfunction | 10 +++ data/ai/function/skill/teleport/.mcfunction | 4 + .../function/skill/teleport/loop.mcfunction | 2 + 216 files changed, 2433 insertions(+) create mode 100644 data/ai/function/skill/blink/activate/.mcfunction create mode 100644 data/ai/function/skill/blink/activate/decorate/finalize.mcfunction create mode 100644 data/ai/function/skill/blink/activate/decorate/initialize.mcfunction create mode 100644 data/ai/function/skill/blink/activate/decorate/tick.mcfunction create mode 100644 data/ai/function/skill/blink/activate/roll.mcfunction create mode 100644 data/ai/function/skill/blink/activate/success.mcfunction create mode 100644 data/ai/function/skill/blink/cast/.mcfunction create mode 100644 data/ai/function/skill/blink/cast/default.mcfunction create mode 100644 data/ai/function/skill/blink/cast/success.mcfunction create mode 100644 data/ai/function/skill/change_ai.mcfunction create mode 100644 data/ai/function/skill/change_move/.mcfunction create mode 100644 data/ai/function/skill/change_move/front.mcfunction create mode 100644 data/ai/function/skill/change_move/horizontal.mcfunction create mode 100644 data/ai/function/skill/change_move/range.mcfunction create mode 100644 data/ai/function/skill/change_move/side.mcfunction create mode 100644 data/ai/function/skill/change_move/up.mcfunction create mode 100644 data/ai/function/skill/change_move/vertical.mcfunction create mode 100644 data/ai/function/skill/change_status/.mcfunction create mode 100644 data/ai/function/skill/change_status/attack.mcfunction create mode 100644 data/ai/function/skill/change_status/defense.mcfunction create mode 100644 data/ai/function/skill/change_status/hp.mcfunction create mode 100644 data/ai/function/skill/change_status/level/.mcfunction create mode 100644 data/ai/function/skill/change_status/level/rename.mcfunction create mode 100644 data/ai/function/skill/change_status/magic_attack.mcfunction create mode 100644 data/ai/function/skill/change_status/magic_defense.mcfunction create mode 100644 data/ai/function/skill/change_status/mp.mcfunction create mode 100644 data/ai/function/skill/change_turn/.mcfunction create mode 100644 data/ai/function/skill/change_turn/random.mcfunction create mode 100644 data/ai/function/skill/change_turn/set.mcfunction create mode 100644 data/ai/function/skill/damage/.mcfunction create mode 100644 data/ai/function/skill/damage/aec.mcfunction create mode 100644 data/ai/function/skill/damage/apply.mcfunction create mode 100644 data/ai/function/skill/damage/apply_to_player.mcfunction create mode 100644 data/ai/function/skill/damage/can_be_blocked.mcfunction create mode 100644 data/ai/function/skill/damage/check_distance.mcfunction create mode 100644 data/ai/function/skill/damage/explosion.mcfunction create mode 100644 data/ai/function/skill/damage/friendly.mcfunction create mode 100644 data/ai/function/skill/damage/is_blocking.mcfunction create mode 100644 data/ai/function/skill/damage/is_player.mcfunction create mode 100644 data/ai/function/skill/damage/is_using_shield.mcfunction create mode 100644 data/ai/function/skill/damage/mob.mcfunction create mode 100644 data/ai/function/skill/damage/mp.mcfunction create mode 100644 data/ai/function/skill/damage/player.mcfunction create mode 100644 data/ai/function/skill/damage/use_shield.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/check/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/check/loop.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/check/shift.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/affect/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/common.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/sort/.mcfunction create mode 100644 data/ai/function/skill/delay_action/act/sort/loop.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/act.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/affect/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/cast/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/charge/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/healing/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/common/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/loop.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/search.mcfunction create mode 100644 data/ai/function/skill/delay_action/append/shift.mcfunction create mode 100644 data/ai/function/skill/function/.mcfunction create mode 100644 data/ai/function/skill/function/loot_add.mcfunction create mode 100644 data/ai/function/skill/heal/.mcfunction create mode 100644 data/ai/function/skill/heal/act.mcfunction create mode 100644 data/ai/function/skill/heal/search.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle/.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle/fall.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction create mode 100644 data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction create mode 100644 data/ai/function/skill/laser/loop/blue_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/blue_laser/end.mcfunction create mode 100644 data/ai/function/skill/laser/loop/frozenlaser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/green_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/green_laser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/green_laser/end.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction create mode 100644 data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction create mode 100644 data/ai/function/skill/laser/loop/lightning_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction create mode 100644 data/ai/function/skill/laser/loop/red_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/red_laser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/red_laser/end.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/single/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/test.mcfunction create mode 100644 data/ai/function/skill/laser/loop/violet_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/violet_laser/end.mcfunction create mode 100644 data/ai/function/skill/laser/loop/white_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/white_laser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/white_laser/end.mcfunction create mode 100644 data/ai/function/skill/laser/loop/yellow_laser/.mcfunction create mode 100644 data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction create mode 100644 data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction create mode 100644 data/ai/function/skill/laser/main/call_on_attack.mcfunction create mode 100644 data/ai/function/skill/laser/main/damage.mcfunction create mode 100644 data/ai/function/skill/laser/main/fork.mcfunction create mode 100644 data/ai/function/skill/laser/main/init.mcfunction create mode 100644 data/ai/function/skill/merge_nbt.mcfunction create mode 100644 data/ai/function/skill/message.mcfunction create mode 100644 data/ai/function/skill/parabolic_motion/.mcfunction create mode 100644 data/ai/function/skill/parabolic_motion/core/.mcfunction create mode 100644 data/ai/function/skill/parabolic_motion/core/calc.mcfunction create mode 100644 data/ai/function/skill/reraise/.mcfunction create mode 100644 data/ai/function/skill/reraise/death_cancel.mcfunction create mode 100644 data/ai/function/skill/reraise/health_recovery.mcfunction create mode 100644 data/ai/function/skill/reraise/remove_raise.mcfunction create mode 100644 data/ai/function/skill/reraise/success.mcfunction create mode 100644 data/ai/function/skill/rotate.mcfunction create mode 100644 data/ai/function/skill/smart_motion/.mcfunction create mode 100644 data/ai/function/skill/smart_motion/gravity.mcfunction create mode 100644 data/ai/function/skill/smart_motion/on_block.mcfunction create mode 100644 data/ai/function/skill/smart_motion/rotation.mcfunction create mode 100644 data/ai/function/skill/smart_motion/speed.mcfunction create mode 100644 data/ai/function/skill/spawn/.mcfunction create mode 100644 data/ai/function/skill/spawn/apply.mcfunction create mode 100644 data/ai/function/skill/spawn/child.mcfunction create mode 100644 data/ai/function/skill/spawn/count_range.mcfunction create mode 100644 data/ai/function/skill/step/.mcfunction create mode 100644 data/ai/function/skill/step/direction.mcfunction create mode 100644 data/ai/function/skill/step/range/direction.mcfunction create mode 100644 data/ai/function/skill/step/range/speed.mcfunction create mode 100644 data/ai/function/skill/step/set_motion.mcfunction create mode 100644 data/ai/function/skill/step/speed.mcfunction create mode 100644 data/ai/function/skill/teleport/.mcfunction create mode 100644 data/ai/function/skill/teleport/loop.mcfunction diff --git a/data/ai/function/skill/blink/activate/.mcfunction b/data/ai/function/skill/blink/activate/.mcfunction new file mode 100644 index 000000000..7fedcb8c4 --- /dev/null +++ b/data/ai/function/skill/blink/activate/.mcfunction @@ -0,0 +1,7 @@ +scoreboard players set @s _ 0 + +data modify storage mob_data: Blink set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink + +execute if entity @s[tag=ReceivedPhysicalDamage] if data storage mob_data: Blink{TriggerOn:[Physical]} run scoreboard players set @s _ 1 + +execute if score @s _ matches 1 run function skill:enemy/blink/activate/roll diff --git a/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction b/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction new file mode 100644 index 000000000..9a5174dfe --- /dev/null +++ b/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction @@ -0,0 +1,2 @@ +scoreboard players reset @s BlinkSubTimer +scoreboard players remove @s NativeFlag 100 diff --git a/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction b/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction new file mode 100644 index 000000000..047c9cc10 --- /dev/null +++ b/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction @@ -0,0 +1,4 @@ +scoreboard players set @s BlinkSubTimer 7 +scoreboard players add @s NativeFlag 100 + +function makeup:skill/enemy/blink/activate/0 diff --git a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction new file mode 100644 index 000000000..b8c728c4b --- /dev/null +++ b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction @@ -0,0 +1,12 @@ +scoreboard players remove @s BlinkSubTimer 1 + +execute if score @s BlinkSubTimer matches 6 run tp @s ~0.2 ~ ~0.2 +execute if score @s BlinkSubTimer matches 5 run tp @s ~ ~ ~-0.4 +execute if score @s BlinkSubTimer matches 4 run tp @s ~-0.4 ~ ~ +execute if score @s BlinkSubTimer matches 3 run tp @s ~ ~ ~0.4 +execute if score @s BlinkSubTimer matches 2 run tp @s ~0.4 ~ ~ +execute if score @s BlinkSubTimer matches 1 run tp @s ~-0.2 ~ ~-0.2 +execute if score @s BlinkSubTimer matches 1..6 anchored eyes run function makeup:skill/enemy/blink/activate/1 + +execute if score @s BlinkSubTimer matches 1 run function skill:enemy/blink/activate/decorate/finalize + diff --git a/data/ai/function/skill/blink/activate/roll.mcfunction b/data/ai/function/skill/blink/activate/roll.mcfunction new file mode 100644 index 000000000..0b7cb3893 --- /dev/null +++ b/data/ai/function/skill/blink/activate/roll.mcfunction @@ -0,0 +1,7 @@ +execute store result score @s _ run data get storage mob_data: Blink.Chance 10000 +execute store result score _ Calc run function calc:random +scoreboard players set _ _ 10000 +#Calc %= 10000 +scoreboard players operation _ Calc %= _ _ + +execute if score @s _ > _ Calc run function skill:enemy/blink/activate/success \ No newline at end of file diff --git a/data/ai/function/skill/blink/activate/success.mcfunction b/data/ai/function/skill/blink/activate/success.mcfunction new file mode 100644 index 000000000..d3809a3a1 --- /dev/null +++ b/data/ai/function/skill/blink/activate/success.mcfunction @@ -0,0 +1,6 @@ +execute store result storage mob_data: Blink.Count int 0.99999 run data get storage mob_data: Blink.Count +scoreboard players reset @s Damage + +execute if data storage mob_data: Blink{Count:0} run data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink +execute unless data storage mob_data: Blink{Count:0} run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink +function skill:enemy/blink/activate/decorate/initialize \ No newline at end of file diff --git a/data/ai/function/skill/blink/cast/.mcfunction b/data/ai/function/skill/blink/cast/.mcfunction new file mode 100644 index 000000000..e7d1f8e35 --- /dev/null +++ b/data/ai/function/skill/blink/cast/.mcfunction @@ -0,0 +1 @@ +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function skill:enemy/blink/cast/success \ No newline at end of file diff --git a/data/ai/function/skill/blink/cast/default.mcfunction b/data/ai/function/skill/blink/cast/default.mcfunction new file mode 100644 index 000000000..cd6474a57 --- /dev/null +++ b/data/ai/function/skill/blink/cast/default.mcfunction @@ -0,0 +1 @@ +data modify storage mob_data: Blink.TriggerOn set value ["Physical","Fire","Ice","Lightning","Light","Dark"] \ No newline at end of file diff --git a/data/ai/function/skill/blink/cast/success.mcfunction b/data/ai/function/skill/blink/cast/success.mcfunction new file mode 100644 index 000000000..2ade0f203 --- /dev/null +++ b/data/ai/function/skill/blink/cast/success.mcfunction @@ -0,0 +1,10 @@ +data remove storage mob_data: Blink +data merge storage mob_data: {Blink:{Count:0,Chance:0.0000d}} +data modify storage mob_data: Blink.Count set from storage mob_data: Call.Count +data modify storage mob_data: Blink.Chance set from storage mob_data: Call.Chance +execute unless data storage mob_data: Call.TriggerOn run function skill:enemy/blink/cast/default +data modify storage mob_data: Blink.TriggerOn set from storage mob_data: Call.TriggerOn +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink + +tag @s add CallOnDamage +function makeup:skill/enemy/blink/cast/0 \ No newline at end of file diff --git a/data/ai/function/skill/change_ai.mcfunction b/data/ai/function/skill/change_ai.mcfunction new file mode 100644 index 000000000..b56d494b0 --- /dev/null +++ b/data/ai/function/skill/change_ai.mcfunction @@ -0,0 +1,24 @@ +#AIを書き換え +execute if data storage mob_data: Call.Death run data modify storage mob_data: AI.Death set from storage mob_data: Call.Death +execute if data storage mob_data: Call.Time run data modify storage mob_data: AI.Time set from storage mob_data: Call.Time +execute if data storage mob_data: Call.Damage run data modify storage mob_data: AI.Damage set from storage mob_data: Call.Damage +execute if data storage mob_data: Call.Attack run data modify storage mob_data: AI.Attack set from storage mob_data: Call.Attack +execute if data storage mob_data: Call.Passenger run data modify storage mob_data: AI.Passenger set from storage mob_data: Call.Passenger +execute if data storage mob_data: Call.Block run data modify storage mob_data: AI.Block set from storage mob_data: Call.Block +execute if data storage mob_data: Call.Tick run data modify storage mob_data: AI.Tick set from storage mob_data: Call.Tick +#タグを付与 +tag @s remove CallOnDeath +tag @s remove CallOnTime +tag @s remove CallOnDamage +tag @s remove CallOnAttack +tag @s remove CallOnBlock +tag @s remove CallOnTick +execute if data storage mob_data: AI.Death[0] run tag @s add CallOnDeath +execute if data storage mob_data: AI.Time[0] run tag @s add CallOnTime +execute if data storage mob_data: AI.Damage[0] run tag @s add CallOnDamage +execute if data storage mob_data: AI.Attack[0] run tag @s add CallOnAttack +execute if data storage mob_data: AI.Block[0] run tag @s add CallOnBlock +execute if data storage mob_data: AI.Tick[0] run tag @s add CallOnTick +execute if data storage mob_data: AI.Tick[0] run tag @s add HasAI +#データを元に戻す +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/change_move/.mcfunction b/data/ai/function/skill/change_move/.mcfunction new file mode 100644 index 000000000..088648320 --- /dev/null +++ b/data/ai/function/skill/change_move/.mcfunction @@ -0,0 +1,8 @@ +execute if data storage mob_data: Call.Front run function skill:enemy/change_move/front +execute if data storage mob_data: Call.Side run function skill:enemy/change_move/side +execute if data storage mob_data: Call.Up run function skill:enemy/change_move/up +execute if data storage mob_data: Call.Horizontal run function skill:enemy/change_move/horizontal +execute if data storage mob_data: Call.Vertical run function skill:enemy/change_move/vertical + +#データを元に戻す +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/change_move/front.mcfunction b/data/ai/function/skill/change_move/front.mcfunction new file mode 100644 index 000000000..3b7ceb99b --- /dev/null +++ b/data/ai/function/skill/change_move/front.mcfunction @@ -0,0 +1,13 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Front.Add 100 +execute store result score @s _ run data get storage mob_data: Call.Front.Range 100 +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Front 100 +execute if data storage mob_data: Call.Front.Set store result score _ Calc run data get storage mob_data: Call.Front.Set 100 +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Front.Limit store result score @s _ run data get storage mob_data: Call.Front.Limit 100 +execute if score @s Calc matches 1.. if data storage mob_data: Call.Front.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Front.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage mob_data: AI.Turn[0].Move.Front double 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/horizontal.mcfunction b/data/ai/function/skill/change_move/horizontal.mcfunction new file mode 100644 index 000000000..63190873c --- /dev/null +++ b/data/ai/function/skill/change_move/horizontal.mcfunction @@ -0,0 +1,13 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Horizontal.Add 100 +execute store result score @s _ run data get storage mob_data: Call.Horizontal.Range 100 +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Rotate[0] 100 +execute if data storage mob_data: Call.Horizontal.Set store result score _ Calc run data get storage mob_data: Call.Horizontal.Set 100 +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Horizontal.Limit store result score @s _ run data get storage mob_data: Call.Horizontal.Limit 100 +execute if score @s Calc matches 1.. if data storage mob_data: Call.Horizontal.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Horizontal.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage mob_data: AI.Turn[0].Rotate[0] float 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/range.mcfunction b/data/ai/function/skill/change_move/range.mcfunction new file mode 100644 index 000000000..677bacd28 --- /dev/null +++ b/data/ai/function/skill/change_move/range.mcfunction @@ -0,0 +1,5 @@ +#RangeをAddに足す +execute store result score _ Calc run function calc:random +scoreboard players add @s _ 1 +scoreboard players operation _ Calc %= @s _ +scoreboard players operation @s Calc += _ Calc diff --git a/data/ai/function/skill/change_move/side.mcfunction b/data/ai/function/skill/change_move/side.mcfunction new file mode 100644 index 000000000..9b987eb17 --- /dev/null +++ b/data/ai/function/skill/change_move/side.mcfunction @@ -0,0 +1,13 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Side.Add 100 +execute store result score @s _ run data get storage mob_data: Call.Side.Range 100 +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Side 100 +execute if data storage mob_data: Call.Side.Set store result score _ Calc run data get storage mob_data: Call.Side.Set 100 +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Side.Limit store result score @s _ run data get storage mob_data: Call.Side.Limit 100 +execute if score @s Calc matches 1.. if data storage mob_data: Call.Side.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Side.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage mob_data: AI.Turn[0].Move.Side double 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/up.mcfunction b/data/ai/function/skill/change_move/up.mcfunction new file mode 100644 index 000000000..acf2d5d23 --- /dev/null +++ b/data/ai/function/skill/change_move/up.mcfunction @@ -0,0 +1,13 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Up.Add 100 +execute store result score @s _ run data get storage mob_data: Call.Up.Range 100 +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Up 100 +execute if data storage mob_data: Call.Up.Set store result score _ Calc run data get storage mob_data: Call.Up.Set 100 +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Up.Limit store result score @s _ run data get storage mob_data: Call.Up.Limit 100 +execute if score @s Calc matches 1.. if data storage mob_data: Call.Up.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Up.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage mob_data: AI.Turn[0].Move.Up double 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/vertical.mcfunction b/data/ai/function/skill/change_move/vertical.mcfunction new file mode 100644 index 000000000..23e68585e --- /dev/null +++ b/data/ai/function/skill/change_move/vertical.mcfunction @@ -0,0 +1,13 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Vertical.Add 100 +execute store result score @s _ run data get storage mob_data: Call.Vertical.Range 100 +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Rotate[1] 100 +execute if data storage mob_data: Call.Vertical.Set store result score _ Calc run data get storage mob_data: Call.Vertical.Set 100 +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Vertical.Limit store result score @s _ run data get storage mob_data: Call.Vertical.Limit 100 +execute if score @s Calc matches 1.. if data storage mob_data: Call.Vertical.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Vertical.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage mob_data: AI.Turn[0].Rotate[1] float 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_status/.mcfunction b/data/ai/function/skill/change_status/.mcfunction new file mode 100644 index 000000000..49cc5ac9c --- /dev/null +++ b/data/ai/function/skill/change_status/.mcfunction @@ -0,0 +1,15 @@ +data modify storage tusb_mob: "遅延ステータス"."ステータス" set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス" + +execute if data storage mob_data: Call.Level run function skill:enemy/change_status/level/ +execute if data storage mob_data: Call.HP run function skill:enemy/change_status/hp +execute if data storage mob_data: Call.MP run function skill:enemy/change_status/mp +execute if data storage mob_data: Call.Attack run function skill:enemy/change_status/attack +execute if data storage mob_data: Call.Defense run function skill:enemy/change_status/defense +execute if data storage mob_data: Call.MagicAttack run function skill:enemy/change_status/magic_attack +execute if data storage mob_data: Call.MagicDefence run function skill:enemy/change_status/magic_defense + +#データを元に戻す +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス" set from storage tusb_mob: "遅延ステータス"."ステータス" + +# ライフスカウター +execute if entity @s[tag=LifeScouter] run function skill:act/common/life_scouter/bar_set diff --git a/data/ai/function/skill/change_status/attack.mcfunction b/data/ai/function/skill/change_status/attack.mcfunction new file mode 100644 index 000000000..31de7125e --- /dev/null +++ b/data/ai/function/skill/change_status/attack.mcfunction @@ -0,0 +1,14 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Attack.Add +execute store result score @s _ run data get storage mob_data: Call.Attack.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."物理攻撃力" +execute if data storage mob_data: Call.Attack.Set store result score _ Calc run data get storage mob_data: Call.Attack.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Attack.Limit store result score @s _ run data get storage mob_data: Call.Attack.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.Attack.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Attack.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."物理攻撃力" int 1 run scoreboard players get _ Calc +function entity:spawn/apply_status/status/attack diff --git a/data/ai/function/skill/change_status/defense.mcfunction b/data/ai/function/skill/change_status/defense.mcfunction new file mode 100644 index 000000000..f20b4a296 --- /dev/null +++ b/data/ai/function/skill/change_status/defense.mcfunction @@ -0,0 +1,14 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Defense.Add +execute store result score @s _ run data get storage mob_data: Call.Defense.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."物理防御力" +execute if data storage mob_data: Call.Defense.Set store result score _ Calc run data get storage mob_data: Call.Defense.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.Defense.Limit store result score @s _ run data get storage mob_data: Call.Defense.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.Defense.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Defense.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."物理防御力" int 1 run scoreboard players get _ Calc +function entity:spawn/apply_status/status/defense diff --git a/data/ai/function/skill/change_status/hp.mcfunction b/data/ai/function/skill/change_status/hp.mcfunction new file mode 100644 index 000000000..770c11163 --- /dev/null +++ b/data/ai/function/skill/change_status/hp.mcfunction @@ -0,0 +1,18 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.HP.Add +execute store result score @s _ run data get storage mob_data: Call.HP.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."最大HP" +execute if data storage mob_data: Call.HP.Set store result score _ Calc run data get storage mob_data: Call.HP.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.HP.Limit store result score @s _ run data get storage mob_data: Call.HP.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.HP.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.HP.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."最大HP" int 1 run scoreboard players get _ Calc +#現在HPの補正 +scoreboard players operation @s _ = @s HPMax +function entity:spawn/apply_status/status/hp +scoreboard players operation @s HP *= @s HPMax +scoreboard players operation @s HP /= @s _ diff --git a/data/ai/function/skill/change_status/level/.mcfunction b/data/ai/function/skill/change_status/level/.mcfunction new file mode 100644 index 000000000..826ffb458 --- /dev/null +++ b/data/ai/function/skill/change_status/level/.mcfunction @@ -0,0 +1,31 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Level.Add +execute store result score @s _ run data get storage mob_data: Call.Level.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute if data storage mob_data: Call.Level.Set store result score @s Level run data get storage mob_data: Call.Level.Set +scoreboard players operation @s Level += @s Calc +#Limit +execute if data storage mob_data: Call.Level.Limit store result score @s _ run data get storage mob_data: Call.Level.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.Level.Limit run scoreboard players operation @s Level < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Level.Limit run scoreboard players operation @s Level > @s _ + +function entity:spawn/apply_status/status/attack +function entity:spawn/apply_status/status/defense +function entity:spawn/apply_status/status/special_attack +function entity:spawn/apply_status/status/special_defense +#現在HPの補正 +scoreboard players set _ _ 1000 +scoreboard players operation @s HP *= _ _ +scoreboard players operation @s HP /= @s HPMax +function entity:spawn/apply_status/status/hp +scoreboard players operation @s HP *= @s HPMax +scoreboard players operation @s HP /= _ _ +#現在MPの補正 +scoreboard players set _ _ 1000 +scoreboard players operation @s MP *= _ _ +scoreboard players operation @s MP /= @s MPMax +function entity:spawn/apply_status/status/mp +scoreboard players operation @s MP *= @s MPMax +scoreboard players operation @s MP /= _ _ +#名前の修正 +execute if entity @s[tag=!HideLevel] run function skill:enemy/change_status/level/rename diff --git a/data/ai/function/skill/change_status/level/rename.mcfunction b/data/ai/function/skill/change_status/level/rename.mcfunction new file mode 100644 index 000000000..456ed2e27 --- /dev/null +++ b/data/ai/function/skill/change_status/level/rename.mcfunction @@ -0,0 +1,7 @@ +data modify entity @s CustomName set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName run data modify entity @s CustomName set value '' +execute in area:control_area run loot replace block 2 2 2 container.0 loot entity:name_with_level +execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName in area:control_area run data modify entity @s CustomName set from block 2 2 2 Items[0].tag.display.Lore[0] +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName in area:control_area run data modify entity @s CustomName set from block 2 2 2 Items[0].tag.display.Lore[1] + +execute if entity @s[tag=LifeScouter] run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].LifeScouter.OriginalName set from entity @s CustomName diff --git a/data/ai/function/skill/change_status/magic_attack.mcfunction b/data/ai/function/skill/change_status/magic_attack.mcfunction new file mode 100644 index 000000000..a86a76fcd --- /dev/null +++ b/data/ai/function/skill/change_status/magic_attack.mcfunction @@ -0,0 +1,14 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.MagicAttack.Add +execute store result score @s _ run data get storage mob_data: Call.MagicAttack.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法攻撃力" +execute if data storage mob_data: Call.MagicAttack.Set store result score _ Calc run data get storage mob_data: Call.MagicAttack.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.MagicAttack.Limit store result score @s _ run data get storage mob_data: Call.MagicAttack.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.MagicAttack.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.MagicAttack.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."魔法攻撃力" int 1 run scoreboard players get _ Calc +function entity:spawn/apply_status/status/magic_attack diff --git a/data/ai/function/skill/change_status/magic_defense.mcfunction b/data/ai/function/skill/change_status/magic_defense.mcfunction new file mode 100644 index 000000000..33c20a3e6 --- /dev/null +++ b/data/ai/function/skill/change_status/magic_defense.mcfunction @@ -0,0 +1,14 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.MagicDefence.Add +execute store result score @s _ run data get storage mob_data: Call.MagicDefence.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法防御力" +execute if data storage mob_data: Call.MagicDefence.Set store result score _ Calc run data get storage mob_data: Call.MagicDefence.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.MagicDefence.Limit store result score @s _ run data get storage mob_data: Call.MagicDefence.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.MagicDefence.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.MagicDefence.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."魔法防御力" int 1 run scoreboard players get _ Calc +function entity:spawn/apply_status/status/magic_defense diff --git a/data/ai/function/skill/change_status/mp.mcfunction b/data/ai/function/skill/change_status/mp.mcfunction new file mode 100644 index 000000000..dd3fc0091 --- /dev/null +++ b/data/ai/function/skill/change_status/mp.mcfunction @@ -0,0 +1,18 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.MP.Add +execute store result score @s _ run data get storage mob_data: Call.MP.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."最大MP" +execute if data storage mob_data: Call.MP.Set store result score _ Calc run data get storage mob_data: Call.MP.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.MP.Limit store result score @s _ run data get storage mob_data: Call.MP.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.MP.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.MP.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."最大MP" int 1 run scoreboard players get _ Calc +#現在MPの補正 +scoreboard players operation @s _ = @s MPMax +function entity:spawn/apply_status/status/mp +scoreboard players operation @s MP *= @s MPMax +scoreboard players operation @s MP /= @s _ diff --git a/data/ai/function/skill/change_turn/.mcfunction b/data/ai/function/skill/change_turn/.mcfunction new file mode 100644 index 000000000..c9642de83 --- /dev/null +++ b/data/ai/function/skill/change_turn/.mcfunction @@ -0,0 +1,10 @@ +#AI.Turn[0].ExitにChangeTurnフラグを追加 +data modify storage mob_data: AI.Turn[0].Exit.ChangeTurn set value 1b +#Onceを進める +execute if data storage mob_data: AI.Turn[0].Once store result storage mob_data: AI.Turn[0].Once int 0.99999 run data get storage mob_data: AI.Turn[0].Once +#AI.ChangeTurnにターンを進める回数を保存する +execute if data storage mob_data: Call.Loop run data modify storage mob_data: AI.ChangeTurn set from storage mob_data: Call.Loop +execute if data storage mob_data: Call.Set run function skill:enemy/change_turn/set +execute if data storage mob_data: Call.Random run function skill:enemy/change_turn/random +#データを元に戻す +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/change_turn/random.mcfunction b/data/ai/function/skill/change_turn/random.mcfunction new file mode 100644 index 000000000..b151ede36 --- /dev/null +++ b/data/ai/function/skill/change_turn/random.mcfunction @@ -0,0 +1,6 @@ +#現在のTurnを除くランダムなTurnに変える +execute store result score _ Calc run function calc:random +execute store result score _ _ if data storage mob_data: AI.Turn[] +scoreboard players remove _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result storage mob_data: AI.ChangeTurn int 1 run scoreboard players add _ Calc 1 diff --git a/data/ai/function/skill/change_turn/set.mcfunction b/data/ai/function/skill/change_turn/set.mcfunction new file mode 100644 index 000000000..1de753058 --- /dev/null +++ b/data/ai/function/skill/change_turn/set.mcfunction @@ -0,0 +1,7 @@ +#指定したTurnに変更 +execute store result score _ Calc run data get storage mob_data: Call.Set +execute store result score _ _ run data get storage mob_data: AI.Turn[0].Index +scoreboard players operation _ Calc -= _ _ +execute if score _ Calc matches ..-1 store result score _ _ run data get storage mob_data: AI.TurnCount +execute if score _ Calc matches ..-1 run scoreboard players operation _ Calc += _ _ +execute unless score _ Calc matches 0 store result storage mob_data: AI.ChangeTurn int 1 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/damage/.mcfunction b/data/ai/function/skill/damage/.mcfunction new file mode 100644 index 000000000..e4338b7ba --- /dev/null +++ b/data/ai/function/skill/damage/.mcfunction @@ -0,0 +1,24 @@ +#MPの吸収量を初期化 +scoreboard players set _ MPMax 0 + +#各種ダメージを初期化 +data modify storage skill: damage set value {Physical:0,Fire:0,Ice:0,Lightning:0,Light:0,Dark:0} +function skill:damage/add/skill/normal +data modify storage score_damage: Argument set value {Damage:0d} + +# Enemyへダメージ +execute if data storage mob_data: Call.Mob run function skill:enemy/damage/mob + +# FriendlyかつEnemyに対して二重付与しないように初期化 +data modify storage skill: damage set value {Physical:0,Fire:0,Ice:0,Lightning:0,Light:0,Dark:0} +function skill:damage/add/skill/normal + +# Friendlyへダメージ +execute if data storage mob_data: Call.Player run function skill:enemy/damage/player + +# 爆発 +execute if data storage mob_data: Call.Explosion run function skill:enemy/damage/explosion + +#MPを吸収 +scoreboard players operation @s MP += _ MPMax +scoreboard players operation @s MP < @s MPMax diff --git a/data/ai/function/skill/damage/aec.mcfunction b/data/ai/function/skill/damage/aec.mcfunction new file mode 100644 index 000000000..d1ff21c18 --- /dev/null +++ b/data/ai/function/skill/damage/aec.mcfunction @@ -0,0 +1,3 @@ +#モブの座標にAECを召喚する +summon area_effect_cloud ~ ~ ~ {Tags:[DamageAEC],Duration:1,Age:-1} +execute as @e[tag=DamageAEC,distance=..0.01,limit=1] run data modify entity @s {} merge from storage mob_data: Call.AEC diff --git a/data/ai/function/skill/damage/apply.mcfunction b/data/ai/function/skill/damage/apply.mcfunction new file mode 100644 index 000000000..d542e7627 --- /dev/null +++ b/data/ai/function/skill/damage/apply.mcfunction @@ -0,0 +1,4 @@ +execute if entity @s[tag=Enemy] run function skill:damage/apply/ +execute if entity @s[predicate=entity:friendly] run function skill:enemy/damage/is_player +execute if data storage mob_data: Call.AEC positioned as @s run function skill:enemy/damage/aec +execute if data storage mob_data: Call.MP run function skill:enemy/damage/mp diff --git a/data/ai/function/skill/damage/apply_to_player.mcfunction b/data/ai/function/skill/damage/apply_to_player.mcfunction new file mode 100644 index 000000000..daf5875ac --- /dev/null +++ b/data/ai/function/skill/damage/apply_to_player.mcfunction @@ -0,0 +1,4 @@ +##プレイヤーへのダメージ +function score_damage:api/attack +#被ダメージトリガー +function player:trigger/damage_taken \ No newline at end of file diff --git a/data/ai/function/skill/damage/can_be_blocked.mcfunction b/data/ai/function/skill/damage/can_be_blocked.mcfunction new file mode 100644 index 000000000..97c8e23d3 --- /dev/null +++ b/data/ai/function/skill/damage/can_be_blocked.mcfunction @@ -0,0 +1,2 @@ +execute unless data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/is_using_shield +execute if data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/apply_to_player \ No newline at end of file diff --git a/data/ai/function/skill/damage/check_distance.mcfunction b/data/ai/function/skill/damage/check_distance.mcfunction new file mode 100644 index 000000000..9c36f2d87 --- /dev/null +++ b/data/ai/function/skill/damage/check_distance.mcfunction @@ -0,0 +1,15 @@ + +### Distance内か詳しく調べる +# 範囲内ならダメージ付与 + +#距離取得(cm) +function calc:geometry/distance/ + +#0-0-0-0-1移動 +function calc:geometry/tp_00001 + +#ダメージ付与 +execute if score 00000000-0000-0000-0000-000000000001 Calc <= _ Ret if score _ Ret <= 00000000-0000-0000-0000-000000000000 Calc run function skill:enemy/damage/apply + +#目標タグ削除 +tag @s remove TargetCards diff --git a/data/ai/function/skill/damage/explosion.mcfunction b/data/ai/function/skill/damage/explosion.mcfunction new file mode 100644 index 000000000..0543e539c --- /dev/null +++ b/data/ai/function/skill/damage/explosion.mcfunction @@ -0,0 +1,5 @@ +#モブの座標に即爆発クリーパーを召喚する +summon creeper ~ ~500 ~ {Tags:[Explosion],ignited:1b,Fuse:2s,Invulnerable:1b} +execute positioned ~ ~500 ~ run tp @e[type=creeper,tag=!Initialized,distance=..0.0001,limit=1] ~ ~-500 ~ +execute store result entity @e[type=creeper,tag=!Initialized,distance=..0.0001,limit=1] ExplosionRadius byte 1 run data get storage mob_data: Call.Explosion +data modify entity @e[type=creeper,tag=!Initialized,distance=..0.0001,limit=1] CustomName set from entity @s CustomName diff --git a/data/ai/function/skill/damage/friendly.mcfunction b/data/ai/function/skill/damage/friendly.mcfunction new file mode 100644 index 000000000..78e22c3fd --- /dev/null +++ b/data/ai/function/skill/damage/friendly.mcfunction @@ -0,0 +1,6 @@ +#非プレイヤーFriendlyに物理ダメージとして与える +execute store result score _ Damage run data get storage score_damage: Argument.Damage +data modify storage skill: damage set value {hit:1b} +function skill:damage/apply/physical +#HitDamage付与 +tag @s add HitDamageTaken diff --git a/data/ai/function/skill/damage/is_blocking.mcfunction b/data/ai/function/skill/damage/is_blocking.mcfunction new file mode 100644 index 000000000..204d906fc --- /dev/null +++ b/data/ai/function/skill/damage/is_blocking.mcfunction @@ -0,0 +1,2 @@ +execute if entity @s[distance=..1000] positioned as @s positioned ~ ~1 ~ run function skill:enemy/damage/use_shield +execute unless entity @s[distance=..1000] run function score_damage:api/attack diff --git a/data/ai/function/skill/damage/is_player.mcfunction b/data/ai/function/skill/damage/is_player.mcfunction new file mode 100644 index 000000000..f04e02880 --- /dev/null +++ b/data/ai/function/skill/damage/is_player.mcfunction @@ -0,0 +1,4 @@ +##プレイヤーかどうかで分岐 +# プレイヤーは生存している必要がある。 +execute if entity @s[type=player,nbt=!{Health:0.0f}] run function skill:enemy/damage/can_be_blocked +execute unless entity @s[type=player] run function skill:enemy/damage/friendly \ No newline at end of file diff --git a/data/ai/function/skill/damage/is_using_shield.mcfunction b/data/ai/function/skill/damage/is_using_shield.mcfunction new file mode 100644 index 000000000..979577a83 --- /dev/null +++ b/data/ai/function/skill/damage/is_using_shield.mcfunction @@ -0,0 +1,3 @@ +execute store result score _ _ run time query gametime +execute if score @s ShieldUsingTick = _ _ positioned as @s facing entity 0-0-0-0-1 feet positioned ^ ^ ^1000 rotated as @s positioned ^ ^ ^-1000 run function skill:enemy/damage/is_blocking +execute unless score @s ShieldUsingTick = _ _ run function skill:enemy/damage/apply_to_player \ No newline at end of file diff --git a/data/ai/function/skill/damage/mob.mcfunction b/data/ai/function/skill/damage/mob.mcfunction new file mode 100644 index 000000000..774ea3192 --- /dev/null +++ b/data/ai/function/skill/damage/mob.mcfunction @@ -0,0 +1,22 @@ + +### 他のモブに対して属性ダメージを与える。 + +#ダメージ取得 +data modify storage skill: damage set from storage mob_data: Call.Mob +function skill:damage/add/skill/normal + +execute store result score 00000000-0000-0000-0000-000000000000 Calc run data get storage mob_data: Call.Distance.Max 100 +execute store result score 00000000-0000-0000-0000-000000000001 Calc run data get storage mob_data: Call.Distance.Min 100 + +#大雑把に目標とするモブを探す +execute if score 00000000-0000-0000-0000-000000000001 Calc matches 0 as @e[tag=Enemy,distance=0] run function skill:damage/apply/ +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 1.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..200 run tag @e[tag=Enemy,distance=0.01..2] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 201.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..400 run tag @e[tag=Enemy,distance=2.01..4] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 401.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..800 run tag @e[tag=Enemy,distance=4.01..8] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 801.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..1600 run tag @e[tag=Enemy,distance=8.01..16] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 1601.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..3200 run tag @e[tag=Enemy,distance=16.01..32] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 3201.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..6400 run tag @e[tag=Enemy,distance=32.01..64] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 6401.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..12800 run tag @e[tag=Enemy,distance=64.01..128] add TargetCards + +#細かく調べてダメージを与える +execute as @e[tag=TargetCards] run function skill:enemy/damage/check_distance diff --git a/data/ai/function/skill/damage/mp.mcfunction b/data/ai/function/skill/damage/mp.mcfunction new file mode 100644 index 000000000..6270a1ff6 --- /dev/null +++ b/data/ai/function/skill/damage/mp.mcfunction @@ -0,0 +1,11 @@ +#MP減少量を取得 +execute store result score _ MP run data get storage mob_data: Call.MP.MP +#割合消費のとき +scoreboard players set _ _ 100 +execute if data storage mob_data: Call.MP{Percent:1b} run scoreboard players operation _ MP *= @s MPMax +execute if data storage mob_data: Call.MP{Percent:1b} run scoreboard players operation _ MP /= _ _ +#MPを減らす Absorb:1bで吸収 +scoreboard players operation @s MP -= _ MP +execute if data storage mob_data: Call.MP{Absorb:1b} run scoreboard players operation _ MPMax += _ MP +execute if data storage mob_data: Call.MP{Absorb:1b} run scoreboard players operation _ MPMax += @s[scores={MP=..-1}] MP +scoreboard players set @s[scores={MP=..-1}] MP 0 diff --git a/data/ai/function/skill/damage/player.mcfunction b/data/ai/function/skill/damage/player.mcfunction new file mode 100644 index 000000000..67dd62eb9 --- /dev/null +++ b/data/ai/function/skill/damage/player.mcfunction @@ -0,0 +1,28 @@ + +### プレイヤーに対してダメージを与える。 + +#ダメージ取得 +data remove storage score_damage: Argument +data modify storage score_damage: Argument set from storage mob_data: Call.Player +execute unless data storage score_damage: Argument.Effectiveness run data modify storage score_damage: Argument.Effectiveness set value 100 +execute store result score _ _ run data get storage score_damage: Argument.Effectiveness +execute unless data storage score_damage: Argument.Damage store result storage score_damage: Argument.Damage double 0.01 run scoreboard players operation _ _ *= @s MagicAttack + +#モブ名取得 +data modify storage mob_data: MobName set from entity @s CustomName + +execute store result score 00000000-0000-0000-0000-000000000000 Calc run data get storage mob_data: Call.Distance.Max 100 +execute store result score 00000000-0000-0000-0000-000000000001 Calc run data get storage mob_data: Call.Distance.Min 100 + +#大雑把に目標とするモブを探す +execute if score 00000000-0000-0000-0000-000000000001 Calc matches 0 run tag @e[predicate=entity:friendly,distance=0] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 1.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..200 run tag @e[predicate=entity:friendly,distance=0.01..2] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 201.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..400 run tag @e[predicate=entity:friendly,distance=2.01..4] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 401.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..800 run tag @e[predicate=entity:friendly,distance=4.01..8] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 801.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..1600 run tag @e[predicate=entity:friendly,distance=8.01..16] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 1601.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..3200 run tag @e[predicate=entity:friendly,distance=16.01..32] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 3201.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..6400 run tag @e[predicate=entity:friendly,distance=32.01..64] add TargetCards +execute if score 00000000-0000-0000-0000-000000000000 Calc matches 6401.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..12800 run tag @e[predicate=entity:friendly,distance=64.01..128] add TargetCards + +#細かく調べてダメージを与える +execute as @e[tag=TargetCards] run function skill:enemy/damage/check_distance diff --git a/data/ai/function/skill/damage/use_shield.mcfunction b/data/ai/function/skill/damage/use_shield.mcfunction new file mode 100644 index 000000000..920cf91cb --- /dev/null +++ b/data/ai/function/skill/damage/use_shield.mcfunction @@ -0,0 +1,11 @@ + +### 盾で防御 +function makeup:player/trigger/using/shield +#装備を取得 +function player:load_equipments + +### スキル +function skill:equipments_to_items +data remove storage item: Item +data modify storage item: Item set from storage item: Items[{tag:{Skill:{Trigger:"盾で攻撃を防ぐ"}}}] +execute if data storage item: Item.tag.Skill{Trigger:"盾で攻撃を防ぐ"} run function skill:practice/ diff --git a/data/ai/function/skill/delay_action/act/.mcfunction b/data/ai/function/skill/delay_action/act/.mcfunction new file mode 100644 index 000000000..ad9bc191c --- /dev/null +++ b/data/ai/function/skill/delay_action/act/.mcfunction @@ -0,0 +1,3 @@ +scoreboard players add @s ActionTick 1 +###一時的な処理を継続するかどうか NextActionTickが1以上なら継続 +execute if score @s ActionTick >= @s NextActionTick run function skill:enemy/delay_action/act/check/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/check/.mcfunction b/data/ai/function/skill/delay_action/act/check/.mcfunction new file mode 100644 index 000000000..61d0f4cd4 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/check/.mcfunction @@ -0,0 +1,30 @@ +###ohmydat確認 +function #oh_my_dat:please +###List移行 +data modify storage mob_data: DelayAction set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].DelayAction +###反転 +data modify storage calc: Array.reverse.Input set from storage mob_data: DelayAction +function calc:array/reverse/ +data modify storage mob_data: CheckingAction set from storage calc: Array.reverse.Output +###Loop +execute if data storage mob_data: CheckingAction[0] run function skill:enemy/delay_action/act/check/loop +data modify storage mob_data: DelayAction set from storage mob_data: CheckedAction +###DelayActionのソートをする +###Executed:1bのついた要素だけ位置を調整する +execute if data storage mob_data: DelayAction[0] run function skill:enemy/delay_action/act/sort/ +###次の詠唱Tick更新 +execute if data storage mob_data: DelayAction[0] store result score @s NextActionTick run data get storage mob_data: DelayAction[0].NextAction +execute unless data storage mob_data: DelayAction[0] run scoreboard players reset @s NextActionTick +scoreboard players reset @s ActionTick +###Ohmydatに保存 +data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].DelayAction +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].DelayAction set from storage mob_data: DelayAction + +execute unless score @s NextActionTick matches 1.. run scoreboard players remove @s NativeFlag 100 + +###一時的に保存したデータの破棄 +data remove storage mob_data: DelayAction +data remove storage mob_data: SortingActionData +data remove storage mob_data: ExecutingAction +data remove storage mob_data: CheckingAction +data remove storage mob_data: CheckedAction \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/check/loop.mcfunction b/data/ai/function/skill/delay_action/act/check/loop.mcfunction new file mode 100644 index 000000000..8cd9a83f8 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/check/loop.mcfunction @@ -0,0 +1,15 @@ +###NextAction更新 "@s _" +scoreboard players set @s _ 0 +execute store result score @s _ run data get storage mob_data: CheckingAction[-1].NextAction +scoreboard players operation @s _ -= @s ActionTick +###Data移動 +data modify storage mob_data: ExecutingAction set from storage mob_data: CheckingAction[-1] +###Execute +execute if score @s _ matches ..0 run function skill:enemy/delay_action/act/execute/ +###Dataを戻す +data modify storage mob_data: CheckingAction[-1] set from storage mob_data: ExecutingAction +data remove storage mob_data: ExecutingAction +###Shift +function skill:enemy/delay_action/act/check/shift +###Loop +execute if data storage mob_data: CheckingAction[-1] run function skill:enemy/delay_action/act/check/loop \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/check/shift.mcfunction b/data/ai/function/skill/delay_action/act/check/shift.mcfunction new file mode 100644 index 000000000..b51da963d --- /dev/null +++ b/data/ai/function/skill/delay_action/act/check/shift.mcfunction @@ -0,0 +1,6 @@ +###Shift +data modify storage mob_data: CheckedAction append from storage mob_data: CheckingAction[-1] +data remove storage mob_data: CheckingAction[-1] + +###削除予定の要素を削除 +data remove storage mob_data: CheckedAction[{Delete:1b}] \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/.mcfunction b/data/ai/function/skill/delay_action/act/execute/.mcfunction new file mode 100644 index 000000000..3beb6fb40 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/.mcfunction @@ -0,0 +1,8 @@ +###Dataの参照、書き換えはExecutingActionから行う +execute if data storage mob_data: ExecutingAction{Tags:[Casting]} run function skill:enemy/delay_action/act/execute/casting/ +execute if data storage mob_data: ExecutingAction{Tags:[Affect]} run function skill:enemy/delay_action/act/execute/affect/ +execute if data storage mob_data: ExecutingAction{Tags:[Enemy]} run function skill:enemy/delay_action/act/execute/enemy/ + + +###共通処理 +function skill:enemy/delay_action/act/execute/common \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction new file mode 100644 index 000000000..e06a983cd --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction @@ -0,0 +1,2 @@ +execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion01]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_01/ +execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion02]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_02/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction new file mode 100644 index 000000000..ddd58d639 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction @@ -0,0 +1,61 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_060 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction new file mode 100644 index 000000000..4cc640650 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction @@ -0,0 +1,61 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_060 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction new file mode 100644 index 000000000..c7a10c9cd --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction @@ -0,0 +1,15 @@ +execute if data storage mob_data: ExecutingAction{Tags:[Cast]} run function skill:enemy/delay_action/act/execute/casting/cast/ +execute if data storage mob_data: ExecutingAction{Tags:[LaserPointer]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/ +execute if data storage mob_data: ExecutingAction{Tags:[Charge]} run function skill:enemy/delay_action/act/execute/casting/charge/ +execute if data storage mob_data: ExecutingAction{Tags:[WaterBolt]} run function skill:enemy/delay_action/act/execute/casting/water_bolt/ +execute if data storage mob_data: ExecutingAction{Tags:[SludgeGarbager]} run function skill:enemy/delay_action/act/execute/casting/sludge_garbager/ +execute if data storage mob_data: ExecutingAction{Tags:[PillarOfWater]} run function skill:enemy/delay_action/act/execute/casting/pillar_of_water/ +execute if data storage mob_data: ExecutingAction{Tags:[FinishingMove]} run function skill:enemy/delay_action/act/execute/casting/finishing_move/ +execute if data storage mob_data: ExecutingAction{Tags:[CrossRing]} run function skill:enemy/delay_action/act/execute/casting/cross_ring/ +execute if data storage mob_data: ExecutingAction{Tags:[Healing]} run function skill:enemy/delay_action/act/execute/casting/healing/ +execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher01]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_01/ +execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher02]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_02/ +execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher03]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_03/ +execute if data storage mob_data: ExecutingAction{Tags:[DoomBomb]} run function skill:enemy/delay_action/act/execute/casting/doom_bomb/ +execute if data storage mob_data: ExecutingAction{Tags:[DoomCast]} run function skill:enemy/delay_action/act/execute/casting/doom_cast/ +execute if data storage mob_data: ExecutingAction{Tags:[CircleHearts]} run function skill:enemy/delay_action/act/execute/casting/circle_hearts/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction new file mode 100644 index 000000000..930d8a4c2 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction @@ -0,0 +1,81 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_061 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_062 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_063 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_064 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_065 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_066 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_067 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_068 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_069 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_070 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_071 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_072 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_073 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_074 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_075 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_076 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_077 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_078 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_079 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_080 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction new file mode 100644 index 000000000..e9c64979f --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction @@ -0,0 +1,81 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_061 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_062 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_063 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_064 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_065 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_066 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_067 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_068 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_069 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_070 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_071 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_072 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_073 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_074 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_075 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_076 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_077 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_078 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_079 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_080 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction new file mode 100644 index 000000000..86989f08a --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction @@ -0,0 +1,81 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_061 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_062 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_063 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_064 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_065 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_066 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_067 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_068 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_069 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_070 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_071 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_072 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_073 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_074 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_075 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_076 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_077 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_078 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_079 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_080 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction new file mode 100644 index 000000000..212343237 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction @@ -0,0 +1 @@ +execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/cast/normal/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction new file mode 100644 index 000000000..680f4d967 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction @@ -0,0 +1,5 @@ +###詠唱演出 +execute if data storage mob_data: ExecutingAction{Stage:3} positioned ~ ~0.5 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ +execute if data storage mob_data: ExecutingAction{Stage:2} positioned ~ ~1.0 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ +execute if data storage mob_data: ExecutingAction{Stage:1} positioned ~ ~1.5 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ +data modify storage mob_data: ExecutingAction.NextAction set value 5 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction new file mode 100644 index 000000000..f52b86817 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction @@ -0,0 +1 @@ +execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/charge/normal/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction new file mode 100644 index 000000000..196a06d62 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction @@ -0,0 +1,12 @@ +## 呼び出し +execute anchored eyes positioned ^ ^ ^ run function calc:geometry/tp_00000 + +## 演出 +function makeup:skill/enemy/delay_action/casting/charge/normal/sound/ +execute as 0-0-0-0-0 at @s run function skill:enemy/delay_action/act/execute/casting/charge/normal/act + + + + + +data modify storage mob_data: ExecutingAction.NextAction set value 1 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction new file mode 100644 index 000000000..af8590cb5 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction @@ -0,0 +1,34 @@ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function calc:set/random_rotation +function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ + +function calc:geometry/return_marker \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction new file mode 100644 index 000000000..c5a25eaaf --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction @@ -0,0 +1,31 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_030 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction new file mode 100644 index 000000000..83121169b --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction @@ -0,0 +1,21 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_001 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_002 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_003 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_004 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_005 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_006 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_007 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_008 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_009 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_010 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_011 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_012 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_013 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_014 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_015 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_016 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_017 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_018 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_019 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_020 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction new file mode 100644 index 000000000..26ffe9e5f --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction @@ -0,0 +1,34 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +function calc:geometry/tp_00000 +execute store result score _ Random run function calc:random +execute store result entity 0-0-0-0-0 Rotation[0] float 0.01 run scoreboard players get _ Random +execute store result score _ Random run function calc:random +execute store result entity 0-0-0-0-0 Rotation[1] float 0.01 run scoreboard players get _ Random +execute if data storage mob_data: ExecutingAction{Stage:25} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_01 +execute if data storage mob_data: ExecutingAction{Stage:24} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_02 +execute if data storage mob_data: ExecutingAction{Stage:23} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_03 +execute if data storage mob_data: ExecutingAction{Stage:22} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_04 +execute if data storage mob_data: ExecutingAction{Stage:21} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_05 +execute if data storage mob_data: ExecutingAction{Stage:20} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_06 +execute if data storage mob_data: ExecutingAction{Stage:19} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_07 +execute if data storage mob_data: ExecutingAction{Stage:18} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_08 +execute if data storage mob_data: ExecutingAction{Stage:17} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_09 +execute if data storage mob_data: ExecutingAction{Stage:16} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_10 +execute if data storage mob_data: ExecutingAction{Stage:15} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_11 +execute if data storage mob_data: ExecutingAction{Stage:14} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_12 +execute if data storage mob_data: ExecutingAction{Stage:13} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_13 +execute if data storage mob_data: ExecutingAction{Stage:12} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_14 +execute if data storage mob_data: ExecutingAction{Stage:11} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_15 +execute if data storage mob_data: ExecutingAction{Stage:10} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_16 +execute if data storage mob_data: ExecutingAction{Stage:9} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_17 +execute if data storage mob_data: ExecutingAction{Stage:8} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_18 +execute if data storage mob_data: ExecutingAction{Stage:7} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_19 +execute if data storage mob_data: ExecutingAction{Stage:6} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_20 +execute if data storage mob_data: ExecutingAction{Stage:6} run data modify storage mob_data: ExecutingAction.NextAction set value 10 +execute as 0-0-0-0-0 run function calc:geometry/return_marker +execute if data storage mob_data: ExecutingAction{Stage:5} run data modify storage mob_data: ExecutingAction.NextAction set value 1 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_01 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_02 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_03 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_04 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_05 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction new file mode 100644 index 000000000..7b3d8cbf0 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction @@ -0,0 +1,16 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:15} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_01 +execute if data storage mob_data: ExecutingAction{Stage:14} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_02 +execute if data storage mob_data: ExecutingAction{Stage:13} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_03 +execute if data storage mob_data: ExecutingAction{Stage:12} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_04 +execute if data storage mob_data: ExecutingAction{Stage:11} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_05 +execute if data storage mob_data: ExecutingAction{Stage:10} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_06 +execute if data storage mob_data: ExecutingAction{Stage:9} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_07 +execute if data storage mob_data: ExecutingAction{Stage:8} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_08 +execute if data storage mob_data: ExecutingAction{Stage:7} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_09 +execute if data storage mob_data: ExecutingAction{Stage:6} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_10 +execute if data storage mob_data: ExecutingAction{Stage:5} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_11 +execute if data storage mob_data: ExecutingAction{Stage:4} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_12 +execute if data storage mob_data: ExecutingAction{Stage:3} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_13 +execute if data storage mob_data: ExecutingAction{Stage:2} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_14 +execute if data storage mob_data: ExecutingAction{Stage:1} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_15 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction new file mode 100644 index 000000000..ac7627988 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction @@ -0,0 +1,61 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_060 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction new file mode 100644 index 000000000..212e07949 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction @@ -0,0 +1,32 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:31} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_001 +execute if data storage mob_data: ExecutingAction{Stage:30} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_002 +execute if data storage mob_data: ExecutingAction{Stage:29} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_003 +execute if data storage mob_data: ExecutingAction{Stage:28} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_004 +execute if data storage mob_data: ExecutingAction{Stage:27} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_005 +execute if data storage mob_data: ExecutingAction{Stage:26} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_006 +execute if data storage mob_data: ExecutingAction{Stage:25} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_007 +execute if data storage mob_data: ExecutingAction{Stage:24} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_008 +execute if data storage mob_data: ExecutingAction{Stage:23} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_009 +execute if data storage mob_data: ExecutingAction{Stage:22} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_010 +execute if data storage mob_data: ExecutingAction{Stage:21} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_011 +execute if data storage mob_data: ExecutingAction{Stage:20} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_012 +execute if data storage mob_data: ExecutingAction{Stage:19} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_013 +execute if data storage mob_data: ExecutingAction{Stage:18} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_014 +execute if data storage mob_data: ExecutingAction{Stage:17} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_015 +execute if data storage mob_data: ExecutingAction{Stage:16} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_016 +execute if data storage mob_data: ExecutingAction{Stage:15} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_017 +execute if data storage mob_data: ExecutingAction{Stage:14} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_018 +execute if data storage mob_data: ExecutingAction{Stage:13} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_019 +execute if data storage mob_data: ExecutingAction{Stage:12} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_020 +execute if data storage mob_data: ExecutingAction{Stage:11} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_021 +execute if data storage mob_data: ExecutingAction{Stage:10} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_022 +execute if data storage mob_data: ExecutingAction{Stage:9} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_023 +execute if data storage mob_data: ExecutingAction{Stage:8} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_024 +execute if data storage mob_data: ExecutingAction{Stage:7} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_025 +execute if data storage mob_data: ExecutingAction{Stage:6} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_026 +execute if data storage mob_data: ExecutingAction{Stage:5} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_027 +execute if data storage mob_data: ExecutingAction{Stage:4} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_028 +execute if data storage mob_data: ExecutingAction{Stage:3} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_029 +execute if data storage mob_data: ExecutingAction{Stage:2} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_030 +execute if data storage mob_data: ExecutingAction{Stage:1} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_031 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction new file mode 100644 index 000000000..e806e7d49 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction @@ -0,0 +1 @@ +execute if data storage mob_data: ExecutingAction{Tags:[RedDust]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction new file mode 100644 index 000000000..e8f0e2604 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction @@ -0,0 +1,3 @@ +###演出 +execute if data storage mob_data: ExecutingAction.ExtraSettings.Loop anchored eyes positioned ^ ^ ^ run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start +data modify storage mob_data: ExecutingAction.NextAction set value 2 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction new file mode 100644 index 000000000..e793891a3 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction @@ -0,0 +1,5 @@ +function makeup:skill/enemy/delay_action/casting/laser_pointer/red_dust/particle/red_dust + + +execute store result storage mob_data: ExecutingAction.Loop int 1 run data get storage mob_data: ExecutingAction.Loop 0.999999999 +execute unless data storage mob_data: ExecutingAction{Loop:0} positioned ^ ^ ^0.5 if block ~ ~ ~ #block:no_collision run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction new file mode 100644 index 000000000..78cecab9c --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction @@ -0,0 +1 @@ +data remove storage mob_data: ExecutingAction.Loop \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction new file mode 100644 index 000000000..0a66635e6 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction @@ -0,0 +1,3 @@ +data modify storage mob_data: ExecutingAction.Loop set from storage mob_data: ExecutingAction.ExtraSettings.Loop +function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop +function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction new file mode 100644 index 000000000..1decbbb51 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction @@ -0,0 +1,21 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_020 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction new file mode 100644 index 000000000..ca96887b0 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction @@ -0,0 +1,61 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_060 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction new file mode 100644 index 000000000..735c52407 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction @@ -0,0 +1,31 @@ +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_001 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_002 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_003 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_004 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_005 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_006 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_007 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_008 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_009 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_010 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_011 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_012 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_013 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_014 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_015 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_016 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_017 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_018 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_019 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_020 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_021 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_022 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_023 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_024 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_025 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_026 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_027 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_028 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_029 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_030 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/common.mcfunction b/data/ai/function/skill/delay_action/act/execute/common.mcfunction new file mode 100644 index 000000000..49f804ea5 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/common.mcfunction @@ -0,0 +1,4 @@ +###共通処理 +execute store result storage mob_data: ExecutingAction.Stage int 0.999999 run data get storage mob_data: ExecutingAction.Stage +data modify storage mob_data: ExecutingAction.Executed set value 1b +execute if data storage mob_data: ExecutingAction{Stage:0} run data modify storage mob_data: ExecutingAction.Delete set value 1b diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction new file mode 100644 index 000000000..7d0a3c08d --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction @@ -0,0 +1,12 @@ +#> skill:enemy/delay_action/act/execute/enemy/ +# +# 敵固有DelayAction用分岐 +# +# @within function skill:enemy/delay_action/append/ + +execute if data storage mob_data: ExecutingAction{Tags:["Common"]} run function skill:enemy/delay_action/act/execute/enemy/common/ +execute if data storage mob_data: ExecutingAction{Tags:["CrimsonEye"]} run function skill:enemy/delay_action/act/execute/enemy/crimson_eye/ +execute if data storage mob_data: ExecutingAction{Tags:["LunaticEye"]} run function skill:enemy/delay_action/act/execute/enemy/lunatic_eye/ +execute if data storage mob_data: ExecutingAction{Tags:["AuroraEye"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ +execute if data storage mob_data: ExecutingAction{Tags:["Ryomen"]} run function skill:enemy/delay_action/act/execute/enemy/ryomen/ +execute if data storage mob_data: ExecutingAction{Tags:["AbyssMage"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction new file mode 100644 index 000000000..a28e4c0e2 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction @@ -0,0 +1,4 @@ +#> skill:enemy/delay_action/act/execute/enemy/abyss_mage/ +# @within function skill:enemy/delay_action/act/execute/enemy/ + +execute if data storage mob_data: ExecutingAction{Tags:["Magic"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/abyss_magic \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction new file mode 100644 index 000000000..a108c9332 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction @@ -0,0 +1,29 @@ +#> skill:enemy/delay_action/act/execute/enemy/abyss_mage/abyss_magic +# @within function skill:enemy/delay_action/act/execute/enemy/abyss_mage/ + +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_16 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_17 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_18 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_19 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_20 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_21 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_22 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_23 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_24 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_25 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction new file mode 100644 index 000000000..fb2d3d91e --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/act/execute/enemy/aurora_eye/ +# @within function skill:enemy/delay_action/act/execute/enemy/ + +execute if data storage mob_data: ExecutingAction{Tags:["Zone"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/zone +execute if data storage mob_data: ExecutingAction{Tags:["Shard"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/shard \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction new file mode 100644 index 000000000..cb1202470 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction @@ -0,0 +1,44 @@ +#> skill:enemy/delay_action/act/execute/enemy/aurora_eye/shard +# @within function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ + +execute store result score _ _ run data get storage mob_data: ExecutingAction.Stage + +###詠唱演出 Stage0で終了なので最大数から開始 +execute if score _ _ matches 70 run tp @s ^ ^ ^-0.20 ~ ~ +execute if score _ _ matches 69 run tp @s ^ ^ ^-0.18 ~ ~ +execute if score _ _ matches 68 run tp @s ^ ^ ^-0.16 ~ ~ +execute if score _ _ matches 67 run tp @s ^ ^ ^-0.14 ~ ~ +execute if score _ _ matches 66 run tp @s ^ ^ ^-0.12 ~ ~ +execute if score _ _ matches 65 run tp @s ^ ^ ^-0.10 ~ ~ +execute if score _ _ matches 64 run tp @s ^ ^ ^-0.08 ~ ~ +execute if score _ _ matches 63 run tp @s ^ ^ ^-0.06 ~ ~ +execute if score _ _ matches 62 run tp @s ^ ^ ^-0.04 ~ ~ +execute if score _ _ matches 61 run tp @s ^ ^ ^-0.02 ~ ~ +execute if score _ _ matches 60 run tp @s ^ ^ ^0.0 ~ ~ +execute if score _ _ matches 59 run tp @s ^ ^ ^0.02 ~ ~ +execute if score _ _ matches 58 run tp @s ^ ^ ^0.04 ~ ~ +execute if score _ _ matches 57 run tp @s ^ ^ ^0.06 ~ ~ +execute if score _ _ matches 56 run tp @s ^ ^ ^0.08 ~ ~ +execute if score _ _ matches 55 run tp @s ^ ^ ^0.1 ~ ~ +execute if score _ _ matches 54 run tp @s ^ ^ ^0.12 ~ ~ +execute if score _ _ matches 53 run tp @s ^ ^ ^0.14 ~ ~ +execute if score _ _ matches 52 run tp @s ^ ^ ^0.16 ~ ~ +execute if score _ _ matches 51 run tp @s ^ ^ ^0.18 ~ ~ +execute if score _ _ matches 50 run tp @s ^ ^ ^0.2 ~ ~ +execute if score _ _ matches 49 run tp @s ^ ^ ^0.22 ~ ~ +execute if score _ _ matches 48 run tp @s ^ ^ ^0.24 ~ ~ +execute if score _ _ matches 47 run tp @s ^ ^ ^0.26 ~ ~ +execute if score _ _ matches 46 run tp @s ^ ^ ^0.28 ~ ~ +execute if score _ _ matches 45 run tp @s ^ ^ ^0.3 ~ ~ +execute if score _ _ matches 44 run tp @s ^ ^ ^0.33 ~ ~ +execute if score _ _ matches 43 run tp @s ^ ^ ^0.36 ~ ~ +execute if score _ _ matches 42 run tp @s ^ ^ ^0.39 ~ ~ +execute if score _ _ matches 41 run tp @s ^ ^ ^0.42 ~ ~ +execute if score _ _ matches 40 run tp @s ^ ^ ^0.45 ~ ~ +execute if score _ _ matches 39 run tp @s ^ ^ ^0.48 ~ ~ +execute if score _ _ matches 38 run tp @s ^ ^ ^0.51 ~ ~ +execute if score _ _ matches 37 run tp @s ^ ^ ^0.54 ~ ~ +execute if score _ _ matches 36 run tp @s ^ ^ ^0.57 ~ ~ +execute if score _ _ matches ..35 run tp @s ^ ^ ^0.6 ~ ~ + +playsound block.amethyst_cluster.break hostile @a[distance=..32] ~ ~ ~ 0.75 2 0 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction new file mode 100644 index 000000000..c007736b2 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction @@ -0,0 +1,19 @@ +#> skill:enemy/delay_action/act/execute/enemy/aurora_eye/zone +# @within function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ + +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_15 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction new file mode 100644 index 000000000..f4a2d0a77 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction @@ -0,0 +1,4 @@ +#> skill:enemy/delay_action/act/execute/enemy/common/ +# @within function skill:enemy/delay_action/act/execute/enemy/ + +execute if data storage mob_data: ExecutingAction{Tags:["Paralyze"]} run function skill:enemy/delay_action/act/execute/enemy/common/paralyze \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction new file mode 100644 index 000000000..c19408b7f --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction @@ -0,0 +1,19 @@ +#> skill:enemy/delay_action/act/execute/enemy/common/paralyze +# @within function skill:enemy/delay_action/act/execute/enemy/common/ + +# 演出 + particle electric_spark ~ ~1 ~ 0.25 0.5 0.25 0 3 force @a[distance=..32,tag=ShowParticles] + +# 乱数取得 + execute store result score _ Random run function calc:random + scoreboard players set _ _ 8 + scoreboard players operation _ Random %= _ _ +# 向きを適当に変える + execute if score _ Random matches 0 at @s run tp @s ~ ~ ~ ~3 ~3 + execute if score _ Random matches 1 at @s run tp @s ~ ~ ~ ~-3 ~-3 + execute if score _ Random matches 2 at @s run tp @s ~ ~ ~ ~3 ~-3 + execute if score _ Random matches 3 at @s run tp @s ~ ~ ~ ~-3 ~3 + execute if score _ Random matches 4 at @s run tp @s ~ ~ ~ ~ ~6 + execute if score _ Random matches 5 at @s run tp @s ~ ~ ~ ~ ~-6 + execute if score _ Random matches 6 at @s run tp @s ~ ~ ~ ~-6 ~ + execute if score _ Random matches 7 at @s run tp @s ~ ~ ~ ~6 ~ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction new file mode 100644 index 000000000..907736c80 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction @@ -0,0 +1,35 @@ +#> skill:enemy/delay_action/act/execute/enemy/crimson_eye/ +# @within function skill:enemy/delay_action/append/enemy/ + +###詠唱演出 Stage0で終了なので最大数から開始 +function calc:set/random_rotation +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_16 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_17 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_18 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_19 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_20 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_21 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_22 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_23 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_24 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_25 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_26 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_27 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_28 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_29 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_30 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction new file mode 100644 index 000000000..2aba262bb --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction @@ -0,0 +1,59 @@ +#> skill:enemy/delay_action/act/execute/enemy/lunatic_eye/ +# @within function skill:enemy/delay_action/act/execute/enemy/ + +###詠唱演出 Stage0で終了なので最大数から開始 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_16 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_17 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_18 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_19 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_20 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_21 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_22 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_23 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_24 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_25 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_26 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_27 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_28 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_29 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_30 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_31 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_32 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_33 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_34 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_35 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_36 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_37 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_38 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_39 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_40 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_41 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_42 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_43 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_44 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_45 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_46 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_47 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_48 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_49 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_50 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_51 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_52 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_53 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_54 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_55 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction new file mode 100644 index 000000000..b78212ba8 --- /dev/null +++ b/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction @@ -0,0 +1,8 @@ +#> skill:enemy/delay_action/act/execute/enemy/ryomen/ +# @within function skill:enemy/delay_action/act/execute/enemy/ + +# ステータス強化解除 + data modify storage mob_data: Call.Attack set value {Add:-40} + function skill:enemy/change_status/ + tag @s remove RyomenRage + diff --git a/data/ai/function/skill/delay_action/act/sort/.mcfunction b/data/ai/function/skill/delay_action/act/sort/.mcfunction new file mode 100644 index 000000000..2e9319d6d --- /dev/null +++ b/data/ai/function/skill/delay_action/act/sort/.mcfunction @@ -0,0 +1,6 @@ +data modify storage mob_data: SortingActionData append from storage mob_data: DelayAction[{Executed:1b}] +data remove storage mob_data: DelayAction[{Executed:1b}] + +function skill:enemy/delay_action/act/sort/loop + +data remove storage mob_data: DelayAction[{Executed:1b}].Executed \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/act/sort/loop.mcfunction b/data/ai/function/skill/delay_action/act/sort/loop.mcfunction new file mode 100644 index 000000000..5e84d30ab --- /dev/null +++ b/data/ai/function/skill/delay_action/act/sort/loop.mcfunction @@ -0,0 +1,7 @@ +###SortingActionDataの要素がなくなるまでループする +### "_ _" SortingActionData[-1]のNextAction +execute store result score _ _ run data get storage mob_data: SortingActionData[-1].NextAction +data modify storage mob_data: AddingAction set from storage mob_data: SortingActionData[-1] +function skill:enemy/delay_action/append/search +data remove storage mob_data: SortingActionData[-1] +execute if data storage mob_data: SortingActionData[-1] run function skill:enemy/delay_action/act/sort/loop \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/.mcfunction b/data/ai/function/skill/delay_action/append/.mcfunction new file mode 100644 index 000000000..64779080d --- /dev/null +++ b/data/ai/function/skill/delay_action/append/.mcfunction @@ -0,0 +1,49 @@ +#oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4] + +# 対応表 +# Casting → DelayAction +# AddingCast → AddingAction +# CastingTick → ActionTick +# NextCastingTick → NextActionTick +# SortingCastingData → SortingActionData +# ExecutingCast → ExecutingAction + + +data modify storage mob_data: DelayAction set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].DelayAction + + +### 追加用枠 + +execute if data storage mob_data: Call{Tags:["Casting"]} run function skill:enemy/delay_action/append/casting/ +execute if data storage mob_data: Call{Tags:["Affect"]} run function skill:enemy/delay_action/append/affect/ +execute if data storage mob_data: Call{Tags:["Enemy"]} run function skill:enemy/delay_action/append/enemy/ + +### + +data modify storage mob_data: AddingAction.Tags set from storage mob_data: Call.Tags +data modify storage mob_data: AddingAction.ExtraSettings set from storage mob_data: Call.ExtraSettings + +###次の詠唱Tick更新 +execute store result score _ _ run data get storage mob_data: AddingAction.NextAction +execute if score @s ActionTick matches -2147483647..2147483647 run scoreboard players operation _ _ += @s ActionTick +execute unless score @s NextActionTick matches -2147483647..2147483647 run scoreboard players operation @s NextActionTick = _ _ +execute if score @s NextActionTick matches -2147483647..2147483647 run scoreboard players operation @s NextActionTick < _ _ + + +###挿入する場所の探索 +function skill:enemy/delay_action/append/search + + + +###Ohmydatに保存 +data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].DelayAction +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].DelayAction set from storage mob_data: DelayAction + + + +###一時的に保存したデータの破棄 +data remove storage mob_data: DelayAction +data remove storage mob_data: AddingAction + +#initialize +scoreboard players add @s NativeFlag 100 diff --git a/data/ai/function/skill/delay_action/append/act.mcfunction b/data/ai/function/skill/delay_action/append/act.mcfunction new file mode 100644 index 000000000..b29c718a6 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/act.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: DelayAction append from storage mob_data: AddingAction +data modify storage mob_data: AddingAction.IsAdded set value true \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/affect/.mcfunction b/data/ai/function/skill/delay_action/append/affect/.mcfunction new file mode 100644 index 000000000..fccd26647 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/affect/.mcfunction @@ -0,0 +1,2 @@ +execute if data storage mob_data: Call{Tags:["HugeExplosion01"]} run function skill:enemy/delay_action/append/affect/huge_explosion_01/ +execute if data storage mob_data: Call{Tags:["HugeExplosion02"]} run function skill:enemy/delay_action/append/affect/huge_explosion_02/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction b/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction new file mode 100644 index 000000000..cb3dce6ec --- /dev/null +++ b/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction b/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction new file mode 100644 index 000000000..cb3dce6ec --- /dev/null +++ b/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/.mcfunction b/data/ai/function/skill/delay_action/append/casting/.mcfunction new file mode 100644 index 000000000..3f8eab46b --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/.mcfunction @@ -0,0 +1,15 @@ +execute if data storage mob_data: Call{Tags:["Cast"]} run function skill:enemy/delay_action/append/casting/cast/ +execute if data storage mob_data: Call{Tags:["LaserPointer"]} run function skill:enemy/delay_action/append/casting/laser_pointer/ +execute if data storage mob_data: Call{Tags:["Charge"]} run function skill:enemy/delay_action/append/casting/charge/ +execute if data storage mob_data: Call{Tags:["WaterBolt"]} run function skill:enemy/delay_action/append/casting/water_bolt/ +execute if data storage mob_data: Call{Tags:["SludgeGarbager"]} run function skill:enemy/delay_action/append/casting/sludge_garbager/ +execute if data storage mob_data: Call{Tags:["PillarOfWater"]} run function skill:enemy/delay_action/append/casting/pillar_of_water/ +execute if data storage mob_data: Call{Tags:["FinishingMove"]} run function skill:enemy/delay_action/append/casting/finishing_move/ +execute if data storage mob_data: Call{Tags:["CrossRing"]} run function skill:enemy/delay_action/append/casting/cross_ring/ +execute if data storage mob_data: Call{Tags:["Healing"]} run function skill:enemy/delay_action/append/casting/healing/ +execute if data storage mob_data: Call{Tags:["BubbleLauncher01"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_01/ +execute if data storage mob_data: Call{Tags:["BubbleLauncher02"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_02/ +execute if data storage mob_data: Call{Tags:["BubbleLauncher03"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_03/ +execute if data storage mob_data: Call{Tags:["DoomBomb"]} run function skill:enemy/delay_action/append/casting/doom_bomb/ +execute if data storage mob_data: Call{Tags:["DoomCast"]} run function skill:enemy/delay_action/append/casting/doom_cast/ +execute if data storage mob_data: Call{Tags:["CircleHearts"]} run function skill:enemy/delay_action/append/casting/circle_hearts/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction new file mode 100644 index 000000000..2908bb775 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction new file mode 100644 index 000000000..2908bb775 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction new file mode 100644 index 000000000..2908bb775 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction new file mode 100644 index 000000000..a13a43be3 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction @@ -0,0 +1 @@ +execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/cast/normal/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction new file mode 100644 index 000000000..c54125641 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: AddingAction set value {Stage:3,NextAction:5} +function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction b/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction new file mode 100644 index 000000000..c37808fb4 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction @@ -0,0 +1 @@ +execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/charge/normal/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction b/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction new file mode 100644 index 000000000..371f30b0c --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction @@ -0,0 +1 @@ +data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction b/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction new file mode 100644 index 000000000..8c013b9ed --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction new file mode 100644 index 000000000..e67ee73a8 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction @@ -0,0 +1,3 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:20,NextAction:1} +playsound minecraft:entity.zombie_villager.converted hostile @a[distance=..32] ~ ~ ~ 1.5 1.5 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction b/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction new file mode 100644 index 000000000..db39dbe57 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction b/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction new file mode 100644 index 000000000..a23fcfa12 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:15,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction b/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction new file mode 100644 index 000000000..cb3dce6ec --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction b/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction new file mode 100644 index 000000000..16e6f78dd --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:31,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction b/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction new file mode 100644 index 000000000..b1c30e74d --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction @@ -0,0 +1 @@ +execute if data storage mob_data: Call{Tags:["RedDust"]} run function skill:enemy/delay_action/append/casting/laser_pointer/red_dust/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction b/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction new file mode 100644 index 000000000..a5b913d08 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction @@ -0,0 +1 @@ +data modify storage mob_data: AddingAction set value {Stage:29,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction b/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction new file mode 100644 index 000000000..ee1d21616 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:20,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction b/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction new file mode 100644 index 000000000..cb3dce6ec --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction @@ -0,0 +1,2 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction b/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction new file mode 100644 index 000000000..3714e6e46 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction @@ -0,0 +1,4 @@ +# 登録 Stageがフレーム数、NextActionがtick表示間隔 +data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} +# 演出 +function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/.mcfunction new file mode 100644 index 000000000..841e2378d --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/.mcfunction @@ -0,0 +1,12 @@ +#> skill:enemy/delay_action/append/enemy/ +# +# 敵固有DelayAction用分岐 +# +# @within function skill:enemy/delay_action/append/ + +execute if data storage mob_data: Call{Tags:["Common"]} run function skill:enemy/delay_action/append/enemy/common/ +execute if data storage mob_data: Call{Tags:["CrimsonEye"]} run function skill:enemy/delay_action/append/enemy/crimson_eye/ +execute if data storage mob_data: Call{Tags:["LunaticEye"]} run function skill:enemy/delay_action/append/enemy/lunatic_eye/ +execute if data storage mob_data: Call{Tags:["AuroraEye"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/ +execute if data storage mob_data: Call{Tags:["Ryomen"]} run function skill:enemy/delay_action/append/enemy/ryomen/ +execute if data storage mob_data: Call{Tags:["AbyssMage"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/ \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction new file mode 100644 index 000000000..732f85d4c --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction @@ -0,0 +1,4 @@ +#> skill:enemy/delay_action/append/enemy/abyss_mage/ +# @within function skill:enemy/delay_action/act/execute/enemy/ + +execute if data storage mob_data: Call{Tags:["Magic"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/abyss_magic \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction new file mode 100644 index 000000000..d8edfdd85 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/abyss_mage/abyss_magic +# @within function skill:enemy/delay_action/append/enemy/abyss_mage/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction new file mode 100644 index 000000000..2bbdc71e8 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/aurora_eye/ +# @within function skill:enemy/delay_action/append/enemy/ + +execute if data storage mob_data: Call{Tags:["Zone"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/zone +execute if data storage mob_data: Call{Tags:["Shard"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/shard \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction new file mode 100644 index 000000000..4f1acbbb1 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/aurora_eye/shard +# @within function skill:enemy/delay_action/append/enemy/aurora_eye/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:70,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction new file mode 100644 index 000000000..11f0e0cca --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/aurora_eye/zone +# @within function skill:enemy/delay_action/append/enemy/aurora_eye/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:15,NextAction:2} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction new file mode 100644 index 000000000..9b6bc4aca --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction @@ -0,0 +1,4 @@ +#> skill:enemy/delay_action/append/enemy/common/ +# @within function skill:enemy/delay_action/append/enemy/ + +execute if data storage mob_data: Call{Tags:["Paralyze"]} run function skill:enemy/delay_action/append/enemy/common/paralyze \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction b/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction new file mode 100644 index 000000000..3c43d9ed4 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/common/paralyze +# @within function skill:enemy/delay_action/append/enemy/common/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:40,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction new file mode 100644 index 000000000..9671ac635 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/crimson_eye/ +# @within function skill:enemy/delay_action/append/enemy/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction new file mode 100644 index 000000000..aaf1ce97c --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction @@ -0,0 +1,5 @@ +#> skill:enemy/delay_action/append/enemy/lunatic_eye/ +# @within function skill:enemy/delay_action/append/enemy/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:51,NextAction:1} \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction new file mode 100644 index 000000000..19cd410ac --- /dev/null +++ b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction @@ -0,0 +1,14 @@ +#> skill:enemy/delay_action/append/enemy/ryomen/ +# @within function skill:enemy/delay_action/append/enemy/ + +# 登録 Stageがフレーム数、NextActionがtick表示間隔 + data modify storage mob_data: AddingAction set value {Stage:1,NextAction:400} +# ステータスを変化させて強化 + data modify storage mob_data: Call.Attack set value {Add:40} + function skill:enemy/change_status/ + tag @s add RyomenRage +# 演出 + particle dust 0.45 0 0 1 ~ ~1 ~ 0.25 0.5 0.25 1 50 force @a[distance=..32,tag=ShowParticles] + particle witch ~ ~ ~ 0.15 0 0.15 1 15 force @a[distance=..32,tag=ShowParticles] + playsound entity.evoker.prepare_attack hostile @a[distance=..32] ~ ~ ~ 0.5 2 0 + playsound entity.blaze.death hostile @a[distance=..32] ~ ~ ~ 0.5 0 0 \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/loop.mcfunction b/data/ai/function/skill/delay_action/append/loop.mcfunction new file mode 100644 index 000000000..f5afc9477 --- /dev/null +++ b/data/ai/function/skill/delay_action/append/loop.mcfunction @@ -0,0 +1,19 @@ +###先頭の要素のNextAction "@s _" +execute store result score @s _ run data get storage mob_data: DelayAction[0].NextAction + +###追加 +###DelayAction[0].NextActionが"_ _"より大きくてかつ、すでに実行済みでないならそこに追加 +execute if score @s _ > _ _ if data storage mob_data: AddingAction{IsAdded:false} run function skill:enemy/delay_action/append/act + + + +###一巡しても追加されてない場合は最後尾に追加 +execute if data storage mob_data: AddingAction{LoopCount:0} if data storage mob_data: AddingAction{IsAdded:false} run function skill:enemy/delay_action/append/act + +###Shift +#scoreboard players add @s Calc 1 +execute store result storage mob_data: AddingAction.LoopCount int 0.99999999 run data get storage mob_data: AddingAction.LoopCount 1 +execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/shift + +###Loop +execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/loop \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/search.mcfunction b/data/ai/function/skill/delay_action/append/search.mcfunction new file mode 100644 index 000000000..8ffedc48d --- /dev/null +++ b/data/ai/function/skill/delay_action/append/search.mcfunction @@ -0,0 +1,18 @@ +##ListSizeGet "_ Calc" +##Loop最大回数を設定 +#scoreboard players set _ Calc 0 +#execute store result score _ Calc run data get storage mob_data: DelayAction +execute store result storage mob_data: AddingAction.LoopCount int 1 run data get storage mob_data: DelayAction +###すでにリストに追加済みかどうか "00000000-0000-0000-0000-000000000000 _" +#scoreboard players set 00000000-0000-0000-0000-000000000000 _ 0 +data modify storage mob_data: AddingAction.IsAdded set value false + +execute if data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/act + +###LoopCountSet "@s Calc" +scoreboard players set @s Calc 1 +execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/loop + + + +data remove storage mob_data: AddingAction \ No newline at end of file diff --git a/data/ai/function/skill/delay_action/append/shift.mcfunction b/data/ai/function/skill/delay_action/append/shift.mcfunction new file mode 100644 index 000000000..148de28fb --- /dev/null +++ b/data/ai/function/skill/delay_action/append/shift.mcfunction @@ -0,0 +1,3 @@ +###リストずらし +data modify storage mob_data: DelayAction append from storage mob_data: DelayAction[0] +data remove storage mob_data: DelayAction[0] \ No newline at end of file diff --git a/data/ai/function/skill/function/.mcfunction b/data/ai/function/skill/function/.mcfunction new file mode 100644 index 000000000..1e8d14b48 --- /dev/null +++ b/data/ai/function/skill/function/.mcfunction @@ -0,0 +1,8 @@ +#Tagsをストレージに退避 +#呼び出すfunction内ではmob_data: Tagsを参照すること +data modify storage mob_data: Tags set from entity @s Tags +data modify entity @s Tags set from storage mob_data: Call.Tags +#function呼び出し +function settings:enemy/ +#Tagsを復元 +data modify entity @s Tags set from storage mob_data: Tags diff --git a/data/ai/function/skill/function/loot_add.mcfunction b/data/ai/function/skill/function/loot_add.mcfunction new file mode 100644 index 000000000..a1d0ab123 --- /dev/null +++ b/data/ai/function/skill/function/loot_add.mcfunction @@ -0,0 +1,13 @@ +# 対象のMobにDeathLootTableを追加する。 + +function #oh_my_dat:please +data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".LootTable append from storage mob_data: LootTable +tag @s[tag=!HasLootTable] add HasLootTable + +#> シート上に追加するfunctionのテンプレート +# +# data modify storage mob_data: LootTable set value {Item:{},Chance:1.0d,Count:1} +# execute as @e[<変更対象>,tag=!<重複処理させないようにするタグ>] run function skill:enemy/function/loot_add +# tag @e[<変更対象>] add <重複処理させないようにするタグ> +# function #oh_my_dat:please +# diff --git a/data/ai/function/skill/heal/.mcfunction b/data/ai/function/skill/heal/.mcfunction new file mode 100644 index 000000000..a9f987066 --- /dev/null +++ b/data/ai/function/skill/heal/.mcfunction @@ -0,0 +1,30 @@ +###Heal +### # _ 回復最大範囲 (1mごと、最大32m,デフォルトで8m,100倍で取得) +### _ Calc ヒール量(魔法攻撃力 * 倍率) +### @s _ 倍率(10000倍で取得,デフォルトで1.0倍) +### @s Calc 定数(10000) +scoreboard players set # _ 800 +scoreboard players set _ Calc 0 +scoreboard players set @s _ 10000 +scoreboard players set @s Calc 10000 + +###ステータス取得 +scoreboard players operation _ Calc = @s MagicAttack +execute if data storage mob_data: Call.Multiplier store result score @s _ run data get storage mob_data: Call.Multiplier 10000 +execute if data storage mob_data: Call.Range store result score # _ run data get storage mob_data: Call.Range 100 + +###範囲調整 +execute if score # _ matches 3201.. run scoreboard players set # _ 3200 +execute if score # _ matches ..-1 run scoreboard players set # _ 0 + +###ヒール量計算 +scoreboard players operation _ Calc *= @s _ +scoreboard players operation _ Calc /= @s Calc + + +###対象探索 +scoreboard players set 00000000-0000-0000-0000-000000000000 _ 0 +execute as @e[tag=Enemy,distance=..32] if score @s HP < @s HPMax run function skill:enemy/heal/search + +###演出 +execute if score 00000000-0000-0000-0000-000000000000 _ matches 1 run function makeup:skill/enemy/heal/ diff --git a/data/ai/function/skill/heal/act.mcfunction b/data/ai/function/skill/heal/act.mcfunction new file mode 100644 index 000000000..03e77739a --- /dev/null +++ b/data/ai/function/skill/heal/act.mcfunction @@ -0,0 +1,14 @@ +###回復処理 +scoreboard players operation @s HP += _ Calc +scoreboard players operation @s HP < @s HPMax + +#回復量表示 +scoreboard players set _ _ -1 +scoreboard players operation 00000000-0000-0000-0000-000000000000 StoredDamage = _ Calc +scoreboard players operation 00000000-0000-0000-0000-000000000000 StoredDamage *= _ _ +execute anchored eyes positioned ^ ^ ^ as 0-0-0-0-0 run function enemy:show_damage/show +###演出 +execute at @s run function makeup:skill/enemy/heal/get_heal + +##スキル成功フラグ +scoreboard players set 00000000-0000-0000-0000-000000000000 _ 1 diff --git a/data/ai/function/skill/heal/search.mcfunction b/data/ai/function/skill/heal/search.mcfunction new file mode 100644 index 000000000..05d6416f1 --- /dev/null +++ b/data/ai/function/skill/heal/search.mcfunction @@ -0,0 +1,3 @@ +###対象探索 +function calc:geometry/distance/ +execute if score _ Ret <= # _ run function skill:enemy/heal/act \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/.mcfunction b/data/ai/function/skill/icicle_magic/.mcfunction new file mode 100644 index 000000000..1e6ce1f9e --- /dev/null +++ b/data/ai/function/skill/icicle_magic/.mcfunction @@ -0,0 +1,2 @@ +summon area_effect_cloud ~ ~ ~ {Tags:["IcicleSummoner"],Duration:4,Radius:0f,Particle:"minecraft:block minecraft:air"} +schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t replace \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle/.mcfunction new file mode 100644 index 000000000..6937a23df --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle/.mcfunction @@ -0,0 +1,4 @@ +execute positioned as @s run teleport @s ~ ~-1 ~ +###ここらへんにダメージ判定 +execute unless block ~ ~ ~ #block:no_collision run function skill:enemy/icicle_magic/icicle/fall +function makeup:skill/enemy/icicle_magic/icicle \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction b/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction new file mode 100644 index 000000000..169fe0dd3 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction @@ -0,0 +1,2 @@ +kill @s +function makeup:skill/enemy/icicle_magic/icicle_fall \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction new file mode 100644 index 000000000..a09665de5 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction @@ -0,0 +1,5 @@ +###ランダムな方向をむかせる処理 + +###氷柱設置場所探索 +scoreboard players set $LoopCount _ 0 +function skill:enemy/icicle_magic/icicle_summoner/find_place/start \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction new file mode 100644 index 000000000..84d9af8d8 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction @@ -0,0 +1,2 @@ +scoreboard players set $LoopCount _ 0 +function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction new file mode 100644 index 000000000..37489ec1f --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction @@ -0,0 +1,8 @@ +###設置場所探索 + + + +execute unless block ^ ^ ^0.5 #block:no_collision run scoreboard players set $LoopCount _ 17 +scoreboard players add $LoopCount _ 1 +execute if score $LoopCount _ matches ..16 positioned ^ ^ ^0.5 run function skill:enemy/icicle_magic/icicle_summoner/find_place/start +execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place/end \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction new file mode 100644 index 000000000..9eaffac73 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction @@ -0,0 +1 @@ +scoreboard players set $LoopCount _ 0 \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction new file mode 100644 index 000000000..35b36ae29 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction @@ -0,0 +1,5 @@ +###設置場所上方向探索 +execute unless block ~ ~0.5 ~ #block:no_collision run scoreboard players set $LoopCount _ 17 +scoreboard players add $LoopCount _ 1 +execute if score $LoopCount _ matches ..16 positioned ~ ~0.5 ~ run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start +execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/end \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction new file mode 100644 index 000000000..bc4475d90 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction @@ -0,0 +1,5 @@ +execute positioned ~0.4 ~0.7 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act +execute positioned ~0.4 ~0.2 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act +execute positioned ~0.4 ~-0.3 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act + +schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction new file mode 100644 index 000000000..59540838f --- /dev/null +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction @@ -0,0 +1,2 @@ +###氷柱本体 +summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",Count:1b},{}]} \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction b/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction new file mode 100644 index 000000000..3888c9ef9 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction @@ -0,0 +1,2 @@ +execute as @e[tag=Icicle] at @s positioned ~-0.4 ~0.7 ~0.075 run function skill:enemy/icicle_magic/icicle/ +execute if entity @e[tag=Icicle,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace \ No newline at end of file diff --git a/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction b/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction new file mode 100644 index 000000000..5e1408a59 --- /dev/null +++ b/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction @@ -0,0 +1,2 @@ +execute as @e[tag=IcicleSummoner] at @s run function skill:enemy/icicle_magic/icicle_summoner/ +execute if entity @e[tag=IcicleSummoner,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction new file mode 100644 index 000000000..fa7e3d6d8 --- /dev/null +++ b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/blue_laser/damage +#演出 +function makeup:skill/enemy/laser/loop/blue_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopblue_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/blue_laser/ \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction new file mode 100644 index 000000000..e61c91cfe --- /dev/null +++ b/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/blue_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction new file mode 100644 index 000000000..e40746ba2 --- /dev/null +++ b/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/blue_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction new file mode 100644 index 000000000..cdd53707f --- /dev/null +++ b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/frozenlaser/damage + +#演出 +function makeup:skill/enemy/laser/loop/frozenlazer/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/frozenlaser/ diff --git a/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction new file mode 100644 index 000000000..ef8dfa2de --- /dev/null +++ b/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction @@ -0,0 +1,11 @@ +#ループを0に。 +data modify storage mob_data: Call.Loop set value 0 + +#ダメージ +#凍結 +effect give @a[distance=..2.5] invisibility 5 4 +#ウィザー +effect give @a[distance=..2.5] wither 10 1 + +#演出 +function makeup:skill/enemy/laser/loop/frozenlazer/ice_effect \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/green_laser/.mcfunction b/data/ai/function/skill/laser/loop/green_laser/.mcfunction new file mode 100644 index 000000000..411e8d2d7 --- /dev/null +++ b/data/ai/function/skill/laser/loop/green_laser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/green_laser/damage +#演出 +function makeup:skill/enemy/laser/loop/green_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopgreen_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/green_laser/ \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction new file mode 100644 index 000000000..f9415a72b --- /dev/null +++ b/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/green_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/green_laser/end.mcfunction b/data/ai/function/skill/laser/loop/green_laser/end.mcfunction new file mode 100644 index 000000000..bb801de27 --- /dev/null +++ b/data/ai/function/skill/laser/loop/green_laser/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/green_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction new file mode 100644 index 000000000..2679a32b9 --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction @@ -0,0 +1,8 @@ +#分岐処理 +execute if data storage mob_data: Call{Width:1} run function skill:enemy/laser/loop/kame_hame_ha/1 +execute if data storage mob_data: Call{Width:2} run function skill:enemy/laser/loop/kame_hame_ha/2 +execute if data storage mob_data: Call{Width:3} run function skill:enemy/laser/loop/kame_hame_ha/3 +execute if data storage mob_data: Call{Width:4} run function skill:enemy/laser/loop/kame_hame_ha/4 +execute if data storage mob_data: Call{Width:5} run function skill:enemy/laser/loop/kame_hame_ha/5 +execute if data storage mob_data: Call{Width:6} run function skill:enemy/laser/loop/kame_hame_ha/6 +execute if data storage mob_data: Call{Width:7} run function skill:enemy/laser/loop/kame_hame_ha/7 \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction new file mode 100644 index 000000000..19cbd19f4 --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/1 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction new file mode 100644 index 000000000..d514d58ef --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-1 ~-1 ~-1 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/2 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction new file mode 100644 index 000000000..06da20c5a --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-1.5 ~-1.5 ~-1.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/3 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction new file mode 100644 index 000000000..3c0b88ac5 --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-2 ~-2 ~-2 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/4 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction new file mode 100644 index 000000000..5f8efab2c --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-2.5 ~-2.5 ~-2.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/5 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction new file mode 100644 index 000000000..406769919 --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-3 ~-3 ~-3 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/6 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction new file mode 100644 index 000000000..29b1b6342 --- /dev/null +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-3.5 ~-3.5 ~-3.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/kame_hame_ha/7 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction new file mode 100644 index 000000000..1795ce175 --- /dev/null +++ b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction @@ -0,0 +1,10 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run effect give @s invisibility 10 5 true +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/lightning_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/lightning_laser/ diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction new file mode 100644 index 000000000..023c875d8 --- /dev/null +++ b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction @@ -0,0 +1,10 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/piglin_snipe/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 unless block ^ ^ ^ #block:no_collision run data modify storage mob_data: Call.Loop set value 0 +#演出 +function makeup:skill/enemy/laser/loop/piglin_snipe/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +#execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loop/piglin_snipe/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/piglin_snipe/ diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction new file mode 100644 index 000000000..23c697fd8 --- /dev/null +++ b/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/piglin_snipe/firework \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction new file mode 100644 index 000000000..09633d81a --- /dev/null +++ b/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/piglin_snipe/firework \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/red_laser/.mcfunction b/data/ai/function/skill/laser/loop/red_laser/.mcfunction new file mode 100644 index 000000000..f2bd77614 --- /dev/null +++ b/data/ai/function/skill/laser/loop/red_laser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/red_laser/damage +#演出 +function makeup:skill/enemy/laser/loop/red_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loop/red_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/red_laser/ diff --git a/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction new file mode 100644 index 000000000..4a9e4cf5e --- /dev/null +++ b/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/red_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/red_laser/end.mcfunction b/data/ai/function/skill/laser/loop/red_laser/end.mcfunction new file mode 100644 index 000000000..fef973193 --- /dev/null +++ b/data/ai/function/skill/laser/loop/red_laser/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/red_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/security_laser/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/.mcfunction new file mode 100644 index 000000000..a9f825b0e --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/.mcfunction @@ -0,0 +1,3 @@ +execute if data storage mob_data: Call{Type:"Single"} run function skill:enemy/laser/loop/security_laser/single/ +execute if data storage mob_data: Call{Type:"Dual"} run function skill:enemy/laser/loop/security_laser/dual/ +#execute if data storage mob_data: Call{Type:"Triple"} \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction new file mode 100644 index 000000000..147ef960a --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction @@ -0,0 +1,10 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage + +#演出 +function makeup:skill/enemy/laser/loop/security_laser/dual/ +execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/security_laser/dual/spiral1 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/dual/1 diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction new file mode 100644 index 000000000..7898b8556 --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction @@ -0,0 +1,10 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage + +#演出 +function makeup:skill/enemy/laser/loop/security_laser/dual/ +execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/security_laser/dual/spiral2 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/dual/2 diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction new file mode 100644 index 000000000..86464ac42 --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction @@ -0,0 +1,10 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage + +#演出 +function makeup:skill/enemy/laser/loop/security_laser/dual/ +execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/security_laser/dual/spiral3 + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/dual/ diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction new file mode 100644 index 000000000..85f2bc887 --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction @@ -0,0 +1,5 @@ +data modify storage score_damage: Argument.DeathCause set value '[{"translate":"%1$sは%2$sによって気化した。","with":[{"selector":"@s"},{"nbt":"MobName","storage":"mob_data:","interpret":true}]}]' +execute unless data storage score_damage: Argument{Damage:0} run function score_damage:api/attack +function skill:enemy/laser/main/call_on_attack +execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit +scoreboard players set @s ProjectileTime -5 \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction new file mode 100644 index 000000000..027c44ab6 --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/single/damage + +#演出 +function makeup:skill/enemy/laser/loop/security_laser/single/ + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/single/ diff --git a/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction new file mode 100644 index 000000000..f48de51cd --- /dev/null +++ b/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction @@ -0,0 +1,5 @@ +data modify storage score_damage: Argument.DeathCause set value '[{"translate":"%1$sは%2$sによって蒸発させられた。","with":[{"selector":"@s"},{"nbt":"MobName","storage":"mob_data:","interpret":true}]}]' +execute unless data storage score_damage: Argument{Damage:0} run function score_damage:api/attack +function skill:enemy/laser/main/call_on_attack +execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit +scoreboard players set @s ProjectileTime -5 \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/test.mcfunction b/data/ai/function/skill/laser/loop/test.mcfunction new file mode 100644 index 000000000..7dc98a421 --- /dev/null +++ b/data/ai/function/skill/laser/loop/test.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage + +#演出 +function makeup:skill/enemy/laser/loop/test + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/test diff --git a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction new file mode 100644 index 000000000..318c29801 --- /dev/null +++ b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/violet_laser/damage +#演出 +function makeup:skill/enemy/laser/loop/violet_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopviolet_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/violet_laser/ \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction new file mode 100644 index 000000000..62be663f3 --- /dev/null +++ b/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/violet_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction new file mode 100644 index 000000000..ac0e87517 --- /dev/null +++ b/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/violet_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/white_laser/.mcfunction b/data/ai/function/skill/laser/loop/white_laser/.mcfunction new file mode 100644 index 000000000..21d78e09a --- /dev/null +++ b/data/ai/function/skill/laser/loop/white_laser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/white_laser/damage +#演出 +function makeup:skill/enemy/laser/loop/white_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopwhite_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/white_laser/ \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction new file mode 100644 index 000000000..b1458483c --- /dev/null +++ b/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/white_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/white_laser/end.mcfunction b/data/ai/function/skill/laser/loop/white_laser/end.mcfunction new file mode 100644 index 000000000..d071e009c --- /dev/null +++ b/data/ai/function/skill/laser/loop/white_laser/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/white_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction new file mode 100644 index 000000000..29cc743c8 --- /dev/null +++ b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction @@ -0,0 +1,9 @@ +#ダメージ処理 +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/yellow_laser/damage +#演出 +function makeup:skill/enemy/laser/loop/yellow_laser/trail + +#ループ処理 +execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopyellow_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/yellow_laser/ \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction new file mode 100644 index 000000000..b72702ef5 --- /dev/null +++ b/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction @@ -0,0 +1,2 @@ +data modify storage mob_data: Call.Loop set value 0 +function makeup:skill/enemy/laser/loop/yellow_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction new file mode 100644 index 000000000..95b4780ec --- /dev/null +++ b/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction @@ -0,0 +1 @@ +function makeup:skill/enemy/laser/loop/yellow_laser/spark \ No newline at end of file diff --git a/data/ai/function/skill/laser/main/call_on_attack.mcfunction b/data/ai/function/skill/laser/main/call_on_attack.mcfunction new file mode 100644 index 000000000..e6c06e48c --- /dev/null +++ b/data/ai/function/skill/laser/main/call_on_attack.mcfunction @@ -0,0 +1,4 @@ +execute if data storage mob_data: Call{Tags:[CallOnAttack]} store result score _ Calc run data get storage mob_data: Call.UUID[0] +execute if data storage mob_data: Call{Tags:[CallOnAttack]} as @e[tag=CallOnAttack,distance=..64] run function enemy:ai/call/trigger/attack/projectile_source +execute if data storage mob_data: Call{Tags:[CallOnAttackProjectile]} store result score _ Calc run data get storage mob_data: Call.Owner[0] +execute if data storage mob_data: Call{Tags:[CallOnAttackProjectile]} as @e[tag=CallOnAttack,distance=..64] run function enemy:ai/call/trigger/attack/projectile_source \ No newline at end of file diff --git a/data/ai/function/skill/laser/main/damage.mcfunction b/data/ai/function/skill/laser/main/damage.mcfunction new file mode 100644 index 000000000..e58885fe0 --- /dev/null +++ b/data/ai/function/skill/laser/main/damage.mcfunction @@ -0,0 +1,4 @@ +execute unless data storage score_damage: Argument{Damage:0} if entity @s[nbt=!{Health:0.0f}] run function score_damage:api/attack +function skill:enemy/laser/main/call_on_attack +execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit +scoreboard players set @s ProjectileTime -10 diff --git a/data/ai/function/skill/laser/main/fork.mcfunction b/data/ai/function/skill/laser/main/fork.mcfunction new file mode 100644 index 000000000..fbc9cff98 --- /dev/null +++ b/data/ai/function/skill/laser/main/fork.mcfunction @@ -0,0 +1,12 @@ +execute if data storage mob_data: Call{Laser:"Test"} run function skill:enemy/laser/loop/test +execute if data storage mob_data: Call{Laser:"PiglinSnipe"} run function skill:enemy/laser/loop/piglin_snipe/ +execute if data storage mob_data: Call{Laser:"FrozenLaser"} run function skill:enemy/laser/loop/frozenlaser/ +execute if data storage mob_data: Call{Laser:"KameHameHa"} run function skill:enemy/laser/loop/kame_hame_ha/ +execute if data storage mob_data: Call{Laser:"SecurityLaser"} run function skill:enemy/laser/loop/security_laser/ +execute if data storage mob_data: Call{Laser:"LightningLaser"} run function skill:enemy/laser/loop/lightning_laser/ +execute if data storage mob_data: Call{Laser:"RedLaser"} run function skill:enemy/laser/loop/red_laser/ +execute if data storage mob_data: Call{Laser:"BlueLaser"} run function skill:enemy/laser/loop/blue_laser/ +execute if data storage mob_data: Call{Laser:"GreenLaser"} run function skill:enemy/laser/loop/green_laser/ +execute if data storage mob_data: Call{Laser:"YellowLaser"} run function skill:enemy/laser/loop/yellow_laser/ +execute if data storage mob_data: Call{Laser:"VioletLaser"} run function skill:enemy/laser/loop/violet_laser/ +execute if data storage mob_data: Call{Laser:"WhiteLaser"} run function skill:enemy/laser/loop/white_laser/ diff --git a/data/ai/function/skill/laser/main/init.mcfunction b/data/ai/function/skill/laser/main/init.mcfunction new file mode 100644 index 000000000..da259d4e9 --- /dev/null +++ b/data/ai/function/skill/laser/main/init.mcfunction @@ -0,0 +1,15 @@ +#ダメージ設定 +data modify storage score_damage: Argument set value {DamageType:[Global,Projectile]} +data modify storage score_damage: Argument merge from storage mob_data: Call.Argument +execute unless data storage score_damage: Argument.Damage store result storage score_damage: Argument.Damage int 1 run scoreboard players get @s Attack + +#モブ名取得 +data modify storage mob_data: MobName set from entity @s CustomName + +#CallOnAttack +data modify storage mob_data: Call.UUID set from entity @s UUID +data modify storage mob_data: Call.Owner set from entity @s Owner +data modify storage mob_data: Call.Tags set from entity @s Tags + +#ループ実行 +execute anchored eyes run function skill:enemy/laser/main/fork diff --git a/data/ai/function/skill/merge_nbt.mcfunction b/data/ai/function/skill/merge_nbt.mcfunction new file mode 100644 index 000000000..f79725e41 --- /dev/null +++ b/data/ai/function/skill/merge_nbt.mcfunction @@ -0,0 +1,2 @@ +#NBTをマージ +data modify entity @s {} merge from storage mob_data: Call.NBT diff --git a/data/ai/function/skill/message.mcfunction b/data/ai/function/skill/message.mcfunction new file mode 100644 index 000000000..d33a8d2fa --- /dev/null +++ b/data/ai/function/skill/message.mcfunction @@ -0,0 +1 @@ +tellraw @a[distance=..32] {"storage":"mob_data:","nbt":"Call.Message","interpret":true} diff --git a/data/ai/function/skill/parabolic_motion/.mcfunction b/data/ai/function/skill/parabolic_motion/.mcfunction new file mode 100644 index 000000000..5e04c5d48 --- /dev/null +++ b/data/ai/function/skill/parabolic_motion/.mcfunction @@ -0,0 +1,26 @@ +#> skill:enemy/parabolic_motion/ +# +# 実行者のMotionを操作して放物運動をさせます +# +# ※実行者を実行座標に向けて放物運動させます +# 実行座標に着弾するまでの時間(Tick)と重力加速度を設定することができます +# +# ※いずれかのMotionが10以上の場合Minecraftの仕様上動作しません +# +# @input +# as entity +# position +# storage mob_data: +# Argument.MotionTick: int +# Argument.MotionGravity: double +# @api + +# ストレージ検証 + execute unless data storage mob_data: Call.MotionTick run tellraw @a [{"text":"ParabolicMotionの着弾時間は必ず設定する必要があります"}] + execute unless data storage mob_data: Call.MotionGravity run tellraw @a [{"text":"ParabolicMotionの重力加速度は必ず設定する必要があります"}] + +# 本処理に移行 + execute if data storage mob_data: Call.MotionTick if data storage mob_data: Call.MotionGravity run function skill:enemy/parabolic_motion/core/ + +# リセット + data remove storage mob_data: Call \ No newline at end of file diff --git a/data/ai/function/skill/parabolic_motion/core/.mcfunction b/data/ai/function/skill/parabolic_motion/core/.mcfunction new file mode 100644 index 000000000..c915afb14 --- /dev/null +++ b/data/ai/function/skill/parabolic_motion/core/.mcfunction @@ -0,0 +1,21 @@ +#> skill:enemy/parabolic_motion/core/ +# +# ParabolicMotionに関するメイン処理を行います +# +# @within function skill:enemy/parabolic_motion/ + +# 0-0-0-0-0を原点に召喚する +# 0-0-0-0-1を実行位置に召喚する + execute as 0-0-0-0-0 run function calc:geometry/return_marker + function calc:geometry/tp_00001 + +# 数値をスコアに代入する + execute store result score # _ run data get storage mob_data: Call.MotionTick + execute store result score # Calc run data get storage mob_data: Call.MotionGravity 5000 + +# Motionを計算する + function skill:enemy/parabolic_motion/core/calc + +# リセット + execute as 0-0-0-0-0 run function calc:geometry/return_marker + execute as 0-0-0-0-1 run function calc:geometry/return_marker diff --git a/data/ai/function/skill/parabolic_motion/core/calc.mcfunction b/data/ai/function/skill/parabolic_motion/core/calc.mcfunction new file mode 100644 index 000000000..707ea8ba5 --- /dev/null +++ b/data/ai/function/skill/parabolic_motion/core/calc.mcfunction @@ -0,0 +1,43 @@ +#> skill:enemy/parabolic_motion/core/calc +# +# ParabolicMotionに関する計算処理を行います +# +# @within function skill:enemy/parabolic_motion/core/ + +# @s と 0-0-0-0-1 のX座標差を10倍で保存 + execute store result score _ _ run data get entity @s Pos[0] 10000 + execute store result score _ Calc run data get entity 0-0-0-0-1 Pos[0] 10000 + scoreboard players operation _ Calc -= _ _ + scoreboard players operation _ Calc /= # _ + execute store result entity 0-0-0-0-0 Pos[0] double 0.0001 run scoreboard players get _ Calc + +# @s と 0-0-0-0-1 のZ座標差を10倍で保存 + execute store result score _ _ run data get entity @s Pos[2] 10000 + execute store result score _ Calc run data get entity 0-0-0-0-1 Pos[2] 10000 + scoreboard players operation _ Calc -= _ _ + scoreboard players operation _ Calc /= # _ + execute store result entity 0-0-0-0-0 Pos[2] double 0.0001 run scoreboard players get _ Calc + +# @s と 0-0-0-0-1 のY座標差を10倍で保存 +# 重力加速度によるY_Motionを調整を行う + execute store result score _ _ run data get entity @s Pos[1] 10000 + execute store result score _ Calc run data get entity 0-0-0-0-1 Pos[1] 10000 + scoreboard players operation _ Calc -= _ _ + scoreboard players operation _ Calc /= # _ + scoreboard players operation # Calc *= # _ + scoreboard players operation _ Calc += # Calc + scoreboard players set _ _ 100000 + scoreboard players operation _ Calc < _ _ + scoreboard players set _ _ -100000 + scoreboard players operation _ Calc > _ _ + execute store result entity 0-0-0-0-0 Pos[1] double 0.0001 run scoreboard players get _ Calc + + #向きを保存 + execute positioned 0.0 0.0 0.0 facing entity 0-0-0-0-0 feet positioned as @s run tp @s ~ ~ ~ ~ ~ + + #SmartMotionの引数を設定、呼び出し + data modify storage mob_data: Call merge value {Start:1b,TP:1b} + execute in area:control_area positioned 0.0 0.0 0.0 as 0-0-0-0-0 run function #util:distance + execute store result storage mob_data: Call.Speed.Set int 1 run data get storage util: out 100 + execute store result storage mob_data: Call.Gravity.Set int 1 run data get storage mob_data: Call.MotionGravity 10000 + execute at @s run function skill:enemy/smart_motion/ diff --git a/data/ai/function/skill/reraise/.mcfunction b/data/ai/function/skill/reraise/.mcfunction new file mode 100644 index 000000000..a3d53c320 --- /dev/null +++ b/data/ai/function/skill/reraise/.mcfunction @@ -0,0 +1,2 @@ + +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData run function skill:enemy/reraise/success \ No newline at end of file diff --git a/data/ai/function/skill/reraise/death_cancel.mcfunction b/data/ai/function/skill/reraise/death_cancel.mcfunction new file mode 100644 index 000000000..3fe03f8c5 --- /dev/null +++ b/data/ai/function/skill/reraise/death_cancel.mcfunction @@ -0,0 +1,15 @@ +############################## +### Reraise処理 +############################## +tag @s remove Garbage +function skill:enemy/reraise/health_recovery + +### RaiseCount 減少 +function #oh_my_dat:please +execute store result score @s _ run data get storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count 0.99999999 +execute unless score @s _ matches 0 store result storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count int 1 run scoreboard players get @s _ +execute if score @s _ matches 0 run function skill:enemy/reraise/remove_raise + +### 演出 ### +function makeup:skill/enemy/reraise/death_cancel + diff --git a/data/ai/function/skill/reraise/health_recovery.mcfunction b/data/ai/function/skill/reraise/health_recovery.mcfunction new file mode 100644 index 000000000..d08760023 --- /dev/null +++ b/data/ai/function/skill/reraise/health_recovery.mcfunction @@ -0,0 +1,10 @@ + +# 倍率確認 +scoreboard players set _ _ 100 +scoreboard players set _ Calc 100 +execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.HealthRecovery store result score _ _ run data get storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.HealthRecovery + + +scoreboard players operation @s HP = @s HPMax +scoreboard players operation @s HP *= _ _ +scoreboard players operation @s HP /= _ Calc diff --git a/data/ai/function/skill/reraise/remove_raise.mcfunction b/data/ai/function/skill/reraise/remove_raise.mcfunction new file mode 100644 index 000000000..f9423ae52 --- /dev/null +++ b/data/ai/function/skill/reraise/remove_raise.mcfunction @@ -0,0 +1,5 @@ +############################## +### Reraise削除処理 +############################## +tag @s remove HasRaise +data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData \ No newline at end of file diff --git a/data/ai/function/skill/reraise/success.mcfunction b/data/ai/function/skill/reraise/success.mcfunction new file mode 100644 index 000000000..44d0a5a1a --- /dev/null +++ b/data/ai/function/skill/reraise/success.mcfunction @@ -0,0 +1,4 @@ +execute if data storage mob_data: Call.RaiseCount run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count set from storage mob_data: Call.RaiseCount +execute if data storage mob_data: Call.HealthRecovery run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.HealthRecovery set from storage mob_data: Call.HealthRecovery +execute unless data storage mob_data: Call.RaiseCount run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count set value 1 +tag @s add HasRaise \ No newline at end of file diff --git a/data/ai/function/skill/rotate.mcfunction b/data/ai/function/skill/rotate.mcfunction new file mode 100644 index 000000000..f3b405a51 --- /dev/null +++ b/data/ai/function/skill/rotate.mcfunction @@ -0,0 +1,12 @@ + +#Horizontal +execute store result score _ _ run data get storage mob_data: Call.Horizontal 100 +execute store result score _ Calc run data get entity @s Rotation[0] 100 +scoreboard players operation _ Calc += _ _ +execute if data storage mob_data: Call.horizontal store result entity @s Rotation[0] float 0.01 run scoreboard players get _ Calc + +#Vertical +execute store result score _ _ run data get storage mob_data: Call.Vertical 100 +execute store result score _ Calc run data get entity @s Rotation[1] 100 +scoreboard players operation _ Calc += _ _ +execute if data storage mob_data: Call.Vertical store result entity @s Rotation[1] float 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/smart_motion/.mcfunction b/data/ai/function/skill/smart_motion/.mcfunction new file mode 100644 index 000000000..0318c062a --- /dev/null +++ b/data/ai/function/skill/smart_motion/.mcfunction @@ -0,0 +1,29 @@ +#SmartMotion + +#TP +execute if data storage mob_data: Call{TP:1b} unless data storage mob_data: Call{KeepRotation:1b} run function smart_motion:core/tp +execute if data storage mob_data: Call{TP:1b,KeepRotation:1b} run function smart_motion:core/tp_keep_rotation + +#Rotation +execute if data storage mob_data: Call.Rotation run function skill:enemy/smart_motion/rotation + +#Speed +execute if data storage mob_data: Call.Speed run function skill:enemy/smart_motion/speed + +#Gravity +execute if data storage mob_data: Call.Gravity run function skill:enemy/smart_motion/gravity + +#Start +execute if data storage mob_data: Call{Start:1b} run scoreboard players add @s[tag=!SmartMotion] NativeFlag 1 +execute if data storage mob_data: Call{Start:1b} run tag @s add SmartMotion + +#Stop +execute if data storage mob_data: Call{Stop:1b} run scoreboard players remove @s[tag=SmartMotion] NativeFlag 1 +execute if data storage mob_data: Call{Stop:1b} run tag @s remove SmartMotion + +#OnBlock +execute if data storage mob_data: Call.OnBlock run function skill:enemy/smart_motion/on_block + +#E (反発係数) +execute if data storage mob_data: Call.E store result score @s sm.E run data get storage mob_data: Call.E +execute unless score @s sm.E matches -2147483648..2147483647 run scoreboard players set @s sm.E 100 diff --git a/data/ai/function/skill/smart_motion/gravity.mcfunction b/data/ai/function/skill/smart_motion/gravity.mcfunction new file mode 100644 index 000000000..1b3b30bdf --- /dev/null +++ b/data/ai/function/skill/smart_motion/gravity.mcfunction @@ -0,0 +1,10 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Gravity.Add +execute store result score @s _ run data get storage mob_data: Call.Gravity.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute if data storage mob_data: Call.Gravity.Set store result score @s sm.Gravity run data get storage mob_data: Call.Gravity.Set +scoreboard players operation @s sm.Gravity += @s Calc +#Limit +execute if data storage mob_data: Call.Gravity.Limit store result score @s _ run data get storage mob_data: Call.Gravity.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.Gravity.Limit run scoreboard players operation @s sm.Gravity < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Gravity.Limit run scoreboard players operation @s sm.Gravity > @s _ diff --git a/data/ai/function/skill/smart_motion/on_block.mcfunction b/data/ai/function/skill/smart_motion/on_block.mcfunction new file mode 100644 index 000000000..31966af55 --- /dev/null +++ b/data/ai/function/skill/smart_motion/on_block.mcfunction @@ -0,0 +1,9 @@ +#SmartMotion + +#OnBlock +tag @s remove Break +tag @s remove Stick +tag @s remove Bounce +execute if data storage mob_data: Call{OnBlock:"Break"} run tag @s add Break +execute if data storage mob_data: Call{OnBlock:"Stick"} run tag @s add Stick +execute if data storage mob_data: Call{OnBlock:"Bounce"} run tag @s add Bounce diff --git a/data/ai/function/skill/smart_motion/rotation.mcfunction b/data/ai/function/skill/smart_motion/rotation.mcfunction new file mode 100644 index 000000000..17019031c --- /dev/null +++ b/data/ai/function/skill/smart_motion/rotation.mcfunction @@ -0,0 +1,7 @@ +#Horizontal +execute store result score _ _ run data get storage mob_data: Call.Rotation.Horizontal 100 +execute if data storage mob_data: Call.Rotation.Horizontal store result entity @s Rotation[0] float 0.01 run scoreboard players operation @s sm.RotationX += _ _ + +#Vertical +execute store result score _ _ run data get storage mob_data: Call.Rotation.Vertical 100 +execute if data storage mob_data: Call.Rotation.Vertical store result entity @s Rotation[1] float 0.01 run scoreboard players operation @s sm.RotationY += _ _ diff --git a/data/ai/function/skill/smart_motion/speed.mcfunction b/data/ai/function/skill/smart_motion/speed.mcfunction new file mode 100644 index 000000000..e04a2927a --- /dev/null +++ b/data/ai/function/skill/smart_motion/speed.mcfunction @@ -0,0 +1,10 @@ +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.Speed.Add +execute store result score @s _ run data get storage mob_data: Call.Speed.Range +execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute if data storage mob_data: Call.Speed.Set store result score @s sm.Speed run data get storage mob_data: Call.Speed.Set +scoreboard players operation @s sm.Speed += @s Calc +#Limit +execute if data storage mob_data: Call.Speed.Limit store result score @s _ run data get storage mob_data: Call.Speed.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.Speed.Limit run scoreboard players operation @s sm.Speed < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.Speed.Limit run scoreboard players operation @s sm.Speed > @s _ diff --git a/data/ai/function/skill/spawn/.mcfunction b/data/ai/function/skill/spawn/.mcfunction new file mode 100644 index 000000000..9c1d51faf --- /dev/null +++ b/data/ai/function/skill/spawn/.mcfunction @@ -0,0 +1,5 @@ +summon armor_stand ~ ~ ~ {Tags:[Spawn],DeathTime:19s,NoAI:1b,Silent:1b,Invisible:1b,DisabledSlots:2097151,ArmorItems:[{},{},{},{id:"minecraft:stick",Count:1b,tag:{CustomModelData:1}}]} +execute if data storage mob_data: Call.CountRange run function skill:enemy/spawn/count_range +scoreboard players operation _ Level = @s Level +execute if data storage mob_data: Call{IsChild:1b} run function skill:enemy/spawn/child +execute as @e[tag=Spawn,tag=!CallSpawned,distance=0] run function skill:enemy/spawn/apply diff --git a/data/ai/function/skill/spawn/apply.mcfunction b/data/ai/function/skill/spawn/apply.mcfunction new file mode 100644 index 000000000..f988da30a --- /dev/null +++ b/data/ai/function/skill/spawn/apply.mcfunction @@ -0,0 +1,7 @@ +data modify entity @s ArmorItems[3].tag set from storage mob_data: Call +data modify entity @s ArmorItems[3].tag.CustomModelData set value 1 +execute unless data storage mob_data: Call{NonParentLevel:true} run scoreboard players operation @s Level = _ Level +#向きを合わせる +tp @s ~ ~ ~ ~ ~ +#適用済み +tag @s add CallSpawned diff --git a/data/ai/function/skill/spawn/child.mcfunction b/data/ai/function/skill/spawn/child.mcfunction new file mode 100644 index 000000000..7c27e67f7 --- /dev/null +++ b/data/ai/function/skill/spawn/child.mcfunction @@ -0,0 +1,3 @@ +execute store result storage mob_data: ParentID int 1 run scoreboard players get @s OhMyDatID +data modify storage mob_data: Call.SpawnEntities[][].ParentID set from storage mob_data: ParentID +tag @s add Parent \ No newline at end of file diff --git a/data/ai/function/skill/spawn/count_range.mcfunction b/data/ai/function/skill/spawn/count_range.mcfunction new file mode 100644 index 000000000..7ac3d98f0 --- /dev/null +++ b/data/ai/function/skill/spawn/count_range.mcfunction @@ -0,0 +1,7 @@ +#CountRange指定時はCountも指定すること +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Call.CountRange +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Call.Count +execute store result storage mob_data: Call.Count int 1 run scoreboard players operation _ Calc += _ _ diff --git a/data/ai/function/skill/step/.mcfunction b/data/ai/function/skill/step/.mcfunction new file mode 100644 index 000000000..4883f7c57 --- /dev/null +++ b/data/ai/function/skill/step/.mcfunction @@ -0,0 +1,6 @@ +#向きを設定 +function skill:enemy/step/direction +#速度を設定 +function skill:enemy/step/speed +#Motionに適用 +function skill:enemy/step/set_motion diff --git a/data/ai/function/skill/step/direction.mcfunction b/data/ai/function/skill/step/direction.mcfunction new file mode 100644 index 000000000..dc59c7b37 --- /dev/null +++ b/data/ai/function/skill/step/direction.mcfunction @@ -0,0 +1,16 @@ +#向きを設定 +execute positioned as @s run tp @s ~ ~ ~ ~ ~ +#Marker召喚 +execute in area:control_area positioned 0.0 0.0 0.0 run function calc:geometry/tp_00000 +#向きを設定 +execute if data storage mob_data: Call.DirectionRange run function skill:enemy/step/range/direction +#水平 +execute store result score _ Calc run data get entity @s Rotation[0] 100 +execute if data storage mob_data: Call.Absolute{Horizontal:1b} run scoreboard players set _ Calc 0 +execute store result score _ _ run data get storage mob_data: Call.Direction[0] 100 +execute store result entity 0-0-0-0-0 Rotation[0] float 0.01 run scoreboard players operation _ Calc += _ _ +#垂直 +execute store result score _ Calc run data get entity @s Rotation[1] 100 +execute if data storage mob_data: Call.Absolute{Vertical:1b} run scoreboard players set _ Calc 0 +execute store result score _ _ run data get storage mob_data: Call.Direction[1] 100 +execute store result entity 0-0-0-0-0 Rotation[1] float 0.01 run scoreboard players operation _ Calc += _ _ diff --git a/data/ai/function/skill/step/range/direction.mcfunction b/data/ai/function/skill/step/range/direction.mcfunction new file mode 100644 index 000000000..2809d8427 --- /dev/null +++ b/data/ai/function/skill/step/range/direction.mcfunction @@ -0,0 +1,15 @@ +### Directionに0~DirectionRangeを足す +# 水平 +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Call.DirectionRange[0] 100 +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Call.Direction[0] 100 +execute store result storage mob_data: Call.Direction[0] float 0.01 run scoreboard players operation _ _ += _ Calc +# 垂直 +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Call.DirectionRange[1] 100 +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Call.Direction[1] 100 +execute store result storage mob_data: Call.Direction[1] float 0.01 run scoreboard players operation _ _ += _ Calc diff --git a/data/ai/function/skill/step/range/speed.mcfunction b/data/ai/function/skill/step/range/speed.mcfunction new file mode 100644 index 000000000..30d469e47 --- /dev/null +++ b/data/ai/function/skill/step/range/speed.mcfunction @@ -0,0 +1,8 @@ +### Speedに0~SpeedRangeを足す +# 水平 +execute store result score _ Calc run function calc:random +execute store result score _ _ run data get storage mob_data: Call.SpeedRange 100 +scoreboard players add _ _ 1 +scoreboard players operation _ Calc %= _ _ +execute store result score _ _ run data get storage mob_data: Call.Speed 100 +execute store result storage mob_data: Call.Speed double 0.01 run scoreboard players operation _ _ += _ Calc diff --git a/data/ai/function/skill/step/set_motion.mcfunction b/data/ai/function/skill/step/set_motion.mcfunction new file mode 100644 index 000000000..c3d53c711 --- /dev/null +++ b/data/ai/function/skill/step/set_motion.mcfunction @@ -0,0 +1,2 @@ +execute if entity @s[type=!#entity:use_power_projectile] run data modify entity @s Motion set from entity 0-0-0-0-0 Pos +execute if entity @s[type=#entity:use_power_projectile] run data modify entity @s power set from entity 0-0-0-0-0 Pos \ No newline at end of file diff --git a/data/ai/function/skill/step/speed.mcfunction b/data/ai/function/skill/step/speed.mcfunction new file mode 100644 index 000000000..cece88bad --- /dev/null +++ b/data/ai/function/skill/step/speed.mcfunction @@ -0,0 +1,10 @@ +#速度を設定 +execute as 0-0-0-0-0 at @s run tp @s ^ ^ ^1 +execute if data storage mob_data: Call.SpeedRange run function skill:enemy/step/range/speed +execute store result score _ _ run data get storage mob_data: Call.Speed 100 +execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[0] 100 +execute store result entity 0-0-0-0-0 Pos[0] double 0.0001 run scoreboard players operation _ Calc *= _ _ +execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[1] 100 +execute store result entity 0-0-0-0-0 Pos[1] double 0.0001 run scoreboard players operation _ Calc *= _ _ +execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[2] 100 +execute store result entity 0-0-0-0-0 Pos[2] double 0.0001 run scoreboard players operation _ Calc *= _ _ \ No newline at end of file diff --git a/data/ai/function/skill/teleport/.mcfunction b/data/ai/function/skill/teleport/.mcfunction new file mode 100644 index 000000000..dd597cbd6 --- /dev/null +++ b/data/ai/function/skill/teleport/.mcfunction @@ -0,0 +1,4 @@ +#実行位置にTPする ブロックにめり込む場合は後方に補正 +function skill:enemy/teleport/loop +#演出 +execute if data storage mob_data: Call{Message:1b} run function makeup:skill/enemy/teleport diff --git a/data/ai/function/skill/teleport/loop.mcfunction b/data/ai/function/skill/teleport/loop.mcfunction new file mode 100644 index 000000000..ef8741b15 --- /dev/null +++ b/data/ai/function/skill/teleport/loop.mcfunction @@ -0,0 +1,2 @@ +execute if block ^ ^ ^ #block:no_collision run tp @s ^ ^ ^ +execute unless block ^ ^ ^ #block:no_collision positioned ^ ^ ^-0.5 run function skill:enemy/teleport/loop From 30109099af97f18542218565d47c6561e78412ed Mon Sep 17 00:00:00 2001 From: Ponpon Date: Mon, 28 Apr 2025 00:01:51 +0900 Subject: [PATCH 07/27] =?UTF-8?q?NO-ISSUE=20Refactor=20=E3=83=95=E3=82=A1?= =?UTF-8?q?=E3=82=A4=E3=83=AB=E3=83=98=E3=83=83=E3=83=80=E3=81=AB=E3=83=91?= =?UTF-8?q?=E3=82=B9=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/blink/activate/.mcfunction | 1 + .../skill/blink/activate/decorate/finalize.mcfunction | 1 + .../skill/blink/activate/decorate/initialize.mcfunction | 1 + .../ai/function/skill/blink/activate/decorate/tick.mcfunction | 1 + data/ai/function/skill/blink/activate/roll.mcfunction | 3 ++- data/ai/function/skill/blink/activate/success.mcfunction | 3 ++- data/ai/function/skill/blink/cast/.mcfunction | 3 ++- data/ai/function/skill/blink/cast/default.mcfunction | 3 ++- data/ai/function/skill/blink/cast/success.mcfunction | 3 ++- data/ai/function/skill/change_ai.mcfunction | 1 + data/ai/function/skill/change_move/.mcfunction | 1 + data/ai/function/skill/change_move/front.mcfunction | 1 + data/ai/function/skill/change_move/horizontal.mcfunction | 1 + data/ai/function/skill/change_move/range.mcfunction | 1 + data/ai/function/skill/change_move/side.mcfunction | 1 + data/ai/function/skill/change_move/up.mcfunction | 1 + data/ai/function/skill/change_move/vertical.mcfunction | 1 + data/ai/function/skill/change_status/.mcfunction | 1 + data/ai/function/skill/change_status/attack.mcfunction | 1 + data/ai/function/skill/change_status/defense.mcfunction | 1 + data/ai/function/skill/change_status/hp.mcfunction | 1 + data/ai/function/skill/change_status/level/.mcfunction | 1 + data/ai/function/skill/change_status/level/rename.mcfunction | 1 + data/ai/function/skill/change_status/magic_attack.mcfunction | 1 + data/ai/function/skill/change_status/magic_defense.mcfunction | 1 + data/ai/function/skill/change_status/mp.mcfunction | 1 + data/ai/function/skill/change_turn/.mcfunction | 1 + data/ai/function/skill/change_turn/random.mcfunction | 1 + data/ai/function/skill/change_turn/set.mcfunction | 1 + data/ai/function/skill/damage/.mcfunction | 1 + data/ai/function/skill/damage/aec.mcfunction | 1 + data/ai/function/skill/damage/apply.mcfunction | 1 + data/ai/function/skill/damage/apply_to_player.mcfunction | 3 ++- data/ai/function/skill/damage/can_be_blocked.mcfunction | 3 ++- data/ai/function/skill/damage/check_distance.mcfunction | 2 +- data/ai/function/skill/damage/explosion.mcfunction | 1 + data/ai/function/skill/damage/friendly.mcfunction | 1 + data/ai/function/skill/damage/is_blocking.mcfunction | 1 + data/ai/function/skill/damage/is_player.mcfunction | 3 ++- data/ai/function/skill/damage/is_using_shield.mcfunction | 3 ++- data/ai/function/skill/damage/mob.mcfunction | 2 +- data/ai/function/skill/damage/mp.mcfunction | 1 + data/ai/function/skill/damage/player.mcfunction | 2 +- data/ai/function/skill/damage/use_shield.mcfunction | 2 +- data/ai/function/skill/delay_action/act/.mcfunction | 3 ++- data/ai/function/skill/delay_action/act/check/.mcfunction | 3 ++- data/ai/function/skill/delay_action/act/check/loop.mcfunction | 3 ++- .../ai/function/skill/delay_action/act/check/shift.mcfunction | 3 ++- data/ai/function/skill/delay_action/act/execute/.mcfunction | 3 ++- .../skill/delay_action/act/execute/affect/.mcfunction | 3 ++- .../act/execute/affect/huge_explosion_01/.mcfunction | 3 ++- .../act/execute/affect/huge_explosion_02/.mcfunction | 3 ++- .../skill/delay_action/act/execute/casting/.mcfunction | 3 ++- .../act/execute/casting/bubble_launcher_01/.mcfunction | 3 ++- .../act/execute/casting/bubble_launcher_02/.mcfunction | 3 ++- .../act/execute/casting/bubble_launcher_03/.mcfunction | 3 ++- .../skill/delay_action/act/execute/casting/cast/.mcfunction | 3 ++- .../delay_action/act/execute/casting/cast/normal/.mcfunction | 3 ++- .../skill/delay_action/act/execute/casting/charge/.mcfunction | 3 ++- .../act/execute/casting/charge/normal/.mcfunction | 3 ++- .../act/execute/casting/charge/normal/act.mcfunction | 3 ++- .../act/execute/casting/circle_hearts/.mcfunction | 3 ++- .../delay_action/act/execute/casting/cross_ring/.mcfunction | 3 ++- .../delay_action/act/execute/casting/doom_bomb/.mcfunction | 3 ++- .../delay_action/act/execute/casting/doom_cast/.mcfunction | 3 ++- .../act/execute/casting/finishing_move/.mcfunction | 3 ++- .../delay_action/act/execute/casting/healing/.mcfunction | 3 ++- .../act/execute/casting/laser_pointer/.mcfunction | 3 ++- .../act/execute/casting/laser_pointer/red_dust/.mcfunction | 3 ++- .../execute/casting/laser_pointer/red_dust/loop.mcfunction | 3 ++- .../casting/laser_pointer/red_dust/loop_end.mcfunction | 3 ++- .../casting/laser_pointer/red_dust/loop_start.mcfunction | 3 ++- .../act/execute/casting/pillar_of_water/.mcfunction | 3 ++- .../act/execute/casting/sludge_garbager/.mcfunction | 3 ++- .../delay_action/act/execute/casting/water_bolt/.mcfunction | 3 ++- .../function/skill/delay_action/act/execute/common.mcfunction | 1 + .../function/skill/delay_action/act/execute/enemy/.mcfunction | 2 +- .../delay_action/act/execute/enemy/abyss_mage/.mcfunction | 2 +- .../act/execute/enemy/abyss_mage/abyss_magic.mcfunction | 2 +- .../delay_action/act/execute/enemy/aurora_eye/.mcfunction | 2 +- .../delay_action/act/execute/enemy/aurora_eye/zone.mcfunction | 2 +- .../skill/delay_action/act/execute/enemy/common/.mcfunction | 2 +- .../delay_action/act/execute/enemy/common/paralyze.mcfunction | 2 +- .../delay_action/act/execute/enemy/crimson_eye/.mcfunction | 2 +- .../delay_action/act/execute/enemy/lunatic_eye/.mcfunction | 2 +- data/ai/function/skill/delay_action/act/sort/.mcfunction | 3 ++- data/ai/function/skill/delay_action/act/sort/loop.mcfunction | 3 ++- data/ai/function/skill/delay_action/append/.mcfunction | 1 + data/ai/function/skill/delay_action/append/act.mcfunction | 3 ++- data/ai/function/skill/delay_action/append/affect/.mcfunction | 3 ++- .../delay_action/append/affect/huge_explosion_01/.mcfunction | 3 ++- .../delay_action/append/affect/huge_explosion_02/.mcfunction | 3 ++- .../ai/function/skill/delay_action/append/casting/.mcfunction | 3 ++- .../append/casting/bubble_launcher_01/.mcfunction | 3 ++- .../append/casting/bubble_launcher_02/.mcfunction | 3 ++- .../append/casting/bubble_launcher_03/.mcfunction | 3 ++- .../skill/delay_action/append/casting/cast/.mcfunction | 3 ++- .../skill/delay_action/append/casting/cast/normal/.mcfunction | 3 ++- .../skill/delay_action/append/casting/charge/.mcfunction | 3 ++- .../delay_action/append/casting/charge/normal/.mcfunction | 3 ++- .../delay_action/append/casting/circle_hearts/.mcfunction | 3 ++- .../skill/delay_action/append/casting/cross_ring/.mcfunction | 3 ++- .../skill/delay_action/append/casting/doom_bomb/.mcfunction | 3 ++- .../skill/delay_action/append/casting/doom_cast/.mcfunction | 3 ++- .../delay_action/append/casting/finishing_move/.mcfunction | 3 ++- .../skill/delay_action/append/casting/healing/.mcfunction | 3 ++- .../delay_action/append/casting/laser_pointer/.mcfunction | 3 ++- .../append/casting/laser_pointer/red_dust/.mcfunction | 3 ++- .../delay_action/append/casting/pillar_of_water/.mcfunction | 3 ++- .../delay_action/append/casting/sludge_garbager/.mcfunction | 3 ++- .../skill/delay_action/append/casting/water_bolt/.mcfunction | 3 ++- data/ai/function/skill/delay_action/append/enemy/.mcfunction | 2 +- .../skill/delay_action/append/enemy/abyss_mage/.mcfunction | 2 +- .../append/enemy/abyss_mage/abyss_magic.mcfunction | 2 +- .../skill/delay_action/append/enemy/aurora_eye/.mcfunction | 2 +- .../delay_action/append/enemy/aurora_eye/shard.mcfunction | 2 +- .../delay_action/append/enemy/aurora_eye/zone.mcfunction | 2 +- .../skill/delay_action/append/enemy/common/.mcfunction | 2 +- .../delay_action/append/enemy/common/paralyze.mcfunction | 2 +- .../skill/delay_action/append/enemy/crimson_eye/.mcfunction | 2 +- .../skill/delay_action/append/enemy/lunatic_eye/.mcfunction | 2 +- .../skill/delay_action/append/enemy/ryomen/.mcfunction | 2 +- data/ai/function/skill/delay_action/append/loop.mcfunction | 3 ++- data/ai/function/skill/delay_action/append/search.mcfunction | 3 ++- data/ai/function/skill/delay_action/append/shift.mcfunction | 3 ++- data/ai/function/skill/function/.mcfunction | 1 + data/ai/function/skill/function/loot_add.mcfunction | 1 + data/ai/function/skill/heal/.mcfunction | 1 + data/ai/function/skill/heal/act.mcfunction | 1 + data/ai/function/skill/heal/search.mcfunction | 3 ++- data/ai/function/skill/icicle_magic/.mcfunction | 3 ++- data/ai/function/skill/icicle_magic/icicle/.mcfunction | 3 ++- data/ai/function/skill/icicle_magic/icicle/fall.mcfunction | 3 ++- .../function/skill/icicle_magic/icicle_summoner/.mcfunction | 3 ++- .../icicle_magic/icicle_summoner/find_place/end.mcfunction | 3 ++- .../icicle_magic/icicle_summoner/find_place/start.mcfunction | 3 ++- .../icicle_summoner/find_place_above/end.mcfunction | 3 ++- .../icicle_summoner/find_place_above/start.mcfunction | 3 ++- .../icicle_magic/icicle_summoner/place_icicle/.mcfunction | 3 ++- .../icicle_magic/icicle_summoner/place_icicle/act.mcfunction | 3 ++- .../skill/icicle_magic/schedule_loop/icicle.mcfunction | 3 ++- .../icicle_magic/schedule_loop/icicle_summoner.mcfunction | 3 ++- data/ai/function/skill/laser/loop/blue_laser/.mcfunction | 3 ++- .../ai/function/skill/laser/loop/blue_laser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/blue_laser/end.mcfunction | 3 ++- data/ai/function/skill/laser/loop/frozenlaser/.mcfunction | 1 + .../function/skill/laser/loop/frozenlaser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/green_laser/.mcfunction | 3 ++- .../function/skill/laser/loop/green_laser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/green_laser/end.mcfunction | 3 ++- data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction | 3 ++- data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction | 1 + data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction | 1 + data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction | 1 + data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction | 1 + data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction | 1 + data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction | 1 + data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction | 1 + data/ai/function/skill/laser/loop/lightning_laser/.mcfunction | 1 + data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction | 1 + .../function/skill/laser/loop/piglin_snipe/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction | 3 ++- data/ai/function/skill/laser/loop/red_laser/.mcfunction | 1 + data/ai/function/skill/laser/loop/red_laser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/red_laser/end.mcfunction | 3 ++- data/ai/function/skill/laser/loop/security_laser/.mcfunction | 3 ++- .../function/skill/laser/loop/security_laser/dual/.mcfunction | 1 + .../skill/laser/loop/security_laser/dual/1.mcfunction | 1 + .../skill/laser/loop/security_laser/dual/2.mcfunction | 1 + .../skill/laser/loop/security_laser/dual/damage.mcfunction | 3 ++- .../skill/laser/loop/security_laser/single/.mcfunction | 1 + .../skill/laser/loop/security_laser/single/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/test.mcfunction | 1 + data/ai/function/skill/laser/loop/violet_laser/.mcfunction | 3 ++- .../function/skill/laser/loop/violet_laser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/violet_laser/end.mcfunction | 3 ++- data/ai/function/skill/laser/loop/white_laser/.mcfunction | 3 ++- .../function/skill/laser/loop/white_laser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/white_laser/end.mcfunction | 3 ++- data/ai/function/skill/laser/loop/yellow_laser/.mcfunction | 3 ++- .../function/skill/laser/loop/yellow_laser/damage.mcfunction | 3 ++- data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction | 3 ++- data/ai/function/skill/laser/main/call_on_attack.mcfunction | 3 ++- data/ai/function/skill/laser/main/damage.mcfunction | 1 + data/ai/function/skill/laser/main/fork.mcfunction | 1 + data/ai/function/skill/laser/main/init.mcfunction | 1 + data/ai/function/skill/merge_nbt.mcfunction | 1 + data/ai/function/skill/message.mcfunction | 1 + data/ai/function/skill/parabolic_motion/.mcfunction | 2 +- data/ai/function/skill/reraise/.mcfunction | 4 ++-- data/ai/function/skill/reraise/death_cancel.mcfunction | 1 + data/ai/function/skill/reraise/health_recovery.mcfunction | 2 +- data/ai/function/skill/reraise/remove_raise.mcfunction | 3 ++- data/ai/function/skill/reraise/success.mcfunction | 3 ++- data/ai/function/skill/rotate.mcfunction | 2 +- data/ai/function/skill/smart_motion/.mcfunction | 1 + data/ai/function/skill/smart_motion/gravity.mcfunction | 1 + data/ai/function/skill/smart_motion/on_block.mcfunction | 1 + data/ai/function/skill/smart_motion/rotation.mcfunction | 1 + data/ai/function/skill/smart_motion/speed.mcfunction | 1 + data/ai/function/skill/spawn/.mcfunction | 1 + data/ai/function/skill/spawn/apply.mcfunction | 1 + data/ai/function/skill/spawn/child.mcfunction | 3 ++- data/ai/function/skill/spawn/count_range.mcfunction | 1 + data/ai/function/skill/step/.mcfunction | 1 + data/ai/function/skill/step/direction.mcfunction | 1 + data/ai/function/skill/step/range/direction.mcfunction | 1 + data/ai/function/skill/step/range/speed.mcfunction | 1 + data/ai/function/skill/step/set_motion.mcfunction | 3 ++- data/ai/function/skill/step/speed.mcfunction | 3 ++- data/ai/function/skill/teleport/.mcfunction | 1 + data/ai/function/skill/teleport/loop.mcfunction | 1 + 212 files changed, 324 insertions(+), 140 deletions(-) diff --git a/data/ai/function/skill/blink/activate/.mcfunction b/data/ai/function/skill/blink/activate/.mcfunction index 7fedcb8c4..36b80361c 100644 --- a/data/ai/function/skill/blink/activate/.mcfunction +++ b/data/ai/function/skill/blink/activate/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/blink/activate/ scoreboard players set @s _ 0 data modify storage mob_data: Blink set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink diff --git a/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction b/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction index 9a5174dfe..c7da168ff 100644 --- a/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction +++ b/data/ai/function/skill/blink/activate/decorate/finalize.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/blink/activate/decorate/finalize scoreboard players reset @s BlinkSubTimer scoreboard players remove @s NativeFlag 100 diff --git a/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction b/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction index 047c9cc10..db6c5bf21 100644 --- a/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction +++ b/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/blink/activate/decorate/initialize scoreboard players set @s BlinkSubTimer 7 scoreboard players add @s NativeFlag 100 diff --git a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction index b8c728c4b..c8dbf0b93 100644 --- a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction +++ b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/blink/activate/decorate/tick scoreboard players remove @s BlinkSubTimer 1 execute if score @s BlinkSubTimer matches 6 run tp @s ~0.2 ~ ~0.2 diff --git a/data/ai/function/skill/blink/activate/roll.mcfunction b/data/ai/function/skill/blink/activate/roll.mcfunction index 0b7cb3893..8e54d312e 100644 --- a/data/ai/function/skill/blink/activate/roll.mcfunction +++ b/data/ai/function/skill/blink/activate/roll.mcfunction @@ -1,7 +1,8 @@ +#> ai:skill/blink/activate/roll execute store result score @s _ run data get storage mob_data: Blink.Chance 10000 execute store result score _ Calc run function calc:random scoreboard players set _ _ 10000 #Calc %= 10000 scoreboard players operation _ Calc %= _ _ -execute if score @s _ > _ Calc run function skill:enemy/blink/activate/success \ No newline at end of file +execute if score @s _ > _ Calc run function skill:enemy/blink/activate/success diff --git a/data/ai/function/skill/blink/activate/success.mcfunction b/data/ai/function/skill/blink/activate/success.mcfunction index d3809a3a1..86d85c230 100644 --- a/data/ai/function/skill/blink/activate/success.mcfunction +++ b/data/ai/function/skill/blink/activate/success.mcfunction @@ -1,6 +1,7 @@ +#> ai:skill/blink/activate/success execute store result storage mob_data: Blink.Count int 0.99999 run data get storage mob_data: Blink.Count scoreboard players reset @s Damage execute if data storage mob_data: Blink{Count:0} run data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink execute unless data storage mob_data: Blink{Count:0} run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink -function skill:enemy/blink/activate/decorate/initialize \ No newline at end of file +function skill:enemy/blink/activate/decorate/initialize diff --git a/data/ai/function/skill/blink/cast/.mcfunction b/data/ai/function/skill/blink/cast/.mcfunction index e7d1f8e35..ebf1b884f 100644 --- a/data/ai/function/skill/blink/cast/.mcfunction +++ b/data/ai/function/skill/blink/cast/.mcfunction @@ -1 +1,2 @@ -execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function skill:enemy/blink/cast/success \ No newline at end of file +#> ai:skill/blink/cast/ +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function skill:enemy/blink/cast/success diff --git a/data/ai/function/skill/blink/cast/default.mcfunction b/data/ai/function/skill/blink/cast/default.mcfunction index cd6474a57..bcaeb5125 100644 --- a/data/ai/function/skill/blink/cast/default.mcfunction +++ b/data/ai/function/skill/blink/cast/default.mcfunction @@ -1 +1,2 @@ -data modify storage mob_data: Blink.TriggerOn set value ["Physical","Fire","Ice","Lightning","Light","Dark"] \ No newline at end of file +#> ai:skill/blink/cast/default +data modify storage mob_data: Blink.TriggerOn set value ["Physical","Fire","Ice","Lightning","Light","Dark"] diff --git a/data/ai/function/skill/blink/cast/success.mcfunction b/data/ai/function/skill/blink/cast/success.mcfunction index 2ade0f203..bc544aad7 100644 --- a/data/ai/function/skill/blink/cast/success.mcfunction +++ b/data/ai/function/skill/blink/cast/success.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/blink/cast/success data remove storage mob_data: Blink data merge storage mob_data: {Blink:{Count:0,Chance:0.0000d}} data modify storage mob_data: Blink.Count set from storage mob_data: Call.Count @@ -7,4 +8,4 @@ data modify storage mob_data: Blink.TriggerOn set from storage mob_data: Call.Tr data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink tag @s add CallOnDamage -function makeup:skill/enemy/blink/cast/0 \ No newline at end of file +function makeup:skill/enemy/blink/cast/0 diff --git a/data/ai/function/skill/change_ai.mcfunction b/data/ai/function/skill/change_ai.mcfunction index b56d494b0..0a79f5dc9 100644 --- a/data/ai/function/skill/change_ai.mcfunction +++ b/data/ai/function/skill/change_ai.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_ai #AIを書き換え execute if data storage mob_data: Call.Death run data modify storage mob_data: AI.Death set from storage mob_data: Call.Death execute if data storage mob_data: Call.Time run data modify storage mob_data: AI.Time set from storage mob_data: Call.Time diff --git a/data/ai/function/skill/change_move/.mcfunction b/data/ai/function/skill/change_move/.mcfunction index 088648320..ab4f4f3b5 100644 --- a/data/ai/function/skill/change_move/.mcfunction +++ b/data/ai/function/skill/change_move/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/ execute if data storage mob_data: Call.Front run function skill:enemy/change_move/front execute if data storage mob_data: Call.Side run function skill:enemy/change_move/side execute if data storage mob_data: Call.Up run function skill:enemy/change_move/up diff --git a/data/ai/function/skill/change_move/front.mcfunction b/data/ai/function/skill/change_move/front.mcfunction index 3b7ceb99b..55cd60cf8 100644 --- a/data/ai/function/skill/change_move/front.mcfunction +++ b/data/ai/function/skill/change_move/front.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/front #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Front.Add 100 execute store result score @s _ run data get storage mob_data: Call.Front.Range 100 diff --git a/data/ai/function/skill/change_move/horizontal.mcfunction b/data/ai/function/skill/change_move/horizontal.mcfunction index 63190873c..32deb5996 100644 --- a/data/ai/function/skill/change_move/horizontal.mcfunction +++ b/data/ai/function/skill/change_move/horizontal.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/horizontal #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Horizontal.Add 100 execute store result score @s _ run data get storage mob_data: Call.Horizontal.Range 100 diff --git a/data/ai/function/skill/change_move/range.mcfunction b/data/ai/function/skill/change_move/range.mcfunction index 677bacd28..5ec042d53 100644 --- a/data/ai/function/skill/change_move/range.mcfunction +++ b/data/ai/function/skill/change_move/range.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/range #RangeをAddに足す execute store result score _ Calc run function calc:random scoreboard players add @s _ 1 diff --git a/data/ai/function/skill/change_move/side.mcfunction b/data/ai/function/skill/change_move/side.mcfunction index 9b987eb17..bc34a6ea0 100644 --- a/data/ai/function/skill/change_move/side.mcfunction +++ b/data/ai/function/skill/change_move/side.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/side #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Side.Add 100 execute store result score @s _ run data get storage mob_data: Call.Side.Range 100 diff --git a/data/ai/function/skill/change_move/up.mcfunction b/data/ai/function/skill/change_move/up.mcfunction index acf2d5d23..fdc82e4c1 100644 --- a/data/ai/function/skill/change_move/up.mcfunction +++ b/data/ai/function/skill/change_move/up.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/up #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Up.Add 100 execute store result score @s _ run data get storage mob_data: Call.Up.Range 100 diff --git a/data/ai/function/skill/change_move/vertical.mcfunction b/data/ai/function/skill/change_move/vertical.mcfunction index 23e68585e..163465262 100644 --- a/data/ai/function/skill/change_move/vertical.mcfunction +++ b/data/ai/function/skill/change_move/vertical.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_move/vertical #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Vertical.Add 100 execute store result score @s _ run data get storage mob_data: Call.Vertical.Range 100 diff --git a/data/ai/function/skill/change_status/.mcfunction b/data/ai/function/skill/change_status/.mcfunction index 49cc5ac9c..e37c5051f 100644 --- a/data/ai/function/skill/change_status/.mcfunction +++ b/data/ai/function/skill/change_status/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/ data modify storage tusb_mob: "遅延ステータス"."ステータス" set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス" execute if data storage mob_data: Call.Level run function skill:enemy/change_status/level/ diff --git a/data/ai/function/skill/change_status/attack.mcfunction b/data/ai/function/skill/change_status/attack.mcfunction index 31de7125e..da954e950 100644 --- a/data/ai/function/skill/change_status/attack.mcfunction +++ b/data/ai/function/skill/change_status/attack.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/attack #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Attack.Add execute store result score @s _ run data get storage mob_data: Call.Attack.Range diff --git a/data/ai/function/skill/change_status/defense.mcfunction b/data/ai/function/skill/change_status/defense.mcfunction index f20b4a296..3153704e2 100644 --- a/data/ai/function/skill/change_status/defense.mcfunction +++ b/data/ai/function/skill/change_status/defense.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/defense #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Defense.Add execute store result score @s _ run data get storage mob_data: Call.Defense.Range diff --git a/data/ai/function/skill/change_status/hp.mcfunction b/data/ai/function/skill/change_status/hp.mcfunction index 770c11163..6d70a0fc7 100644 --- a/data/ai/function/skill/change_status/hp.mcfunction +++ b/data/ai/function/skill/change_status/hp.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/hp #Set, Add execute store result score @s Calc run data get storage mob_data: Call.HP.Add execute store result score @s _ run data get storage mob_data: Call.HP.Range diff --git a/data/ai/function/skill/change_status/level/.mcfunction b/data/ai/function/skill/change_status/level/.mcfunction index 826ffb458..9b5aa0973 100644 --- a/data/ai/function/skill/change_status/level/.mcfunction +++ b/data/ai/function/skill/change_status/level/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/level/ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Level.Add execute store result score @s _ run data get storage mob_data: Call.Level.Range diff --git a/data/ai/function/skill/change_status/level/rename.mcfunction b/data/ai/function/skill/change_status/level/rename.mcfunction index 456ed2e27..f6b7c5819 100644 --- a/data/ai/function/skill/change_status/level/rename.mcfunction +++ b/data/ai/function/skill/change_status/level/rename.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/level/rename data modify entity @s CustomName set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName run data modify entity @s CustomName set value '' execute in area:control_area run loot replace block 2 2 2 container.0 loot entity:name_with_level diff --git a/data/ai/function/skill/change_status/magic_attack.mcfunction b/data/ai/function/skill/change_status/magic_attack.mcfunction index a86a76fcd..d540bd426 100644 --- a/data/ai/function/skill/change_status/magic_attack.mcfunction +++ b/data/ai/function/skill/change_status/magic_attack.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/magic_attack #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MagicAttack.Add execute store result score @s _ run data get storage mob_data: Call.MagicAttack.Range diff --git a/data/ai/function/skill/change_status/magic_defense.mcfunction b/data/ai/function/skill/change_status/magic_defense.mcfunction index 33c20a3e6..139145e67 100644 --- a/data/ai/function/skill/change_status/magic_defense.mcfunction +++ b/data/ai/function/skill/change_status/magic_defense.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/magic_defense #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MagicDefence.Add execute store result score @s _ run data get storage mob_data: Call.MagicDefence.Range diff --git a/data/ai/function/skill/change_status/mp.mcfunction b/data/ai/function/skill/change_status/mp.mcfunction index dd3fc0091..03a7c9fd6 100644 --- a/data/ai/function/skill/change_status/mp.mcfunction +++ b/data/ai/function/skill/change_status/mp.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_status/mp #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MP.Add execute store result score @s _ run data get storage mob_data: Call.MP.Range diff --git a/data/ai/function/skill/change_turn/.mcfunction b/data/ai/function/skill/change_turn/.mcfunction index c9642de83..8f5d5d7b0 100644 --- a/data/ai/function/skill/change_turn/.mcfunction +++ b/data/ai/function/skill/change_turn/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_turn/ #AI.Turn[0].ExitにChangeTurnフラグを追加 data modify storage mob_data: AI.Turn[0].Exit.ChangeTurn set value 1b #Onceを進める diff --git a/data/ai/function/skill/change_turn/random.mcfunction b/data/ai/function/skill/change_turn/random.mcfunction index b151ede36..1e8f612e8 100644 --- a/data/ai/function/skill/change_turn/random.mcfunction +++ b/data/ai/function/skill/change_turn/random.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_turn/random #現在のTurnを除くランダムなTurnに変える execute store result score _ Calc run function calc:random execute store result score _ _ if data storage mob_data: AI.Turn[] diff --git a/data/ai/function/skill/change_turn/set.mcfunction b/data/ai/function/skill/change_turn/set.mcfunction index 1de753058..f4c3c0455 100644 --- a/data/ai/function/skill/change_turn/set.mcfunction +++ b/data/ai/function/skill/change_turn/set.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/change_turn/set #指定したTurnに変更 execute store result score _ Calc run data get storage mob_data: Call.Set execute store result score _ _ run data get storage mob_data: AI.Turn[0].Index diff --git a/data/ai/function/skill/damage/.mcfunction b/data/ai/function/skill/damage/.mcfunction index e4338b7ba..e9cefe2ab 100644 --- a/data/ai/function/skill/damage/.mcfunction +++ b/data/ai/function/skill/damage/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/ #MPの吸収量を初期化 scoreboard players set _ MPMax 0 diff --git a/data/ai/function/skill/damage/aec.mcfunction b/data/ai/function/skill/damage/aec.mcfunction index d1ff21c18..b35f53140 100644 --- a/data/ai/function/skill/damage/aec.mcfunction +++ b/data/ai/function/skill/damage/aec.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/aec #モブの座標にAECを召喚する summon area_effect_cloud ~ ~ ~ {Tags:[DamageAEC],Duration:1,Age:-1} execute as @e[tag=DamageAEC,distance=..0.01,limit=1] run data modify entity @s {} merge from storage mob_data: Call.AEC diff --git a/data/ai/function/skill/damage/apply.mcfunction b/data/ai/function/skill/damage/apply.mcfunction index d542e7627..53e43939b 100644 --- a/data/ai/function/skill/damage/apply.mcfunction +++ b/data/ai/function/skill/damage/apply.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/apply execute if entity @s[tag=Enemy] run function skill:damage/apply/ execute if entity @s[predicate=entity:friendly] run function skill:enemy/damage/is_player execute if data storage mob_data: Call.AEC positioned as @s run function skill:enemy/damage/aec diff --git a/data/ai/function/skill/damage/apply_to_player.mcfunction b/data/ai/function/skill/damage/apply_to_player.mcfunction index daf5875ac..23941dd07 100644 --- a/data/ai/function/skill/damage/apply_to_player.mcfunction +++ b/data/ai/function/skill/damage/apply_to_player.mcfunction @@ -1,4 +1,5 @@ +#> ai:skill/damage/apply_to_player ##プレイヤーへのダメージ function score_damage:api/attack #被ダメージトリガー -function player:trigger/damage_taken \ No newline at end of file +function player:trigger/damage_taken diff --git a/data/ai/function/skill/damage/can_be_blocked.mcfunction b/data/ai/function/skill/damage/can_be_blocked.mcfunction index 97c8e23d3..ff466717d 100644 --- a/data/ai/function/skill/damage/can_be_blocked.mcfunction +++ b/data/ai/function/skill/damage/can_be_blocked.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/damage/can_be_blocked execute unless data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/is_using_shield -execute if data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/apply_to_player \ No newline at end of file +execute if data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/apply_to_player diff --git a/data/ai/function/skill/damage/check_distance.mcfunction b/data/ai/function/skill/damage/check_distance.mcfunction index 9c36f2d87..c682c02b8 100644 --- a/data/ai/function/skill/damage/check_distance.mcfunction +++ b/data/ai/function/skill/damage/check_distance.mcfunction @@ -1,4 +1,4 @@ - +#> ai:skill/damage/check_distance ### Distance内か詳しく調べる # 範囲内ならダメージ付与 diff --git a/data/ai/function/skill/damage/explosion.mcfunction b/data/ai/function/skill/damage/explosion.mcfunction index 0543e539c..9f5a6b248 100644 --- a/data/ai/function/skill/damage/explosion.mcfunction +++ b/data/ai/function/skill/damage/explosion.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/explosion #モブの座標に即爆発クリーパーを召喚する summon creeper ~ ~500 ~ {Tags:[Explosion],ignited:1b,Fuse:2s,Invulnerable:1b} execute positioned ~ ~500 ~ run tp @e[type=creeper,tag=!Initialized,distance=..0.0001,limit=1] ~ ~-500 ~ diff --git a/data/ai/function/skill/damage/friendly.mcfunction b/data/ai/function/skill/damage/friendly.mcfunction index 78e22c3fd..e7fa337c3 100644 --- a/data/ai/function/skill/damage/friendly.mcfunction +++ b/data/ai/function/skill/damage/friendly.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/friendly #非プレイヤーFriendlyに物理ダメージとして与える execute store result score _ Damage run data get storage score_damage: Argument.Damage data modify storage skill: damage set value {hit:1b} diff --git a/data/ai/function/skill/damage/is_blocking.mcfunction b/data/ai/function/skill/damage/is_blocking.mcfunction index 204d906fc..4dd6a8b97 100644 --- a/data/ai/function/skill/damage/is_blocking.mcfunction +++ b/data/ai/function/skill/damage/is_blocking.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/damage/is_blocking execute if entity @s[distance=..1000] positioned as @s positioned ~ ~1 ~ run function skill:enemy/damage/use_shield execute unless entity @s[distance=..1000] run function score_damage:api/attack diff --git a/data/ai/function/skill/damage/is_player.mcfunction b/data/ai/function/skill/damage/is_player.mcfunction index f04e02880..d287f6deb 100644 --- a/data/ai/function/skill/damage/is_player.mcfunction +++ b/data/ai/function/skill/damage/is_player.mcfunction @@ -1,4 +1,5 @@ +#> ai:skill/damage/is_player ##プレイヤーかどうかで分岐 # プレイヤーは生存している必要がある。 execute if entity @s[type=player,nbt=!{Health:0.0f}] run function skill:enemy/damage/can_be_blocked -execute unless entity @s[type=player] run function skill:enemy/damage/friendly \ No newline at end of file +execute unless entity @s[type=player] run function skill:enemy/damage/friendly diff --git a/data/ai/function/skill/damage/is_using_shield.mcfunction b/data/ai/function/skill/damage/is_using_shield.mcfunction index 979577a83..137ef46a5 100644 --- a/data/ai/function/skill/damage/is_using_shield.mcfunction +++ b/data/ai/function/skill/damage/is_using_shield.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/is_using_shield execute store result score _ _ run time query gametime execute if score @s ShieldUsingTick = _ _ positioned as @s facing entity 0-0-0-0-1 feet positioned ^ ^ ^1000 rotated as @s positioned ^ ^ ^-1000 run function skill:enemy/damage/is_blocking -execute unless score @s ShieldUsingTick = _ _ run function skill:enemy/damage/apply_to_player \ No newline at end of file +execute unless score @s ShieldUsingTick = _ _ run function skill:enemy/damage/apply_to_player diff --git a/data/ai/function/skill/damage/mob.mcfunction b/data/ai/function/skill/damage/mob.mcfunction index 774ea3192..ac0e76a4e 100644 --- a/data/ai/function/skill/damage/mob.mcfunction +++ b/data/ai/function/skill/damage/mob.mcfunction @@ -1,4 +1,4 @@ - +#> ai:skill/damage/mob ### 他のモブに対して属性ダメージを与える。 #ダメージ取得 diff --git a/data/ai/function/skill/damage/mp.mcfunction b/data/ai/function/skill/damage/mp.mcfunction index 6270a1ff6..369ed758d 100644 --- a/data/ai/function/skill/damage/mp.mcfunction +++ b/data/ai/function/skill/damage/mp.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/damage/mp #MP減少量を取得 execute store result score _ MP run data get storage mob_data: Call.MP.MP #割合消費のとき diff --git a/data/ai/function/skill/damage/player.mcfunction b/data/ai/function/skill/damage/player.mcfunction index 67dd62eb9..2d1b8e1d9 100644 --- a/data/ai/function/skill/damage/player.mcfunction +++ b/data/ai/function/skill/damage/player.mcfunction @@ -1,4 +1,4 @@ - +#> ai:skill/damage/player ### プレイヤーに対してダメージを与える。 #ダメージ取得 diff --git a/data/ai/function/skill/damage/use_shield.mcfunction b/data/ai/function/skill/damage/use_shield.mcfunction index 920cf91cb..181f0444b 100644 --- a/data/ai/function/skill/damage/use_shield.mcfunction +++ b/data/ai/function/skill/damage/use_shield.mcfunction @@ -1,4 +1,4 @@ - +#> ai:skill/damage/use_shield ### 盾で防御 function makeup:player/trigger/using/shield #装備を取得 diff --git a/data/ai/function/skill/delay_action/act/.mcfunction b/data/ai/function/skill/delay_action/act/.mcfunction index ad9bc191c..c18989aca 100644 --- a/data/ai/function/skill/delay_action/act/.mcfunction +++ b/data/ai/function/skill/delay_action/act/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/ scoreboard players add @s ActionTick 1 ###一時的な処理を継続するかどうか NextActionTickが1以上なら継続 -execute if score @s ActionTick >= @s NextActionTick run function skill:enemy/delay_action/act/check/ \ No newline at end of file +execute if score @s ActionTick >= @s NextActionTick run function skill:enemy/delay_action/act/check/ diff --git a/data/ai/function/skill/delay_action/act/check/.mcfunction b/data/ai/function/skill/delay_action/act/check/.mcfunction index 61d0f4cd4..58bba51ab 100644 --- a/data/ai/function/skill/delay_action/act/check/.mcfunction +++ b/data/ai/function/skill/delay_action/act/check/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/check/ ###ohmydat確認 function #oh_my_dat:please ###List移行 @@ -27,4 +28,4 @@ data remove storage mob_data: DelayAction data remove storage mob_data: SortingActionData data remove storage mob_data: ExecutingAction data remove storage mob_data: CheckingAction -data remove storage mob_data: CheckedAction \ No newline at end of file +data remove storage mob_data: CheckedAction diff --git a/data/ai/function/skill/delay_action/act/check/loop.mcfunction b/data/ai/function/skill/delay_action/act/check/loop.mcfunction index 8cd9a83f8..31a6c2701 100644 --- a/data/ai/function/skill/delay_action/act/check/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/check/loop.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/check/loop ###NextAction更新 "@s _" scoreboard players set @s _ 0 execute store result score @s _ run data get storage mob_data: CheckingAction[-1].NextAction @@ -12,4 +13,4 @@ data remove storage mob_data: ExecutingAction ###Shift function skill:enemy/delay_action/act/check/shift ###Loop -execute if data storage mob_data: CheckingAction[-1] run function skill:enemy/delay_action/act/check/loop \ No newline at end of file +execute if data storage mob_data: CheckingAction[-1] run function skill:enemy/delay_action/act/check/loop diff --git a/data/ai/function/skill/delay_action/act/check/shift.mcfunction b/data/ai/function/skill/delay_action/act/check/shift.mcfunction index b51da963d..a4b251123 100644 --- a/data/ai/function/skill/delay_action/act/check/shift.mcfunction +++ b/data/ai/function/skill/delay_action/act/check/shift.mcfunction @@ -1,6 +1,7 @@ +#> ai:skill/delay_action/act/check/shift ###Shift data modify storage mob_data: CheckedAction append from storage mob_data: CheckingAction[-1] data remove storage mob_data: CheckingAction[-1] ###削除予定の要素を削除 -data remove storage mob_data: CheckedAction[{Delete:1b}] \ No newline at end of file +data remove storage mob_data: CheckedAction[{Delete:1b}] diff --git a/data/ai/function/skill/delay_action/act/execute/.mcfunction b/data/ai/function/skill/delay_action/act/execute/.mcfunction index 3beb6fb40..760b88a7e 100644 --- a/data/ai/function/skill/delay_action/act/execute/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/ ###Dataの参照、書き換えはExecutingActionから行う execute if data storage mob_data: ExecutingAction{Tags:[Casting]} run function skill:enemy/delay_action/act/execute/casting/ execute if data storage mob_data: ExecutingAction{Tags:[Affect]} run function skill:enemy/delay_action/act/execute/affect/ @@ -5,4 +6,4 @@ execute if data storage mob_data: ExecutingAction{Tags:[Enemy]} run function ski ###共通処理 -function skill:enemy/delay_action/act/execute/common \ No newline at end of file +function skill:enemy/delay_action/act/execute/common diff --git a/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction index e06a983cd..9ce0db1a0 100644 --- a/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/act/execute/affect/ execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion01]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_01/ -execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion02]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_02/ \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion02]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_02/ diff --git a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction index ddd58d639..5896d5ad9 100644 --- a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/affect/huge_explosion_01/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_001 execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_002 @@ -58,4 +59,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_057 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_058 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_060 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction index 4cc640650..613f44025 100644 --- a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/affect/huge_explosion_02/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_001 execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_002 @@ -58,4 +59,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_057 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_058 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_060 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction index c7a10c9cd..8ce0754e9 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/ execute if data storage mob_data: ExecutingAction{Tags:[Cast]} run function skill:enemy/delay_action/act/execute/casting/cast/ execute if data storage mob_data: ExecutingAction{Tags:[LaserPointer]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/ execute if data storage mob_data: ExecutingAction{Tags:[Charge]} run function skill:enemy/delay_action/act/execute/casting/charge/ @@ -12,4 +13,4 @@ execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher02]} run f execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher03]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_03/ execute if data storage mob_data: ExecutingAction{Tags:[DoomBomb]} run function skill:enemy/delay_action/act/execute/casting/doom_bomb/ execute if data storage mob_data: ExecutingAction{Tags:[DoomCast]} run function skill:enemy/delay_action/act/execute/casting/doom_cast/ -execute if data storage mob_data: ExecutingAction{Tags:[CircleHearts]} run function skill:enemy/delay_action/act/execute/casting/circle_hearts/ \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Tags:[CircleHearts]} run function skill:enemy/delay_action/act/execute/casting/circle_hearts/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction index 930d8a4c2..ef7b862e7 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/bubble_launcher_01/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_001 execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_002 @@ -78,4 +79,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_077 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_078 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_079 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_080 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_080 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction index e9c64979f..da0ce41ab 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/bubble_launcher_02/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_001 execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_002 @@ -78,4 +79,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_077 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_078 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_079 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_080 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_080 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction index 86989f08a..2635ea8a1 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/bubble_launcher_03/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_001 execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_002 @@ -78,4 +79,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_077 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_078 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_079 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_080 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_080 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction index 212343237..d1c8bf886 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction @@ -1 +1,2 @@ -execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/cast/normal/ \ No newline at end of file +#> ai:skill/delay_action/act/execute/casting/cast/ +execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/cast/normal/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction index 680f4d967..2c59217dd 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/delay_action/act/execute/casting/cast/normal/ ###詠唱演出 execute if data storage mob_data: ExecutingAction{Stage:3} positioned ~ ~0.5 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ execute if data storage mob_data: ExecutingAction{Stage:2} positioned ~ ~1.0 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ execute if data storage mob_data: ExecutingAction{Stage:1} positioned ~ ~1.5 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ -data modify storage mob_data: ExecutingAction.NextAction set value 5 \ No newline at end of file +data modify storage mob_data: ExecutingAction.NextAction set value 5 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction index f52b86817..45544ce38 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction @@ -1 +1,2 @@ -execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/charge/normal/ \ No newline at end of file +#> ai:skill/delay_action/act/execute/casting/charge/ +execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/charge/normal/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction index 196a06d62..7955d9250 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/charge/normal/ ## 呼び出し execute anchored eyes positioned ^ ^ ^ run function calc:geometry/tp_00000 @@ -9,4 +10,4 @@ execute as 0-0-0-0-0 at @s run function skill:enemy/delay_action/act/execute/cas -data modify storage mob_data: ExecutingAction.NextAction set value 1 \ No newline at end of file +data modify storage mob_data: ExecutingAction.NextAction set value 1 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction index af8590cb5..30793fae9 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/charge/ function calc:set/random_rotation function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation @@ -31,4 +32,4 @@ function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ -function calc:geometry/return_marker \ No newline at end of file +function calc:geometry/return_marker diff --git a/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction index c5a25eaaf..30d106b4a 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/circle_hearts/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_001 execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_002 @@ -28,4 +29,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_027 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_028 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_030 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_030 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction index 83121169b..481cc4b3e 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/cross_ring/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_001 execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_002 @@ -18,4 +19,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_017 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_018 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_019 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_020 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_020 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction index 26ffe9e5f..8af586b65 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/doom_bomb/ ###詠唱演出 Stage0で終了なので最大数から開始 function calc:geometry/tp_00000 execute store result score _ Random run function calc:random @@ -31,4 +32,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_02 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_03 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_04 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_05 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_05 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction index 7b3d8cbf0..cf51f1912 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/doom_cast/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:15} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_01 execute if data storage mob_data: ExecutingAction{Stage:14} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_02 @@ -13,4 +14,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} anchored eyes run fun execute if data storage mob_data: ExecutingAction{Stage:4} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_12 execute if data storage mob_data: ExecutingAction{Stage:3} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_13 execute if data storage mob_data: ExecutingAction{Stage:2} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_14 -execute if data storage mob_data: ExecutingAction{Stage:1} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_15 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_15 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction index ac7627988..1343a366e 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/finishing_move/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_001 execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_002 @@ -58,4 +59,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_057 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_058 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_060 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction index 212e07949..4af10cb3b 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/healing/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:31} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_001 execute if data storage mob_data: ExecutingAction{Stage:30} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_002 @@ -29,4 +30,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} rotated ~ 0 run funct execute if data storage mob_data: ExecutingAction{Stage:4} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_028 execute if data storage mob_data: ExecutingAction{Stage:3} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_029 execute if data storage mob_data: ExecutingAction{Stage:2} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_030 -execute if data storage mob_data: ExecutingAction{Stage:1} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_031 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_031 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction index e806e7d49..a57098b64 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction @@ -1 +1,2 @@ -execute if data storage mob_data: ExecutingAction{Tags:[RedDust]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/ \ No newline at end of file +#> ai:skill/delay_action/act/execute/casting/laser_pointer/ +execute if data storage mob_data: ExecutingAction{Tags:[RedDust]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction index e8f0e2604..6da12f06f 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/ ###演出 execute if data storage mob_data: ExecutingAction.ExtraSettings.Loop anchored eyes positioned ^ ^ ^ run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start -data modify storage mob_data: ExecutingAction.NextAction set value 2 \ No newline at end of file +data modify storage mob_data: ExecutingAction.NextAction set value 2 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction index e793891a3..482af1da5 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop function makeup:skill/enemy/delay_action/casting/laser_pointer/red_dust/particle/red_dust execute store result storage mob_data: ExecutingAction.Loop int 1 run data get storage mob_data: ExecutingAction.Loop 0.999999999 -execute unless data storage mob_data: ExecutingAction{Loop:0} positioned ^ ^ ^0.5 if block ~ ~ ~ #block:no_collision run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop \ No newline at end of file +execute unless data storage mob_data: ExecutingAction{Loop:0} positioned ^ ^ ^0.5 if block ~ ~ ~ #block:no_collision run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction index 78cecab9c..70d2c1540 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end.mcfunction @@ -1 +1,2 @@ -data remove storage mob_data: ExecutingAction.Loop \ No newline at end of file +#> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end +data remove storage mob_data: ExecutingAction.Loop diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction index 0a66635e6..ac7aa70ad 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start data modify storage mob_data: ExecutingAction.Loop set from storage mob_data: ExecutingAction.ExtraSettings.Loop function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop -function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end \ No newline at end of file +function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end diff --git a/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction index 1decbbb51..de4a1f619 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/pillar_of_water/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_001 execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_002 @@ -18,4 +19,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_017 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_018 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_020 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_020 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction index ca96887b0..bb683faaa 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/sludge_garbager/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_001 execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_002 @@ -58,4 +59,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_057 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_058 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_060 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction index 735c52407..e21b6720b 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/casting/water_bolt/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_001 execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_002 @@ -28,4 +29,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_027 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_028 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_029 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_030 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_030 diff --git a/data/ai/function/skill/delay_action/act/execute/common.mcfunction b/data/ai/function/skill/delay_action/act/execute/common.mcfunction index 49f804ea5..16aea98fa 100644 --- a/data/ai/function/skill/delay_action/act/execute/common.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/common.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/act/execute/common ###共通処理 execute store result storage mob_data: ExecutingAction.Stage int 0.999999 run data get storage mob_data: ExecutingAction.Stage data modify storage mob_data: ExecutingAction.Executed set value 1b diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction index 7d0a3c08d..885e5aad6 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction @@ -9,4 +9,4 @@ execute if data storage mob_data: ExecutingAction{Tags:["CrimsonEye"]} run funct execute if data storage mob_data: ExecutingAction{Tags:["LunaticEye"]} run function skill:enemy/delay_action/act/execute/enemy/lunatic_eye/ execute if data storage mob_data: ExecutingAction{Tags:["AuroraEye"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ execute if data storage mob_data: ExecutingAction{Tags:["Ryomen"]} run function skill:enemy/delay_action/act/execute/enemy/ryomen/ -execute if data storage mob_data: ExecutingAction{Tags:["AbyssMage"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/ \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Tags:["AbyssMage"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/ diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction index a28e4c0e2..3c16fd052 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction @@ -1,4 +1,4 @@ #> skill:enemy/delay_action/act/execute/enemy/abyss_mage/ # @within function skill:enemy/delay_action/act/execute/enemy/ -execute if data storage mob_data: ExecutingAction{Tags:["Magic"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/abyss_magic \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Tags:["Magic"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/abyss_magic diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction index a108c9332..fb5e51631 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction @@ -26,4 +26,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_22 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_23 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_24 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_25 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_25 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction index fb2d3d91e..66fab2ebe 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/act/execute/enemy/ execute if data storage mob_data: ExecutingAction{Tags:["Zone"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/zone -execute if data storage mob_data: ExecutingAction{Tags:["Shard"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/shard \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Tags:["Shard"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/shard diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction index c007736b2..3664177d2 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction @@ -16,4 +16,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_12 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_13 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_14 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_15 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_15 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction index f4a2d0a77..bfdd14c54 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction @@ -1,4 +1,4 @@ #> skill:enemy/delay_action/act/execute/enemy/common/ # @within function skill:enemy/delay_action/act/execute/enemy/ -execute if data storage mob_data: ExecutingAction{Tags:["Paralyze"]} run function skill:enemy/delay_action/act/execute/enemy/common/paralyze \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Tags:["Paralyze"]} run function skill:enemy/delay_action/act/execute/enemy/common/paralyze diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction index c19408b7f..d43fbd305 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction @@ -16,4 +16,4 @@ execute if score _ Random matches 4 at @s run tp @s ~ ~ ~ ~ ~6 execute if score _ Random matches 5 at @s run tp @s ~ ~ ~ ~ ~-6 execute if score _ Random matches 6 at @s run tp @s ~ ~ ~ ~-6 ~ - execute if score _ Random matches 7 at @s run tp @s ~ ~ ~ ~6 ~ \ No newline at end of file + execute if score _ Random matches 7 at @s run tp @s ~ ~ ~ ~6 ~ diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction index 907736c80..53f98a5d6 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction @@ -32,4 +32,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_27 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_28 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_29 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_30 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_30 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction index 2aba262bb..14d83faec 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction @@ -56,4 +56,4 @@ execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:s execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_52 execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_53 execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_54 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_55 \ No newline at end of file +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_55 diff --git a/data/ai/function/skill/delay_action/act/sort/.mcfunction b/data/ai/function/skill/delay_action/act/sort/.mcfunction index 2e9319d6d..d275059d4 100644 --- a/data/ai/function/skill/delay_action/act/sort/.mcfunction +++ b/data/ai/function/skill/delay_action/act/sort/.mcfunction @@ -1,6 +1,7 @@ +#> ai:skill/delay_action/act/sort/ data modify storage mob_data: SortingActionData append from storage mob_data: DelayAction[{Executed:1b}] data remove storage mob_data: DelayAction[{Executed:1b}] function skill:enemy/delay_action/act/sort/loop -data remove storage mob_data: DelayAction[{Executed:1b}].Executed \ No newline at end of file +data remove storage mob_data: DelayAction[{Executed:1b}].Executed diff --git a/data/ai/function/skill/delay_action/act/sort/loop.mcfunction b/data/ai/function/skill/delay_action/act/sort/loop.mcfunction index 5e84d30ab..1bd5f02e4 100644 --- a/data/ai/function/skill/delay_action/act/sort/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/sort/loop.mcfunction @@ -1,7 +1,8 @@ +#> ai:skill/delay_action/act/sort/loop ###SortingActionDataの要素がなくなるまでループする ### "_ _" SortingActionData[-1]のNextAction execute store result score _ _ run data get storage mob_data: SortingActionData[-1].NextAction data modify storage mob_data: AddingAction set from storage mob_data: SortingActionData[-1] function skill:enemy/delay_action/append/search data remove storage mob_data: SortingActionData[-1] -execute if data storage mob_data: SortingActionData[-1] run function skill:enemy/delay_action/act/sort/loop \ No newline at end of file +execute if data storage mob_data: SortingActionData[-1] run function skill:enemy/delay_action/act/sort/loop diff --git a/data/ai/function/skill/delay_action/append/.mcfunction b/data/ai/function/skill/delay_action/append/.mcfunction index 64779080d..99f7a3bcb 100644 --- a/data/ai/function/skill/delay_action/append/.mcfunction +++ b/data/ai/function/skill/delay_action/append/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/append/ #oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4] # 対応表 diff --git a/data/ai/function/skill/delay_action/append/act.mcfunction b/data/ai/function/skill/delay_action/append/act.mcfunction index b29c718a6..e347e8964 100644 --- a/data/ai/function/skill/delay_action/append/act.mcfunction +++ b/data/ai/function/skill/delay_action/append/act.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/act data modify storage mob_data: DelayAction append from storage mob_data: AddingAction -data modify storage mob_data: AddingAction.IsAdded set value true \ No newline at end of file +data modify storage mob_data: AddingAction.IsAdded set value true diff --git a/data/ai/function/skill/delay_action/append/affect/.mcfunction b/data/ai/function/skill/delay_action/append/affect/.mcfunction index fccd26647..c3c0d3b17 100644 --- a/data/ai/function/skill/delay_action/append/affect/.mcfunction +++ b/data/ai/function/skill/delay_action/append/affect/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/affect/ execute if data storage mob_data: Call{Tags:["HugeExplosion01"]} run function skill:enemy/delay_action/append/affect/huge_explosion_01/ -execute if data storage mob_data: Call{Tags:["HugeExplosion02"]} run function skill:enemy/delay_action/append/affect/huge_explosion_02/ \ No newline at end of file +execute if data storage mob_data: Call{Tags:["HugeExplosion02"]} run function skill:enemy/delay_action/append/affect/huge_explosion_02/ diff --git a/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction b/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction index cb3dce6ec..3c3bce795 100644 --- a/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction +++ b/data/ai/function/skill/delay_action/append/affect/huge_explosion_01/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/affect/huge_explosion_01/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction b/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction index cb3dce6ec..1fc8483a7 100644 --- a/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction +++ b/data/ai/function/skill/delay_action/append/affect/huge_explosion_02/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/affect/huge_explosion_02/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/.mcfunction b/data/ai/function/skill/delay_action/append/casting/.mcfunction index 3f8eab46b..8a8ca144d 100644 --- a/data/ai/function/skill/delay_action/append/casting/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/append/casting/ execute if data storage mob_data: Call{Tags:["Cast"]} run function skill:enemy/delay_action/append/casting/cast/ execute if data storage mob_data: Call{Tags:["LaserPointer"]} run function skill:enemy/delay_action/append/casting/laser_pointer/ execute if data storage mob_data: Call{Tags:["Charge"]} run function skill:enemy/delay_action/append/casting/charge/ @@ -12,4 +13,4 @@ execute if data storage mob_data: Call{Tags:["BubbleLauncher02"]} run function s execute if data storage mob_data: Call{Tags:["BubbleLauncher03"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_03/ execute if data storage mob_data: Call{Tags:["DoomBomb"]} run function skill:enemy/delay_action/append/casting/doom_bomb/ execute if data storage mob_data: Call{Tags:["DoomCast"]} run function skill:enemy/delay_action/append/casting/doom_cast/ -execute if data storage mob_data: Call{Tags:["CircleHearts"]} run function skill:enemy/delay_action/append/casting/circle_hearts/ \ No newline at end of file +execute if data storage mob_data: Call{Tags:["CircleHearts"]} run function skill:enemy/delay_action/append/casting/circle_hearts/ diff --git a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction index 2908bb775..ee2b1bb20 100644 --- a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_01/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/bubble_launcher_01/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction index 2908bb775..c9a85edb0 100644 --- a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_02/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/bubble_launcher_02/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction index 2908bb775..fcb97003d 100644 --- a/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/bubble_launcher_03/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/bubble_launcher_03/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:80,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction index a13a43be3..3b442b81f 100644 --- a/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction @@ -1 +1,2 @@ -execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/cast/normal/ \ No newline at end of file +#> ai:skill/delay_action/append/casting/cast/ +execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/cast/normal/ diff --git a/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction index c54125641..a2f1cf778 100644 --- a/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/cast/normal/ data modify storage mob_data: AddingAction set value {Stage:3,NextAction:5} -function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel \ No newline at end of file +function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel diff --git a/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction b/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction index c37808fb4..ada72e3da 100644 --- a/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction @@ -1 +1,2 @@ -execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/charge/normal/ \ No newline at end of file +#> ai:skill/delay_action/append/casting/charge/ +execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/charge/normal/ diff --git a/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction b/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction index 371f30b0c..ef2168ab1 100644 --- a/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/charge/normal/.mcfunction @@ -1 +1,2 @@ -data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} \ No newline at end of file +#> ai:skill/delay_action/append/casting/charge/normal/ +data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction b/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction index 8c013b9ed..8ee397144 100644 --- a/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/circle_hearts/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/circle_hearts/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction index e67ee73a8..6d20ca89f 100644 --- a/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/cross_ring/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/append/casting/cross_ring/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:20,NextAction:1} -playsound minecraft:entity.zombie_villager.converted hostile @a[distance=..32] ~ ~ ~ 1.5 1.5 \ No newline at end of file +playsound minecraft:entity.zombie_villager.converted hostile @a[distance=..32] ~ ~ ~ 1.5 1.5 diff --git a/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction b/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction index db39dbe57..7c721e701 100644 --- a/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/doom_bomb/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/doom_bomb/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction b/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction index a23fcfa12..0b8cc6f64 100644 --- a/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/doom_cast/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/doom_cast/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:15,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:15,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction b/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction index cb3dce6ec..ee29a8615 100644 --- a/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/finishing_move/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/finishing_move/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction b/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction index 16e6f78dd..ae6411cc5 100644 --- a/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/healing/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/healing/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:31,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:31,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction b/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction index b1c30e74d..6895830b3 100644 --- a/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction @@ -1 +1,2 @@ -execute if data storage mob_data: Call{Tags:["RedDust"]} run function skill:enemy/delay_action/append/casting/laser_pointer/red_dust/ \ No newline at end of file +#> ai:skill/delay_action/append/casting/laser_pointer/ +execute if data storage mob_data: Call{Tags:["RedDust"]} run function skill:enemy/delay_action/append/casting/laser_pointer/red_dust/ diff --git a/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction b/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction index a5b913d08..a68172a89 100644 --- a/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/laser_pointer/red_dust/.mcfunction @@ -1 +1,2 @@ -data modify storage mob_data: AddingAction set value {Stage:29,NextAction:1} \ No newline at end of file +#> ai:skill/delay_action/append/casting/laser_pointer/red_dust/ +data modify storage mob_data: AddingAction set value {Stage:29,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction b/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction index ee1d21616..344c987aa 100644 --- a/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/pillar_of_water/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/pillar_of_water/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:20,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:20,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction b/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction index cb3dce6ec..918333556 100644 --- a/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/sludge_garbager/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/delay_action/append/casting/sludge_garbager/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 -data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} \ No newline at end of file +data modify storage mob_data: AddingAction set value {Stage:60,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction b/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction index 3714e6e46..235849826 100644 --- a/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction @@ -1,4 +1,5 @@ +#> ai:skill/delay_action/append/casting/water_bolt/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} # 演出 -function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel \ No newline at end of file +function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel diff --git a/data/ai/function/skill/delay_action/append/enemy/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/.mcfunction index 841e2378d..719e5ff97 100644 --- a/data/ai/function/skill/delay_action/append/enemy/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/.mcfunction @@ -9,4 +9,4 @@ execute if data storage mob_data: Call{Tags:["CrimsonEye"]} run function skill:e execute if data storage mob_data: Call{Tags:["LunaticEye"]} run function skill:enemy/delay_action/append/enemy/lunatic_eye/ execute if data storage mob_data: Call{Tags:["AuroraEye"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/ execute if data storage mob_data: Call{Tags:["Ryomen"]} run function skill:enemy/delay_action/append/enemy/ryomen/ -execute if data storage mob_data: Call{Tags:["AbyssMage"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/ \ No newline at end of file +execute if data storage mob_data: Call{Tags:["AbyssMage"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/ diff --git a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction index 732f85d4c..eaea574d6 100644 --- a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction @@ -1,4 +1,4 @@ #> skill:enemy/delay_action/append/enemy/abyss_mage/ # @within function skill:enemy/delay_action/act/execute/enemy/ -execute if data storage mob_data: Call{Tags:["Magic"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/abyss_magic \ No newline at end of file +execute if data storage mob_data: Call{Tags:["Magic"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/abyss_magic diff --git a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction index d8edfdd85..8257333ac 100644 --- a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/abyss_mage/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 - data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} \ No newline at end of file + data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction index 2bbdc71e8..ab3d227fa 100644 --- a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/ execute if data storage mob_data: Call{Tags:["Zone"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/zone -execute if data storage mob_data: Call{Tags:["Shard"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/shard \ No newline at end of file +execute if data storage mob_data: Call{Tags:["Shard"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/shard diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction index 4f1acbbb1..0f1d14bf2 100644 --- a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/aurora_eye/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 - data modify storage mob_data: AddingAction set value {Stage:70,NextAction:1} \ No newline at end of file + data modify storage mob_data: AddingAction set value {Stage:70,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction index 11f0e0cca..a33c73c68 100644 --- a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/aurora_eye/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 - data modify storage mob_data: AddingAction set value {Stage:15,NextAction:2} \ No newline at end of file + data modify storage mob_data: AddingAction set value {Stage:15,NextAction:2} diff --git a/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction index 9b6bc4aca..4a259b58f 100644 --- a/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction @@ -1,4 +1,4 @@ #> skill:enemy/delay_action/append/enemy/common/ # @within function skill:enemy/delay_action/append/enemy/ -execute if data storage mob_data: Call{Tags:["Paralyze"]} run function skill:enemy/delay_action/append/enemy/common/paralyze \ No newline at end of file +execute if data storage mob_data: Call{Tags:["Paralyze"]} run function skill:enemy/delay_action/append/enemy/common/paralyze diff --git a/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction b/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction index 3c43d9ed4..1436add83 100644 --- a/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/common/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 - data modify storage mob_data: AddingAction set value {Stage:40,NextAction:1} \ No newline at end of file + data modify storage mob_data: AddingAction set value {Stage:40,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction index 9671ac635..3344eea30 100644 --- a/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 - data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} \ No newline at end of file + data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction index aaf1ce97c..5e91ea117 100644 --- a/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction @@ -2,4 +2,4 @@ # @within function skill:enemy/delay_action/append/enemy/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 - data modify storage mob_data: AddingAction set value {Stage:51,NextAction:1} \ No newline at end of file + data modify storage mob_data: AddingAction set value {Stage:51,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction index 19cd410ac..d11eff347 100644 --- a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction @@ -11,4 +11,4 @@ particle dust 0.45 0 0 1 ~ ~1 ~ 0.25 0.5 0.25 1 50 force @a[distance=..32,tag=ShowParticles] particle witch ~ ~ ~ 0.15 0 0.15 1 15 force @a[distance=..32,tag=ShowParticles] playsound entity.evoker.prepare_attack hostile @a[distance=..32] ~ ~ ~ 0.5 2 0 - playsound entity.blaze.death hostile @a[distance=..32] ~ ~ ~ 0.5 0 0 \ No newline at end of file + playsound entity.blaze.death hostile @a[distance=..32] ~ ~ ~ 0.5 0 0 diff --git a/data/ai/function/skill/delay_action/append/loop.mcfunction b/data/ai/function/skill/delay_action/append/loop.mcfunction index f5afc9477..9d20120f7 100644 --- a/data/ai/function/skill/delay_action/append/loop.mcfunction +++ b/data/ai/function/skill/delay_action/append/loop.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/append/loop ###先頭の要素のNextAction "@s _" execute store result score @s _ run data get storage mob_data: DelayAction[0].NextAction @@ -16,4 +17,4 @@ execute store result storage mob_data: AddingAction.LoopCount int 0.99999999 run execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/shift ###Loop -execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/loop \ No newline at end of file +execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/loop diff --git a/data/ai/function/skill/delay_action/append/search.mcfunction b/data/ai/function/skill/delay_action/append/search.mcfunction index 8ffedc48d..5dc32861d 100644 --- a/data/ai/function/skill/delay_action/append/search.mcfunction +++ b/data/ai/function/skill/delay_action/append/search.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/append/search ##ListSizeGet "_ Calc" ##Loop最大回数を設定 #scoreboard players set _ Calc 0 @@ -15,4 +16,4 @@ execute unless data storage mob_data: AddingAction{LoopCount:0} run function ski -data remove storage mob_data: AddingAction \ No newline at end of file +data remove storage mob_data: AddingAction diff --git a/data/ai/function/skill/delay_action/append/shift.mcfunction b/data/ai/function/skill/delay_action/append/shift.mcfunction index 148de28fb..041dc8de5 100644 --- a/data/ai/function/skill/delay_action/append/shift.mcfunction +++ b/data/ai/function/skill/delay_action/append/shift.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/delay_action/append/shift ###リストずらし data modify storage mob_data: DelayAction append from storage mob_data: DelayAction[0] -data remove storage mob_data: DelayAction[0] \ No newline at end of file +data remove storage mob_data: DelayAction[0] diff --git a/data/ai/function/skill/function/.mcfunction b/data/ai/function/skill/function/.mcfunction index 1e8d14b48..f8fd48cd8 100644 --- a/data/ai/function/skill/function/.mcfunction +++ b/data/ai/function/skill/function/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/function/ #Tagsをストレージに退避 #呼び出すfunction内ではmob_data: Tagsを参照すること data modify storage mob_data: Tags set from entity @s Tags diff --git a/data/ai/function/skill/function/loot_add.mcfunction b/data/ai/function/skill/function/loot_add.mcfunction index a1d0ab123..837d2eb07 100644 --- a/data/ai/function/skill/function/loot_add.mcfunction +++ b/data/ai/function/skill/function/loot_add.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/function/loot_add # 対象のMobにDeathLootTableを追加する。 function #oh_my_dat:please diff --git a/data/ai/function/skill/heal/.mcfunction b/data/ai/function/skill/heal/.mcfunction index a9f987066..dec1593d0 100644 --- a/data/ai/function/skill/heal/.mcfunction +++ b/data/ai/function/skill/heal/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/heal/ ###Heal ### # _ 回復最大範囲 (1mごと、最大32m,デフォルトで8m,100倍で取得) ### _ Calc ヒール量(魔法攻撃力 * 倍率) diff --git a/data/ai/function/skill/heal/act.mcfunction b/data/ai/function/skill/heal/act.mcfunction index 03e77739a..b73e34618 100644 --- a/data/ai/function/skill/heal/act.mcfunction +++ b/data/ai/function/skill/heal/act.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/heal/act ###回復処理 scoreboard players operation @s HP += _ Calc scoreboard players operation @s HP < @s HPMax diff --git a/data/ai/function/skill/heal/search.mcfunction b/data/ai/function/skill/heal/search.mcfunction index 05d6416f1..b03a42e61 100644 --- a/data/ai/function/skill/heal/search.mcfunction +++ b/data/ai/function/skill/heal/search.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/heal/search ###対象探索 function calc:geometry/distance/ -execute if score _ Ret <= # _ run function skill:enemy/heal/act \ No newline at end of file +execute if score _ Ret <= # _ run function skill:enemy/heal/act diff --git a/data/ai/function/skill/icicle_magic/.mcfunction b/data/ai/function/skill/icicle_magic/.mcfunction index 1e6ce1f9e..30f831f83 100644 --- a/data/ai/function/skill/icicle_magic/.mcfunction +++ b/data/ai/function/skill/icicle_magic/.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/icicle_magic/ summon area_effect_cloud ~ ~ ~ {Tags:["IcicleSummoner"],Duration:4,Radius:0f,Particle:"minecraft:block minecraft:air"} -schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t replace \ No newline at end of file +schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t replace diff --git a/data/ai/function/skill/icicle_magic/icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle/.mcfunction index 6937a23df..9258b4320 100644 --- a/data/ai/function/skill/icicle_magic/icicle/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle/.mcfunction @@ -1,4 +1,5 @@ +#> ai:skill/icicle_magic/icicle/ execute positioned as @s run teleport @s ~ ~-1 ~ ###ここらへんにダメージ判定 execute unless block ~ ~ ~ #block:no_collision run function skill:enemy/icicle_magic/icicle/fall -function makeup:skill/enemy/icicle_magic/icicle \ No newline at end of file +function makeup:skill/enemy/icicle_magic/icicle diff --git a/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction b/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction index 169fe0dd3..34aa8b587 100644 --- a/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/icicle_magic/icicle/fall kill @s -function makeup:skill/enemy/icicle_magic/icicle_fall \ No newline at end of file +function makeup:skill/enemy/icicle_magic/icicle_fall diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction index a09665de5..0ed86278e 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/icicle_magic/icicle_summoner/ ###ランダムな方向をむかせる処理 ###氷柱設置場所探索 scoreboard players set $LoopCount _ 0 -function skill:enemy/icicle_magic/icicle_summoner/find_place/start \ No newline at end of file +function skill:enemy/icicle_magic/icicle_summoner/find_place/start diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction index 84d9af8d8..aac792473 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/icicle_magic/icicle_summoner/find_place/end scoreboard players set $LoopCount _ 0 -function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start \ No newline at end of file +function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction index 37489ec1f..29a345490 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/icicle_magic/icicle_summoner/find_place/start ###設置場所探索 @@ -5,4 +6,4 @@ execute unless block ^ ^ ^0.5 #block:no_collision run scoreboard players set $LoopCount _ 17 scoreboard players add $LoopCount _ 1 execute if score $LoopCount _ matches ..16 positioned ^ ^ ^0.5 run function skill:enemy/icicle_magic/icicle_summoner/find_place/start -execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place/end \ No newline at end of file +execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place/end diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction index 9eaffac73..ffdff42dd 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/end.mcfunction @@ -1 +1,2 @@ -scoreboard players set $LoopCount _ 0 \ No newline at end of file +#> ai:skill/icicle_magic/icicle_summoner/find_place_above/end +scoreboard players set $LoopCount _ 0 diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction index 35b36ae29..0e9e2775d 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/icicle_magic/icicle_summoner/find_place_above/start ###設置場所上方向探索 execute unless block ~ ~0.5 ~ #block:no_collision run scoreboard players set $LoopCount _ 17 scoreboard players add $LoopCount _ 1 execute if score $LoopCount _ matches ..16 positioned ~ ~0.5 ~ run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start -execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/end \ No newline at end of file +execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/end diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction index bc4475d90..98572fcff 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/icicle_magic/icicle_summoner/place_icicle/ execute positioned ~0.4 ~0.7 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act execute positioned ~0.4 ~0.2 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act execute positioned ~0.4 ~-0.3 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act -schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace \ No newline at end of file +schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction index 59540838f..9bea1e65e 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/icicle_magic/icicle_summoner/place_icicle/act ###氷柱本体 -summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",Count:1b},{}]} \ No newline at end of file +summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",Count:1b},{}]} diff --git a/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction b/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction index 3888c9ef9..de52581e4 100644 --- a/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction +++ b/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/icicle_magic/schedule_loop/icicle execute as @e[tag=Icicle] at @s positioned ~-0.4 ~0.7 ~0.075 run function skill:enemy/icicle_magic/icicle/ -execute if entity @e[tag=Icicle,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace \ No newline at end of file +execute if entity @e[tag=Icicle,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace diff --git a/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction b/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction index 5e1408a59..fd17849b3 100644 --- a/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction +++ b/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/icicle_magic/schedule_loop/icicle_summoner execute as @e[tag=IcicleSummoner] at @s run function skill:enemy/icicle_magic/icicle_summoner/ -execute if entity @e[tag=IcicleSummoner,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t \ No newline at end of file +execute if entity @e[tag=IcicleSummoner,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t diff --git a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction index fa7e3d6d8..613e47d6a 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/blue_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/blue_laser/damage #演出 @@ -6,4 +7,4 @@ function makeup:skill/enemy/laser/loop/blue_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopblue_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/blue_laser/ \ No newline at end of file +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/blue_laser/ diff --git a/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction index e61c91cfe..cca0f428d 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/blue_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/blue_laser/spark \ No newline at end of file +function makeup:skill/enemy/laser/loop/blue_laser/spark diff --git a/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction index e40746ba2..cbb39eacc 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/blue_laser/spark \ No newline at end of file +#> ai:skill/laser/loop/blue_laser/end +function makeup:skill/enemy/laser/loop/blue_laser/spark diff --git a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction index cdd53707f..4c7253617 100644 --- a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction +++ b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/frozenlaser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/frozenlaser/damage diff --git a/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction index ef8dfa2de..6ab0e2d35 100644 --- a/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/frozenlaser/damage #ループを0に。 data modify storage mob_data: Call.Loop set value 0 @@ -8,4 +9,4 @@ effect give @a[distance=..2.5] invisibility 5 4 effect give @a[distance=..2.5] wither 10 1 #演出 -function makeup:skill/enemy/laser/loop/frozenlazer/ice_effect \ No newline at end of file +function makeup:skill/enemy/laser/loop/frozenlazer/ice_effect diff --git a/data/ai/function/skill/laser/loop/green_laser/.mcfunction b/data/ai/function/skill/laser/loop/green_laser/.mcfunction index 411e8d2d7..b20eb2b26 100644 --- a/data/ai/function/skill/laser/loop/green_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/green_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/green_laser/damage #演出 @@ -6,4 +7,4 @@ function makeup:skill/enemy/laser/loop/green_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopgreen_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/green_laser/ \ No newline at end of file +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/green_laser/ diff --git a/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction index f9415a72b..dd280e3e6 100644 --- a/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/green_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/green_laser/spark \ No newline at end of file +function makeup:skill/enemy/laser/loop/green_laser/spark diff --git a/data/ai/function/skill/laser/loop/green_laser/end.mcfunction b/data/ai/function/skill/laser/loop/green_laser/end.mcfunction index bb801de27..6095a515f 100644 --- a/data/ai/function/skill/laser/loop/green_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/green_laser/spark \ No newline at end of file +#> ai:skill/laser/loop/green_laser/end +function makeup:skill/enemy/laser/loop/green_laser/spark diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction index 2679a32b9..f9a26095f 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/ #分岐処理 execute if data storage mob_data: Call{Width:1} run function skill:enemy/laser/loop/kame_hame_ha/1 execute if data storage mob_data: Call{Width:2} run function skill:enemy/laser/loop/kame_hame_ha/2 @@ -5,4 +6,4 @@ execute if data storage mob_data: Call{Width:3} run function skill:enemy/laser/l execute if data storage mob_data: Call{Width:4} run function skill:enemy/laser/loop/kame_hame_ha/4 execute if data storage mob_data: Call{Width:5} run function skill:enemy/laser/loop/kame_hame_ha/5 execute if data storage mob_data: Call{Width:6} run function skill:enemy/laser/loop/kame_hame_ha/6 -execute if data storage mob_data: Call{Width:7} run function skill:enemy/laser/loop/kame_hame_ha/7 \ No newline at end of file +execute if data storage mob_data: Call{Width:7} run function skill:enemy/laser/loop/kame_hame_ha/7 diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction index 19cbd19f4..800a3237f 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/1 #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction index d514d58ef..ffc9affab 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/2 #ダメージ処理 execute positioned ~-1 ~-1 ~-1 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction index 06da20c5a..ea1c521ae 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/3 #ダメージ処理 execute positioned ~-1.5 ~-1.5 ~-1.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction index 3c0b88ac5..139cc16c8 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/4 #ダメージ処理 execute positioned ~-2 ~-2 ~-2 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction index 5f8efab2c..76ece1fe5 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/5 #ダメージ処理 execute positioned ~-2.5 ~-2.5 ~-2.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction index 406769919..bdcfe8cb6 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/6 #ダメージ処理 execute positioned ~-3 ~-3 ~-3 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction index 29b1b6342..94e6731bc 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/kame_hame_ha/7 #ダメージ処理 execute positioned ~-3.5 ~-3.5 ~-3.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction index 1795ce175..a3fef6d43 100644 --- a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/lightning_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run effect give @s invisibility 10 5 true execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction index 023c875d8..816ea1ca7 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/piglin_snipe/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/piglin_snipe/damage execute positioned ~-0.5 ~-0.5 ~-0.5 unless block ^ ^ ^ #block:no_collision run data modify storage mob_data: Call.Loop set value 0 diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction index 23c697fd8..653bfdb6c 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/piglin_snipe/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/piglin_snipe/firework \ No newline at end of file +function makeup:skill/enemy/laser/loop/piglin_snipe/firework diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction index 09633d81a..29dd178f2 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/piglin_snipe/firework \ No newline at end of file +#> ai:skill/laser/loop/piglin_snipe/end +function makeup:skill/enemy/laser/loop/piglin_snipe/firework diff --git a/data/ai/function/skill/laser/loop/red_laser/.mcfunction b/data/ai/function/skill/laser/loop/red_laser/.mcfunction index f2bd77614..eedb69e6a 100644 --- a/data/ai/function/skill/laser/loop/red_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/red_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/red_laser/damage #演出 diff --git a/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction index 4a9e4cf5e..09a085089 100644 --- a/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/red_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/red_laser/spark \ No newline at end of file +function makeup:skill/enemy/laser/loop/red_laser/spark diff --git a/data/ai/function/skill/laser/loop/red_laser/end.mcfunction b/data/ai/function/skill/laser/loop/red_laser/end.mcfunction index fef973193..fac4b7bc2 100644 --- a/data/ai/function/skill/laser/loop/red_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/red_laser/spark \ No newline at end of file +#> ai:skill/laser/loop/red_laser/end +function makeup:skill/enemy/laser/loop/red_laser/spark diff --git a/data/ai/function/skill/laser/loop/security_laser/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/.mcfunction index a9f825b0e..1a34659f5 100644 --- a/data/ai/function/skill/laser/loop/security_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/security_laser/ execute if data storage mob_data: Call{Type:"Single"} run function skill:enemy/laser/loop/security_laser/single/ execute if data storage mob_data: Call{Type:"Dual"} run function skill:enemy/laser/loop/security_laser/dual/ -#execute if data storage mob_data: Call{Type:"Triple"} \ No newline at end of file +#execute if data storage mob_data: Call{Type:"Triple"} diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction index 147ef960a..8a57d60c6 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/security_laser/dual/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction index 7898b8556..2a06abdbc 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/security_laser/dual/1 #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction index 86464ac42..b93c0977b 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/security_laser/dual/2 #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction index 85f2bc887..2984bea64 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/laser/loop/security_laser/dual/damage data modify storage score_damage: Argument.DeathCause set value '[{"translate":"%1$sは%2$sによって気化した。","with":[{"selector":"@s"},{"nbt":"MobName","storage":"mob_data:","interpret":true}]}]' execute unless data storage score_damage: Argument{Damage:0} run function score_damage:api/attack function skill:enemy/laser/main/call_on_attack execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit -scoreboard players set @s ProjectileTime -5 \ No newline at end of file +scoreboard players set @s ProjectileTime -5 diff --git a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction index 027c44ab6..be5c1c38c 100644 --- a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/security_laser/single/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/single/damage diff --git a/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction index f48de51cd..e513790c7 100644 --- a/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/laser/loop/security_laser/single/damage data modify storage score_damage: Argument.DeathCause set value '[{"translate":"%1$sは%2$sによって蒸発させられた。","with":[{"selector":"@s"},{"nbt":"MobName","storage":"mob_data:","interpret":true}]}]' execute unless data storage score_damage: Argument{Damage:0} run function score_damage:api/attack function skill:enemy/laser/main/call_on_attack execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit -scoreboard players set @s ProjectileTime -5 \ No newline at end of file +scoreboard players set @s ProjectileTime -5 diff --git a/data/ai/function/skill/laser/loop/test.mcfunction b/data/ai/function/skill/laser/loop/test.mcfunction index 7dc98a421..9cb7e04cf 100644 --- a/data/ai/function/skill/laser/loop/test.mcfunction +++ b/data/ai/function/skill/laser/loop/test.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/test #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage diff --git a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction index 318c29801..b248def6b 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/violet_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/violet_laser/damage #演出 @@ -6,4 +7,4 @@ function makeup:skill/enemy/laser/loop/violet_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopviolet_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/violet_laser/ \ No newline at end of file +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/violet_laser/ diff --git a/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction index 62be663f3..604c5b86b 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/violet_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/violet_laser/spark \ No newline at end of file +function makeup:skill/enemy/laser/loop/violet_laser/spark diff --git a/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction index ac0e87517..3dfc2bff7 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/violet_laser/spark \ No newline at end of file +#> ai:skill/laser/loop/violet_laser/end +function makeup:skill/enemy/laser/loop/violet_laser/spark diff --git a/data/ai/function/skill/laser/loop/white_laser/.mcfunction b/data/ai/function/skill/laser/loop/white_laser/.mcfunction index 21d78e09a..d5e58b9c7 100644 --- a/data/ai/function/skill/laser/loop/white_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/white_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/white_laser/damage #演出 @@ -6,4 +7,4 @@ function makeup:skill/enemy/laser/loop/white_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopwhite_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/white_laser/ \ No newline at end of file +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/white_laser/ diff --git a/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction index b1458483c..72d5a2e54 100644 --- a/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/white_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/white_laser/spark \ No newline at end of file +function makeup:skill/enemy/laser/loop/white_laser/spark diff --git a/data/ai/function/skill/laser/loop/white_laser/end.mcfunction b/data/ai/function/skill/laser/loop/white_laser/end.mcfunction index d071e009c..4d377e78d 100644 --- a/data/ai/function/skill/laser/loop/white_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/white_laser/spark \ No newline at end of file +#> ai:skill/laser/loop/white_laser/end +function makeup:skill/enemy/laser/loop/white_laser/spark diff --git a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction index 29cc743c8..5fb126e08 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/loop/yellow_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/yellow_laser/damage #演出 @@ -6,4 +7,4 @@ function makeup:skill/enemy/laser/loop/yellow_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopyellow_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/yellow_laser/ \ No newline at end of file +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/yellow_laser/ diff --git a/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction index b72702ef5..141aa0f02 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/laser/loop/yellow_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/yellow_laser/spark \ No newline at end of file +function makeup:skill/enemy/laser/loop/yellow_laser/spark diff --git a/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction index 95b4780ec..36322edcb 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction @@ -1 +1,2 @@ -function makeup:skill/enemy/laser/loop/yellow_laser/spark \ No newline at end of file +#> ai:skill/laser/loop/yellow_laser/end +function makeup:skill/enemy/laser/loop/yellow_laser/spark diff --git a/data/ai/function/skill/laser/main/call_on_attack.mcfunction b/data/ai/function/skill/laser/main/call_on_attack.mcfunction index e6c06e48c..ed7a9a47d 100644 --- a/data/ai/function/skill/laser/main/call_on_attack.mcfunction +++ b/data/ai/function/skill/laser/main/call_on_attack.mcfunction @@ -1,4 +1,5 @@ +#> ai:skill/laser/main/call_on_attack execute if data storage mob_data: Call{Tags:[CallOnAttack]} store result score _ Calc run data get storage mob_data: Call.UUID[0] execute if data storage mob_data: Call{Tags:[CallOnAttack]} as @e[tag=CallOnAttack,distance=..64] run function enemy:ai/call/trigger/attack/projectile_source execute if data storage mob_data: Call{Tags:[CallOnAttackProjectile]} store result score _ Calc run data get storage mob_data: Call.Owner[0] -execute if data storage mob_data: Call{Tags:[CallOnAttackProjectile]} as @e[tag=CallOnAttack,distance=..64] run function enemy:ai/call/trigger/attack/projectile_source \ No newline at end of file +execute if data storage mob_data: Call{Tags:[CallOnAttackProjectile]} as @e[tag=CallOnAttack,distance=..64] run function enemy:ai/call/trigger/attack/projectile_source diff --git a/data/ai/function/skill/laser/main/damage.mcfunction b/data/ai/function/skill/laser/main/damage.mcfunction index e58885fe0..b5240dedc 100644 --- a/data/ai/function/skill/laser/main/damage.mcfunction +++ b/data/ai/function/skill/laser/main/damage.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/main/damage execute unless data storage score_damage: Argument{Damage:0} if entity @s[nbt=!{Health:0.0f}] run function score_damage:api/attack function skill:enemy/laser/main/call_on_attack execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit diff --git a/data/ai/function/skill/laser/main/fork.mcfunction b/data/ai/function/skill/laser/main/fork.mcfunction index fbc9cff98..31157a9b1 100644 --- a/data/ai/function/skill/laser/main/fork.mcfunction +++ b/data/ai/function/skill/laser/main/fork.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/main/fork execute if data storage mob_data: Call{Laser:"Test"} run function skill:enemy/laser/loop/test execute if data storage mob_data: Call{Laser:"PiglinSnipe"} run function skill:enemy/laser/loop/piglin_snipe/ execute if data storage mob_data: Call{Laser:"FrozenLaser"} run function skill:enemy/laser/loop/frozenlaser/ diff --git a/data/ai/function/skill/laser/main/init.mcfunction b/data/ai/function/skill/laser/main/init.mcfunction index da259d4e9..9932b973c 100644 --- a/data/ai/function/skill/laser/main/init.mcfunction +++ b/data/ai/function/skill/laser/main/init.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/laser/main/init #ダメージ設定 data modify storage score_damage: Argument set value {DamageType:[Global,Projectile]} data modify storage score_damage: Argument merge from storage mob_data: Call.Argument diff --git a/data/ai/function/skill/merge_nbt.mcfunction b/data/ai/function/skill/merge_nbt.mcfunction index f79725e41..73811f35a 100644 --- a/data/ai/function/skill/merge_nbt.mcfunction +++ b/data/ai/function/skill/merge_nbt.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/merge_nbt #NBTをマージ data modify entity @s {} merge from storage mob_data: Call.NBT diff --git a/data/ai/function/skill/message.mcfunction b/data/ai/function/skill/message.mcfunction index d33a8d2fa..65c3efbd1 100644 --- a/data/ai/function/skill/message.mcfunction +++ b/data/ai/function/skill/message.mcfunction @@ -1 +1,2 @@ +#> ai:skill/message tellraw @a[distance=..32] {"storage":"mob_data:","nbt":"Call.Message","interpret":true} diff --git a/data/ai/function/skill/parabolic_motion/.mcfunction b/data/ai/function/skill/parabolic_motion/.mcfunction index 5e04c5d48..63100f05c 100644 --- a/data/ai/function/skill/parabolic_motion/.mcfunction +++ b/data/ai/function/skill/parabolic_motion/.mcfunction @@ -23,4 +23,4 @@ execute if data storage mob_data: Call.MotionTick if data storage mob_data: Call.MotionGravity run function skill:enemy/parabolic_motion/core/ # リセット - data remove storage mob_data: Call \ No newline at end of file + data remove storage mob_data: Call diff --git a/data/ai/function/skill/reraise/.mcfunction b/data/ai/function/skill/reraise/.mcfunction index a3d53c320..1ddabc8fd 100644 --- a/data/ai/function/skill/reraise/.mcfunction +++ b/data/ai/function/skill/reraise/.mcfunction @@ -1,2 +1,2 @@ - -execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData run function skill:enemy/reraise/success \ No newline at end of file +#> ai:skill/reraise/ +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData run function skill:enemy/reraise/success diff --git a/data/ai/function/skill/reraise/death_cancel.mcfunction b/data/ai/function/skill/reraise/death_cancel.mcfunction index 3fe03f8c5..309078dc4 100644 --- a/data/ai/function/skill/reraise/death_cancel.mcfunction +++ b/data/ai/function/skill/reraise/death_cancel.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/reraise/death_cancel ############################## ### Reraise処理 ############################## diff --git a/data/ai/function/skill/reraise/health_recovery.mcfunction b/data/ai/function/skill/reraise/health_recovery.mcfunction index d08760023..375e34414 100644 --- a/data/ai/function/skill/reraise/health_recovery.mcfunction +++ b/data/ai/function/skill/reraise/health_recovery.mcfunction @@ -1,4 +1,4 @@ - +#> ai:skill/reraise/health_recovery # 倍率確認 scoreboard players set _ _ 100 scoreboard players set _ Calc 100 diff --git a/data/ai/function/skill/reraise/remove_raise.mcfunction b/data/ai/function/skill/reraise/remove_raise.mcfunction index f9423ae52..2682d5c07 100644 --- a/data/ai/function/skill/reraise/remove_raise.mcfunction +++ b/data/ai/function/skill/reraise/remove_raise.mcfunction @@ -1,5 +1,6 @@ +#> ai:skill/reraise/remove_raise ############################## ### Reraise削除処理 ############################## tag @s remove HasRaise -data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData \ No newline at end of file +data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData diff --git a/data/ai/function/skill/reraise/success.mcfunction b/data/ai/function/skill/reraise/success.mcfunction index 44d0a5a1a..10774a0c2 100644 --- a/data/ai/function/skill/reraise/success.mcfunction +++ b/data/ai/function/skill/reraise/success.mcfunction @@ -1,4 +1,5 @@ +#> ai:skill/reraise/success execute if data storage mob_data: Call.RaiseCount run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count set from storage mob_data: Call.RaiseCount execute if data storage mob_data: Call.HealthRecovery run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.HealthRecovery set from storage mob_data: Call.HealthRecovery execute unless data storage mob_data: Call.RaiseCount run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count set value 1 -tag @s add HasRaise \ No newline at end of file +tag @s add HasRaise diff --git a/data/ai/function/skill/rotate.mcfunction b/data/ai/function/skill/rotate.mcfunction index f3b405a51..abf6b846c 100644 --- a/data/ai/function/skill/rotate.mcfunction +++ b/data/ai/function/skill/rotate.mcfunction @@ -1,4 +1,4 @@ - +#> ai:skill/rotate #Horizontal execute store result score _ _ run data get storage mob_data: Call.Horizontal 100 execute store result score _ Calc run data get entity @s Rotation[0] 100 diff --git a/data/ai/function/skill/smart_motion/.mcfunction b/data/ai/function/skill/smart_motion/.mcfunction index 0318c062a..ae03dafd5 100644 --- a/data/ai/function/skill/smart_motion/.mcfunction +++ b/data/ai/function/skill/smart_motion/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/smart_motion/ #SmartMotion #TP diff --git a/data/ai/function/skill/smart_motion/gravity.mcfunction b/data/ai/function/skill/smart_motion/gravity.mcfunction index 1b3b30bdf..ab253108e 100644 --- a/data/ai/function/skill/smart_motion/gravity.mcfunction +++ b/data/ai/function/skill/smart_motion/gravity.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/smart_motion/gravity #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Gravity.Add execute store result score @s _ run data get storage mob_data: Call.Gravity.Range diff --git a/data/ai/function/skill/smart_motion/on_block.mcfunction b/data/ai/function/skill/smart_motion/on_block.mcfunction index 31966af55..8c6f14be1 100644 --- a/data/ai/function/skill/smart_motion/on_block.mcfunction +++ b/data/ai/function/skill/smart_motion/on_block.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/smart_motion/on_block #SmartMotion #OnBlock diff --git a/data/ai/function/skill/smart_motion/rotation.mcfunction b/data/ai/function/skill/smart_motion/rotation.mcfunction index 17019031c..0a8f7c999 100644 --- a/data/ai/function/skill/smart_motion/rotation.mcfunction +++ b/data/ai/function/skill/smart_motion/rotation.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/smart_motion/rotation #Horizontal execute store result score _ _ run data get storage mob_data: Call.Rotation.Horizontal 100 execute if data storage mob_data: Call.Rotation.Horizontal store result entity @s Rotation[0] float 0.01 run scoreboard players operation @s sm.RotationX += _ _ diff --git a/data/ai/function/skill/smart_motion/speed.mcfunction b/data/ai/function/skill/smart_motion/speed.mcfunction index e04a2927a..3082df829 100644 --- a/data/ai/function/skill/smart_motion/speed.mcfunction +++ b/data/ai/function/skill/smart_motion/speed.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/smart_motion/speed #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Speed.Add execute store result score @s _ run data get storage mob_data: Call.Speed.Range diff --git a/data/ai/function/skill/spawn/.mcfunction b/data/ai/function/skill/spawn/.mcfunction index 9c1d51faf..9cb8481e1 100644 --- a/data/ai/function/skill/spawn/.mcfunction +++ b/data/ai/function/skill/spawn/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/spawn/ summon armor_stand ~ ~ ~ {Tags:[Spawn],DeathTime:19s,NoAI:1b,Silent:1b,Invisible:1b,DisabledSlots:2097151,ArmorItems:[{},{},{},{id:"minecraft:stick",Count:1b,tag:{CustomModelData:1}}]} execute if data storage mob_data: Call.CountRange run function skill:enemy/spawn/count_range scoreboard players operation _ Level = @s Level diff --git a/data/ai/function/skill/spawn/apply.mcfunction b/data/ai/function/skill/spawn/apply.mcfunction index f988da30a..e0e658113 100644 --- a/data/ai/function/skill/spawn/apply.mcfunction +++ b/data/ai/function/skill/spawn/apply.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/spawn/apply data modify entity @s ArmorItems[3].tag set from storage mob_data: Call data modify entity @s ArmorItems[3].tag.CustomModelData set value 1 execute unless data storage mob_data: Call{NonParentLevel:true} run scoreboard players operation @s Level = _ Level diff --git a/data/ai/function/skill/spawn/child.mcfunction b/data/ai/function/skill/spawn/child.mcfunction index 7c27e67f7..fc69c508d 100644 --- a/data/ai/function/skill/spawn/child.mcfunction +++ b/data/ai/function/skill/spawn/child.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/spawn/child execute store result storage mob_data: ParentID int 1 run scoreboard players get @s OhMyDatID data modify storage mob_data: Call.SpawnEntities[][].ParentID set from storage mob_data: ParentID -tag @s add Parent \ No newline at end of file +tag @s add Parent diff --git a/data/ai/function/skill/spawn/count_range.mcfunction b/data/ai/function/skill/spawn/count_range.mcfunction index 7ac3d98f0..55a20c86f 100644 --- a/data/ai/function/skill/spawn/count_range.mcfunction +++ b/data/ai/function/skill/spawn/count_range.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/spawn/count_range #CountRange指定時はCountも指定すること execute store result score _ Calc run function calc:random execute store result score _ _ run data get storage mob_data: Call.CountRange diff --git a/data/ai/function/skill/step/.mcfunction b/data/ai/function/skill/step/.mcfunction index 4883f7c57..e69150184 100644 --- a/data/ai/function/skill/step/.mcfunction +++ b/data/ai/function/skill/step/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/step/ #向きを設定 function skill:enemy/step/direction #速度を設定 diff --git a/data/ai/function/skill/step/direction.mcfunction b/data/ai/function/skill/step/direction.mcfunction index dc59c7b37..a0603075e 100644 --- a/data/ai/function/skill/step/direction.mcfunction +++ b/data/ai/function/skill/step/direction.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/step/direction #向きを設定 execute positioned as @s run tp @s ~ ~ ~ ~ ~ #Marker召喚 diff --git a/data/ai/function/skill/step/range/direction.mcfunction b/data/ai/function/skill/step/range/direction.mcfunction index 2809d8427..0811bc3c0 100644 --- a/data/ai/function/skill/step/range/direction.mcfunction +++ b/data/ai/function/skill/step/range/direction.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/step/range/direction ### Directionに0~DirectionRangeを足す # 水平 execute store result score _ Calc run function calc:random diff --git a/data/ai/function/skill/step/range/speed.mcfunction b/data/ai/function/skill/step/range/speed.mcfunction index 30d469e47..3206709c8 100644 --- a/data/ai/function/skill/step/range/speed.mcfunction +++ b/data/ai/function/skill/step/range/speed.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/step/range/speed ### Speedに0~SpeedRangeを足す # 水平 execute store result score _ Calc run function calc:random diff --git a/data/ai/function/skill/step/set_motion.mcfunction b/data/ai/function/skill/step/set_motion.mcfunction index c3d53c711..4ed0a44e7 100644 --- a/data/ai/function/skill/step/set_motion.mcfunction +++ b/data/ai/function/skill/step/set_motion.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/step/set_motion execute if entity @s[type=!#entity:use_power_projectile] run data modify entity @s Motion set from entity 0-0-0-0-0 Pos -execute if entity @s[type=#entity:use_power_projectile] run data modify entity @s power set from entity 0-0-0-0-0 Pos \ No newline at end of file +execute if entity @s[type=#entity:use_power_projectile] run data modify entity @s power set from entity 0-0-0-0-0 Pos diff --git a/data/ai/function/skill/step/speed.mcfunction b/data/ai/function/skill/step/speed.mcfunction index cece88bad..e76fc2774 100644 --- a/data/ai/function/skill/step/speed.mcfunction +++ b/data/ai/function/skill/step/speed.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/step/speed #速度を設定 execute as 0-0-0-0-0 at @s run tp @s ^ ^ ^1 execute if data storage mob_data: Call.SpeedRange run function skill:enemy/step/range/speed @@ -7,4 +8,4 @@ execute store result entity 0-0-0-0-0 Pos[0] double 0.0001 run scoreboard player execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[1] 100 execute store result entity 0-0-0-0-0 Pos[1] double 0.0001 run scoreboard players operation _ Calc *= _ _ execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[2] 100 -execute store result entity 0-0-0-0-0 Pos[2] double 0.0001 run scoreboard players operation _ Calc *= _ _ \ No newline at end of file +execute store result entity 0-0-0-0-0 Pos[2] double 0.0001 run scoreboard players operation _ Calc *= _ _ diff --git a/data/ai/function/skill/teleport/.mcfunction b/data/ai/function/skill/teleport/.mcfunction index dd597cbd6..3aba68941 100644 --- a/data/ai/function/skill/teleport/.mcfunction +++ b/data/ai/function/skill/teleport/.mcfunction @@ -1,3 +1,4 @@ +#> ai:skill/teleport/ #実行位置にTPする ブロックにめり込む場合は後方に補正 function skill:enemy/teleport/loop #演出 diff --git a/data/ai/function/skill/teleport/loop.mcfunction b/data/ai/function/skill/teleport/loop.mcfunction index ef8741b15..23a6ef620 100644 --- a/data/ai/function/skill/teleport/loop.mcfunction +++ b/data/ai/function/skill/teleport/loop.mcfunction @@ -1,2 +1,3 @@ +#> ai:skill/teleport/loop execute if block ^ ^ ^ #block:no_collision run tp @s ^ ^ ^ execute unless block ^ ^ ^ #block:no_collision positioned ^ ^ ^-0.5 run function skill:enemy/teleport/loop From 606c7817b993fc59895041f9aeb3cfe0f185c071 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Mon, 28 Apr 2025 09:32:03 +0900 Subject: [PATCH 08/27] =?UTF-8?q?GH-790=20Modify=20CallSkill=E5=AE=9F?= =?UTF-8?q?=E8=A1=8C=E3=83=91=E3=82=B9=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/chatgpt-review.yml | 166 +++++++++--------- data/ai/function/call/call.mcfunction | 38 ++-- .../function/call/trigger/damage/.mcfunction | 2 +- .../function/skill/blink/activate/.mcfunction | 2 +- .../blink/activate/decorate/tick.mcfunction | 2 +- .../skill/blink/activate/roll.mcfunction | 2 +- .../skill/blink/activate/success.mcfunction | 2 +- data/ai/function/skill/blink/cast/.mcfunction | 2 +- .../skill/blink/cast/success.mcfunction | 2 +- .../ai/function/skill/change_move/.mcfunction | 10 +- .../skill/change_move/front.mcfunction | 2 +- .../skill/change_move/horizontal.mcfunction | 2 +- .../skill/change_move/side.mcfunction | 2 +- .../function/skill/change_move/up.mcfunction | 2 +- .../skill/change_move/vertical.mcfunction | 2 +- .../function/skill/change_status/.mcfunction | 14 +- .../skill/change_status/attack.mcfunction | 2 +- .../skill/change_status/defense.mcfunction | 2 +- .../skill/change_status/hp.mcfunction | 2 +- .../skill/change_status/level/.mcfunction | 4 +- .../change_status/magic_attack.mcfunction | 2 +- .../change_status/magic_defense.mcfunction | 2 +- .../skill/change_status/mp.mcfunction | 2 +- .../ai/function/skill/change_turn/.mcfunction | 4 +- data/ai/function/skill/damage/.mcfunction | 6 +- .../ai/function/skill/damage/apply.mcfunction | 6 +- .../skill/damage/can_be_blocked.mcfunction | 4 +- .../skill/damage/check_distance.mcfunction | 2 +- .../skill/damage/is_blocking.mcfunction | 2 +- .../skill/damage/is_player.mcfunction | 4 +- .../skill/damage/is_using_shield.mcfunction | 4 +- data/ai/function/skill/damage/mob.mcfunction | 2 +- .../function/skill/damage/player.mcfunction | 2 +- .../skill/delay_action/act/.mcfunction | 2 +- .../skill/delay_action/act/check/.mcfunction | 4 +- .../delay_action/act/check/loop.mcfunction | 6 +- .../delay_action/act/execute/.mcfunction | 8 +- .../act/execute/affect/.mcfunction | 4 +- .../act/execute/casting/.mcfunction | 30 ++-- .../act/execute/casting/cast/.mcfunction | 2 +- .../act/execute/casting/charge/.mcfunction | 2 +- .../execute/casting/charge/normal/.mcfunction | 2 +- .../execute/casting/laser_pointer/.mcfunction | 2 +- .../laser_pointer/red_dust/.mcfunction | 2 +- .../laser_pointer/red_dust/loop.mcfunction | 2 +- .../red_dust/loop_start.mcfunction | 4 +- .../act/execute/enemy/.mcfunction | 16 +- .../act/execute/enemy/abyss_mage/.mcfunction | 6 +- .../enemy/abyss_mage/abyss_magic.mcfunction | 4 +- .../act/execute/enemy/aurora_eye/.mcfunction | 8 +- .../execute/enemy/aurora_eye/shard.mcfunction | 4 +- .../execute/enemy/aurora_eye/zone.mcfunction | 4 +- .../act/execute/enemy/common/.mcfunction | 6 +- .../execute/enemy/common/paralyze.mcfunction | 4 +- .../act/execute/enemy/crimson_eye/.mcfunction | 4 +- .../act/execute/enemy/lunatic_eye/.mcfunction | 4 +- .../act/execute/enemy/ryomen/.mcfunction | 6 +- .../skill/delay_action/act/sort/.mcfunction | 2 +- .../delay_action/act/sort/loop.mcfunction | 4 +- .../skill/delay_action/append/.mcfunction | 8 +- .../delay_action/append/affect/.mcfunction | 4 +- .../delay_action/append/casting/.mcfunction | 30 ++-- .../append/casting/cast/.mcfunction | 2 +- .../append/casting/charge/.mcfunction | 2 +- .../append/casting/laser_pointer/.mcfunction | 2 +- .../delay_action/append/enemy/.mcfunction | 16 +- .../append/enemy/abyss_mage/.mcfunction | 6 +- .../enemy/abyss_mage/abyss_magic.mcfunction | 4 +- .../append/enemy/aurora_eye/.mcfunction | 8 +- .../append/enemy/aurora_eye/shard.mcfunction | 4 +- .../append/enemy/aurora_eye/zone.mcfunction | 4 +- .../append/enemy/common/.mcfunction | 6 +- .../append/enemy/common/paralyze.mcfunction | 4 +- .../append/enemy/crimson_eye/.mcfunction | 4 +- .../append/enemy/lunatic_eye/.mcfunction | 4 +- .../append/enemy/ryomen/.mcfunction | 6 +- .../skill/delay_action/append/loop.mcfunction | 8 +- .../delay_action/append/search.mcfunction | 4 +- .../skill/function/loot_add.mcfunction | 2 +- data/ai/function/skill/heal/.mcfunction | 2 +- data/ai/function/skill/heal/search.mcfunction | 2 +- .../function/skill/icicle_magic/.mcfunction | 2 +- .../skill/icicle_magic/icicle/.mcfunction | 2 +- .../icicle_magic/icicle_summoner/.mcfunction | 2 +- .../icicle_summoner/find_place/end.mcfunction | 2 +- .../find_place/start.mcfunction | 4 +- .../find_place_above/start.mcfunction | 4 +- .../icicle_summoner/place_icicle/.mcfunction | 8 +- .../schedule_loop/icicle.mcfunction | 4 +- .../schedule_loop/icicle_summoner.mcfunction | 4 +- .../skill/laser/loop/blue_laser/.mcfunction | 6 +- .../skill/laser/loop/frozenlaser/.mcfunction | 4 +- .../skill/laser/loop/green_laser/.mcfunction | 6 +- .../skill/laser/loop/kame_hame_ha/.mcfunction | 14 +- .../laser/loop/kame_hame_ha/1.mcfunction | 4 +- .../laser/loop/kame_hame_ha/2.mcfunction | 4 +- .../laser/loop/kame_hame_ha/3.mcfunction | 4 +- .../laser/loop/kame_hame_ha/4.mcfunction | 4 +- .../laser/loop/kame_hame_ha/5.mcfunction | 4 +- .../laser/loop/kame_hame_ha/6.mcfunction | 4 +- .../laser/loop/kame_hame_ha/7.mcfunction | 4 +- .../laser/loop/lightning_laser/.mcfunction | 4 +- .../skill/laser/loop/piglin_snipe/.mcfunction | 6 +- .../skill/laser/loop/red_laser/.mcfunction | 6 +- .../laser/loop/security_laser/.mcfunction | 4 +- .../loop/security_laser/dual/.mcfunction | 4 +- .../loop/security_laser/dual/1.mcfunction | 4 +- .../loop/security_laser/dual/2.mcfunction | 4 +- .../security_laser/dual/damage.mcfunction | 2 +- .../loop/security_laser/single/.mcfunction | 4 +- .../security_laser/single/damage.mcfunction | 2 +- .../function/skill/laser/loop/test.mcfunction | 4 +- .../skill/laser/loop/violet_laser/.mcfunction | 6 +- .../skill/laser/loop/white_laser/.mcfunction | 6 +- .../skill/laser/loop/yellow_laser/.mcfunction | 6 +- .../skill/laser/main/damage.mcfunction | 2 +- .../function/skill/laser/main/fork.mcfunction | 24 +-- .../function/skill/laser/main/init.mcfunction | 2 +- .../skill/parabolic_motion/.mcfunction | 4 +- .../skill/parabolic_motion/core/.mcfunction | 6 +- .../parabolic_motion/core/calc.mcfunction | 6 +- data/ai/function/skill/reraise/.mcfunction | 2 +- .../skill/reraise/death_cancel.mcfunction | 4 +- .../function/skill/smart_motion/.mcfunction | 8 +- .../skill/smart_motion/gravity.mcfunction | 2 +- .../skill/smart_motion/speed.mcfunction | 2 +- data/ai/function/skill/spawn/.mcfunction | 6 +- data/ai/function/skill/step/.mcfunction | 6 +- .../function/skill/step/direction.mcfunction | 2 +- data/ai/function/skill/step/speed.mcfunction | 2 +- data/ai/function/skill/teleport/.mcfunction | 2 +- .../function/skill/teleport/loop.mcfunction | 2 +- data/entity/function/death/check.mcfunction | 2 +- data/main/function/task/temporary.mcfunction | 6 +- .../common/condemnation/effect1.mcfunction | 2 +- 135 files changed, 411 insertions(+), 411 deletions(-) diff --git a/.github/workflows/chatgpt-review.yml b/.github/workflows/chatgpt-review.yml index 2f8c5e816..72747d8f4 100644 --- a/.github/workflows/chatgpt-review.yml +++ b/.github/workflows/chatgpt-review.yml @@ -17,14 +17,14 @@ permissions: jobs: review: - if: > + if: + > ( (github.event_name == 'issue_comment' && github.event.comment.body == '/review') || ( ! github.event.pull_request.merged && ! startsWith(github.event.pull_request.title, 'Merge') ) ) runs-on: ubuntu-latest - steps: - uses: anc95/ChatGPT-CodeReview@main env: @@ -37,7 +37,8 @@ jobs: temperature: 1 MAX_PATCH_LENGTH: 10000 IGNORE_PATTERNS: ./*,*.md - PROMPT: | + PROMPT: + | あなたはTUSBちゃんです。Minecraft配布ワールド『The Unusual SkyBlock』の専属AIコードレビュワーとして、以下のルールに従ってPRレビューをしてください。 あなたの目的は以下の通りです。TUSBのガイドラインに従って行動してください。 1. コード規約・ディレクトリ構成・データ管理ルールを統一し、開発規模が拡大しても整合性を維持できるようにする。 @@ -82,37 +83,37 @@ jobs: # TUSB用ルール策定・開発ガイド ## 1. 概要 - + - **目的**: 1. コード規約・ディレクトリ構成・データ管理ルールを統一し、開発規模が拡大しても整合性を維持できるようにする。 2. MOBのHP、職業スキル、デバフ・ギミック、エリア設計といったゲームバランス要素を共通指針でまとめ、プレイヤーに適切な難易度・プレイフィールを提供する。 3. 職業レベルやエンチャント・アイテム管理などの詳細ルールも含め、制作時の混乱を防ぐ。 - + --- - + ## 2. コード規約 - + ### 2-1. 命名規則 - + #### 2-1-1. 基本ルール - + 1. **使用文字** - ファイル名・フォルダ名は英数字(a-z, 0-9)およびアンダーバー(_)、ハイフン(-)のみ使用する。 - 大文字・小文字は厳密に区別するが、規約上は基本小文字に統一を推奨。 - + 2. **ケバブケース / スネークケース** - **namespace や大分類**ではスネークケース(snake_case)を推奨 (例: `enemy_ai`, `player_stat`)。 - **複数単語**を繋ぐ際に `_` や `-` を使う場面もあるが、既存ルールとの整合を優先。 - + 3. **先頭大文字やCamelケース** - データパックフォルダ等は小文字推奨。ただし、**MOBスプレッドシート由来のタグ指定**(例: `[Global,Ground,Blow,Sinensama]`)はプロジェクト内ルールに従う。 - + 4. **分かりやすさの重視** - 短くすぎる名称や過度に長い名称は避ける。 - ファイル・function・タグなどに意図が伝わる名前を付与。 - + #### 2-1-2. 具体例 - + - **MOBフォルダ例**: ``` data/ @@ -132,16 +133,16 @@ jobs: ``` - **function名例**: - `enemy:ai/call/condition/random_chance` - - `skill:enemy/laser/loop/security_laser` + - `ai:skill/laser/loop/security_laser` - **アイテムID例**: - `tusb:legendary_sword` などで衝突を防ぐ。 - + --- - + ### 2-2. ファイル構成 - + #### 2-2-1. データパックの構造 (Minecraft 1.12.1相当) - + ``` /data ├─ skill/ @@ -156,40 +157,40 @@ jobs: ├─ area/ └─ ... ``` - + #### 2-2-2. シート出力との連携 - + - **MOB管理シート** - `(Dimension)/(Group)/(AI)/(SubFolder)/(NameUS).mcfunction` にAIやステータスを記述。 - `_init`, `_death` などの枝分かれfunctionを付与可能。 - + - **スキル(CallSkill)管理シート** - CallSkill や CallCondition を function 化してフォルダ分け。 - + - **アイテム管理シート** - 1アイテムにつき function1つ + loot table1つを生成。 - `item:item//<特殊アイテムUS名>.json` のフォーマットが標準。 - + #### 2-2-3. データ管理ルール - + 1. **scoreboard / ストレージを用途別に分割** - `mob_data:`, `calc:`, `skill:` など名前空間を明確にし、干渉を防止。 - + 2. **functionの分割** - 1つのfunctionが肥大化しすぎないようにし、`execute if ... run function ...` で連携させる。 - + 3. **Tagとscoreboard** - 一時フラグならTag、大量のビットフラグ管理が必要ならscoreboard(bit演算)を用いる。 - + 4. **NBTキー衝突回避** - 独自の`PortalCooldown`などがバニラ挙動と干渉しないよう注意。 - + --- - + ### 2-3. AttributeModifiersのUUID設定 - + TUSBでは、**AttributeModifiers** の UUID 重複による誤作動を防ぐため、一意の形式に統一しています。 - + 1. **UUID記述形式** ``` UUID:[I; A,0,C,D] @@ -197,9 +198,9 @@ jobs: - `A`: スロット指定 (下表) - `C`: Attribute由来(0:カスタム,1:デフォルト,2:エンチャ,3:魂系印判) - `D`: Attribute種類(十の位+一の位) or エンチャID - + 2. **A: スロット** - + | Slot | Aの値 | |-----------|:----:| | mainhand | 11 | @@ -208,16 +209,16 @@ jobs: | chest | 22 | | legs | 23 | | feet | 24 | - + 3. **C: Attribute由来** - + | Name | Cの値 | 概要 | |--------------|:----:|------------------------| | カスタム | 0 | シート等カスタム | | デフォルト | 1 | 装備に元から付く値 | | エンチャント | 2 | エンチャ由来 | | 魂系印判 | 3 | 魂系印判による特殊 | - + 4. **D: Attribute種類** - **カスタム/デフォルト**の場合: ``` @@ -232,36 +233,36 @@ jobs: ``` 一の位に Operation(0=+X,1=+X%,2=×X%)を加える (例: attack_speed+Operation2 => D=52)。 - **エンチャント**(C=2)の場合: DにエンチャントID(数値)を指定。 - + --- - + ## 3. ゲームバランス調整 - + ### 3-1. MOBのHP調整 - + **アイテム(装備)の強度**に合わせてMOB HPを設定する。 推奨HPは以下: - + - **序盤 (バベル、道場 など)**: 100~500HP - **中盤 (地下世界、ガリバーランド、ネザー、クラウディア など)**: 500~3000HP - **終盤 (砂漠、月、トカルトコルデ、煉獄、END など)**: 3000HP以上 - + ボス等の特例を除き、HPインフレのしすぎは避ける。 - + ### 3-2. 職業スキル - + 1. **Lv上限は50** (スキル習得)。 2. **Lv51以降はLv100まで成長可能**: レベルアップごとにステータスポイントを1獲得し、自由に割り振る。 3. **Lv差による経験値ボーナス**を導入し、高Lvと低Lvの差が埋めやすい設計。 - + **打撃武器の弱点への対応** - 属性エンチャントやTUSBメモリーを活用し、物理火力を底上げ可能にする。 - 制作時点で飛び道具エンチャなどに制限を設ける場合は、関連functionを整備する。 - + ### 3-3. 職業情報 - + 以下に、**v13時点で選択可能な6職**をテーブル形式でまとめます。 - + | 職業名 | 戦闘スタイル | スキル・特徴 | |:---------:|:---------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | **剣士** | 近接戦闘のエキスパート。剣・盾を主体に戦う。 | - 防御スキルが充実し、安定した立ち回りを可能にする。
- 鍛冶スキルで装備の耐久補強や強化が期待できる。 | @@ -270,13 +271,13 @@ jobs: | **白魔導士** | 支援・回復を中心とした魔法職。 | - 人参棒で味方や自分を回復・デバフ解除できる。
- 光属性攻撃も扱い、遠距離支援や対闇属性に強みを発揮。 | | **黒魔導士** | 範囲魔法攻撃に特化した魔法職。 | - 火・氷・雷などの属性攻撃を一括で運用できる。
- MPコストが重く、設置数にも限りがあるが、攻撃力は高い。
- 農業や植物成長の補助スキルも所持。 | | **召喚士** | 自身の周りに召喚体を呼び出し、複数同時運用する。 | - 人参棒でワンマン部隊を形成し、多角的に攻撃や補助を行える。
- 移動面やブロック設置系スキルもあり、建築・通路作成に長ける。
- 全体的に癖があるが、扱いに慣れると高い汎用性を持つ。 | - + --- - + ## 4. デバフやギミック - + ### 4-1. 特殊デバフ一覧 - + | デバフ名 | 効果 | 代表的解除手段 | 属性 | |-----------------------|----------------------------------------------------|----------------------------|------------| | **死の宣告**(10 or 3) | カウントダウン終了で即死 | 聖水使用 | なし | @@ -289,47 +290,47 @@ jobs: | **トント** | 一定回数被弾すると即爆発し大ダメージ | 水に入る | なし | | **ペイル** | 最大HPを割合で減少。死んでも解除されない | 温泉入浴 or 特定アイテム | なし | | **衰弱** | 現在HPを即時に20.0(1列)まで削る | 即時効果のみ(回復自由) | なし | - + ### 4-2. 代表的ギミック - + - **松明=体温(トカルトコルデ)**: 時間経過や水接触で松明が減り、0で凍傷ダメージを受ける。 - **酸床(砂漠地下)**: 上に立つと継続ダメージを受ける。 - **ネザーラック破壊爆発(ネザー)**: ブロック破壊で小規模爆発が起こり、思わぬダメージに繋がる。 - **溶岩に触れると大ダメージ**: 主にネザー・煉獄で脅威。 - **スキル使用不可ゾーン**など、エリア固有の仕掛けが存在する場合あり。 - + --- - + ## 5. アイテム管理規約 - + 1. **不要アイテムの排除** - 古い12vアイテムは廃止し、必要なものだけ導入。 - 中途半端な試作アイテムを誤って投入しないよう注意。 - + 2. **エンチャントはプレイヤー任意で付与** - 原則すべてのエンチャントを解放するが、トライデント系など任意座標に雷を落とす等のエンチャント等は制限。 - 飛び道具系エンチャントにも制限を設けることがある。 - + 3. **TUSBメモリーの活用** - 武器火力の補強や一時的な属性強化に使用できる。 - デバッグ時には制作者同士で使いすぎないよう注意。 - + --- - + ## 6. エリア概要 - + ### 6-1. 序盤 - + - **バベル** - 塔形式。最初期の大規模ダンジョン。 - HP 100~500帯の敵が多い。 - + - **道場** - 井戸から移動可能で難度が低い。 - 基本アドベンチャー操作の習得向け。 - + ### 6-2. 中盤 - + - **地下世界** - 暗く湿った地底を探索。毒沼や水が頻繁に登場。 - HP 500~3000の敵が多い。 @@ -339,17 +340,17 @@ jobs: - 火山・溶岩地帯が主体。ネザーラック破壊爆発あり。 - **クラウディア** - 雲の世界。エンダーパール移動を多用。 - + ### 6-3. 中~終盤 - + - **トカルトコルデ** - 極寒地獄。松明(体温)が尽きると凍傷ダメージ。 - HPが3000以上の敵が出現し始める。 - **煉獄** - 灼熱迷宮。溶岩ダメージが凶悪。 - + ### 6-4. 終盤 - + - **砂漠** (地上/地下) - 追憶の海(地上)や微睡の海溝(地下)。酸床で足場ダメージ。 - MOBは3000HP超も頻出。 @@ -358,42 +359,41 @@ jobs: - 一部エリアでスキル制限も検討中。 - **END** - 本編ラスト付近。特殊ギミック多数。 - + ### 6-5. エンドコンテンツ - + - **無限奈落** - 底なしの縦穴。高Lvプレイヤー向けの連戦が続く。 - **裏劇場** - 表劇場クリア後に挑戦可能。最高難度の連戦ダンジョン。 - + --- - + ## 7. 総合まとめ - + 1. **コード規約(命名・ファイル構成・Attribute UUID等)** - スネークケース・名前空間整理を徹底し、大規模functionを衝突なく管理する。 - + 2. **MOB HP基準** - 序盤は100~500HP、中盤500~3000HP、終盤は3000以上を目安に。 - ボスMOBを除き、過度なHPインフレは避ける。 - + 3. **職業スキル** - Lv50までがスキル習得ライン、Lv100まで成長。Lv51以降はステ振り。 - Lv差経験値ボーナスで格差を埋めやすくする。 - + 4. **デバフ・ギミック** - 凍結・麻痺・混乱・呪詛・火だるま・トント・ペイルなど多彩な効果が存在。 - トントは一定被弾で爆発するため、水に入ることで解除。 - ギミック(松明=体温、酸床、溶岩、ネザーラック破壊爆発など)と合わせて攻略に厚みを持たせる。 - + 5. **アイテム管理** - 不要な旧版アイテムを排除し、必要なアイテムのみ導入。 - エンチャントはプレイヤーが自由に付与(一部制限あり)。 - 属性強化・追加効果などはTUSBメモリーで補う。 - + 6. **エリア構成** - 序盤: バベル / 道場 → 中盤: 地下世界 / ガリバーランド / ネザー / クラウディア → 中~終盤: トカルトコルデ / 煉獄 → 終盤: 砂漠 / 月 / END → エンドコンテンツ: 無限奈落 / 裏劇場。 - ダンジョン構造に応じてHPやデバフを使い分ける。 - + **本ガイドを遵守してTUSB v13のコンテンツ制作を進めることで、プレイヤーが多彩な職業・ギミック・デバフを駆使して攻略できる、奥深いゲーム体験を提供できるはずです。** - diff --git a/data/ai/function/call/call.mcfunction b/data/ai/function/call/call.mcfunction index 2b20e3bdc..3ec471e6c 100644 --- a/data/ai/function/call/call.mcfunction +++ b/data/ai/function/call/call.mcfunction @@ -1,21 +1,21 @@ #> ai:call/call execute if data storage mob_data: Call{Name:"Kill"} run tag @s add Garbage -execute if data storage mob_data: Call{Name:"Spawn"} run function skill:enemy/spawn/ -execute if data storage mob_data: Call{Name:"Step"} run function skill:enemy/step/ -execute if data storage mob_data: Call{Name:"ChangeTurn"} run function skill:enemy/change_turn/ -execute if data storage mob_data: Call{Name:"ChangeMove"} run function skill:enemy/change_move/ -execute if data storage mob_data: Call{Name:"ChangeAI"} run function skill:enemy/change_ai -execute if data storage mob_data: Call{Name:"ChangeStatus"} run function skill:enemy/change_status/ -execute if data storage mob_data: Call{Name:"MergeNBT"} run function skill:enemy/merge_nbt -execute if data storage mob_data: Call{Name:"Teleport"} unless entity @s[tag=TargetChanged,tag=Unmoved] run function skill:enemy/teleport/ -execute if data storage mob_data: Call{Name:"Message"} run function skill:enemy/message -execute if data storage mob_data: Call{Name:"Function"} run function skill:enemy/function/ -execute if data storage mob_data: Call{Name:"DelayAction"} run function skill:enemy/delay_action/append/ -execute if data storage mob_data: Call{Name:"Damage"} run function skill:enemy/damage/ -execute if data storage mob_data: Call{Name:"Blink"} run function skill:enemy/blink/cast/ -execute if data storage mob_data: Call{Name:"Laser"} run function skill:enemy/laser/main/init -execute if data storage mob_data: Call{Name:"Rotate"} run function skill:enemy/rotate -execute if data storage mob_data: Call{Name:"Heal"} run function skill:enemy/heal/ -execute if data storage mob_data: Call{Name:"SmartMotion"} unless entity @s[tag=TargetChanged,tag=Unmoved] run function skill:enemy/smart_motion/ -execute if data storage mob_data: Call{Name:"Reraise"} run function skill:enemy/reraise/ -execute if data storage mob_data: Call{Name:"Parabolic"} run function skill:enemy/parabolic_motion/ +execute if data storage mob_data: Call{Name:"Spawn"} run function ai:skill/spawn/ +execute if data storage mob_data: Call{Name:"Step"} run function ai:skill/step/ +execute if data storage mob_data: Call{Name:"ChangeTurn"} run function ai:skill/change_turn/ +execute if data storage mob_data: Call{Name:"ChangeMove"} run function ai:skill/change_move/ +execute if data storage mob_data: Call{Name:"ChangeAI"} run function ai:skill/change_ai +execute if data storage mob_data: Call{Name:"ChangeStatus"} run function ai:skill/change_status/ +execute if data storage mob_data: Call{Name:"MergeNBT"} run function ai:skill/merge_nbt +execute if data storage mob_data: Call{Name:"Teleport"} unless entity @s[tag=TargetChanged,tag=Unmoved] run function ai:skill/teleport/ +execute if data storage mob_data: Call{Name:"Message"} run function ai:skill/message +execute if data storage mob_data: Call{Name:"Function"} run function ai:skill/function/ +execute if data storage mob_data: Call{Name:"DelayAction"} run function ai:skill/delay_action/append/ +execute if data storage mob_data: Call{Name:"Damage"} run function ai:skill/damage/ +execute if data storage mob_data: Call{Name:"Blink"} run function ai:skill/blink/cast/ +execute if data storage mob_data: Call{Name:"Laser"} run function ai:skill/laser/main/init +execute if data storage mob_data: Call{Name:"Rotate"} run function ai:skill/rotate +execute if data storage mob_data: Call{Name:"Heal"} run function ai:skill/heal/ +execute if data storage mob_data: Call{Name:"SmartMotion"} unless entity @s[tag=TargetChanged,tag=Unmoved] run function ai:skill/smart_motion/ +execute if data storage mob_data: Call{Name:"Reraise"} run function ai:skill/reraise/ +execute if data storage mob_data: Call{Name:"Parabolic"} run function ai:skill/parabolic_motion/ diff --git a/data/ai/function/call/trigger/damage/.mcfunction b/data/ai/function/call/trigger/damage/.mcfunction index 0fcb06d3f..3ea782e16 100644 --- a/data/ai/function/call/trigger/damage/.mcfunction +++ b/data/ai/function/call/trigger/damage/.mcfunction @@ -3,7 +3,7 @@ function #oh_my_dat:please data modify storage mob_data: AI set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI data modify storage mob_data: CallList set from storage mob_data: AI.Damage ##幻影呼び出し -execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function skill:enemy/blink/activate/ +execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function ai:skill/blink/activate/ function ai:call/execute/ data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/blink/activate/.mcfunction b/data/ai/function/skill/blink/activate/.mcfunction index 36b80361c..70a863899 100644 --- a/data/ai/function/skill/blink/activate/.mcfunction +++ b/data/ai/function/skill/blink/activate/.mcfunction @@ -5,4 +5,4 @@ data modify storage mob_data: Blink set from storage oh_my_dat: _[-4][-4][-4][-4 execute if entity @s[tag=ReceivedPhysicalDamage] if data storage mob_data: Blink{TriggerOn:[Physical]} run scoreboard players set @s _ 1 -execute if score @s _ matches 1 run function skill:enemy/blink/activate/roll +execute if score @s _ matches 1 run function ai:skill/blink/activate/roll diff --git a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction index c8dbf0b93..3555165f0 100644 --- a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction +++ b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction @@ -9,5 +9,5 @@ execute if score @s BlinkSubTimer matches 2 run tp @s ~0.4 ~ ~ execute if score @s BlinkSubTimer matches 1 run tp @s ~-0.2 ~ ~-0.2 execute if score @s BlinkSubTimer matches 1..6 anchored eyes run function makeup:skill/enemy/blink/activate/1 -execute if score @s BlinkSubTimer matches 1 run function skill:enemy/blink/activate/decorate/finalize +execute if score @s BlinkSubTimer matches 1 run function ai:skill/blink/activate/decorate/finalize diff --git a/data/ai/function/skill/blink/activate/roll.mcfunction b/data/ai/function/skill/blink/activate/roll.mcfunction index 8e54d312e..a9be3124e 100644 --- a/data/ai/function/skill/blink/activate/roll.mcfunction +++ b/data/ai/function/skill/blink/activate/roll.mcfunction @@ -5,4 +5,4 @@ scoreboard players set _ _ 10000 #Calc %= 10000 scoreboard players operation _ Calc %= _ _ -execute if score @s _ > _ Calc run function skill:enemy/blink/activate/success +execute if score @s _ > _ Calc run function ai:skill/blink/activate/success diff --git a/data/ai/function/skill/blink/activate/success.mcfunction b/data/ai/function/skill/blink/activate/success.mcfunction index 86d85c230..440784a6f 100644 --- a/data/ai/function/skill/blink/activate/success.mcfunction +++ b/data/ai/function/skill/blink/activate/success.mcfunction @@ -4,4 +4,4 @@ scoreboard players reset @s Damage execute if data storage mob_data: Blink{Count:0} run data remove storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink execute unless data storage mob_data: Blink{Count:0} run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink -function skill:enemy/blink/activate/decorate/initialize +function ai:skill/blink/activate/decorate/initialize diff --git a/data/ai/function/skill/blink/cast/.mcfunction b/data/ai/function/skill/blink/cast/.mcfunction index ebf1b884f..4451aa930 100644 --- a/data/ai/function/skill/blink/cast/.mcfunction +++ b/data/ai/function/skill/blink/cast/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/blink/cast/ -execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function skill:enemy/blink/cast/success +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink run function ai:skill/blink/cast/success diff --git a/data/ai/function/skill/blink/cast/success.mcfunction b/data/ai/function/skill/blink/cast/success.mcfunction index bc544aad7..a60b453b2 100644 --- a/data/ai/function/skill/blink/cast/success.mcfunction +++ b/data/ai/function/skill/blink/cast/success.mcfunction @@ -3,7 +3,7 @@ data remove storage mob_data: Blink data merge storage mob_data: {Blink:{Count:0,Chance:0.0000d}} data modify storage mob_data: Blink.Count set from storage mob_data: Call.Count data modify storage mob_data: Blink.Chance set from storage mob_data: Call.Chance -execute unless data storage mob_data: Call.TriggerOn run function skill:enemy/blink/cast/default +execute unless data storage mob_data: Call.TriggerOn run function ai:skill/blink/cast/default data modify storage mob_data: Blink.TriggerOn set from storage mob_data: Call.TriggerOn data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink diff --git a/data/ai/function/skill/change_move/.mcfunction b/data/ai/function/skill/change_move/.mcfunction index ab4f4f3b5..e1e792b8a 100644 --- a/data/ai/function/skill/change_move/.mcfunction +++ b/data/ai/function/skill/change_move/.mcfunction @@ -1,9 +1,9 @@ #> ai:skill/change_move/ -execute if data storage mob_data: Call.Front run function skill:enemy/change_move/front -execute if data storage mob_data: Call.Side run function skill:enemy/change_move/side -execute if data storage mob_data: Call.Up run function skill:enemy/change_move/up -execute if data storage mob_data: Call.Horizontal run function skill:enemy/change_move/horizontal -execute if data storage mob_data: Call.Vertical run function skill:enemy/change_move/vertical +execute if data storage mob_data: Call.Front run function ai:skill/change_move/front +execute if data storage mob_data: Call.Side run function ai:skill/change_move/side +execute if data storage mob_data: Call.Up run function ai:skill/change_move/up +execute if data storage mob_data: Call.Horizontal run function ai:skill/change_move/horizontal +execute if data storage mob_data: Call.Vertical run function ai:skill/change_move/vertical #データを元に戻す data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/change_move/front.mcfunction b/data/ai/function/skill/change_move/front.mcfunction index 55cd60cf8..f2808f3dd 100644 --- a/data/ai/function/skill/change_move/front.mcfunction +++ b/data/ai/function/skill/change_move/front.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Front.Add 100 execute store result score @s _ run data get storage mob_data: Call.Front.Range 100 -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Front 100 execute if data storage mob_data: Call.Front.Set store result score _ Calc run data get storage mob_data: Call.Front.Set 100 scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_move/horizontal.mcfunction b/data/ai/function/skill/change_move/horizontal.mcfunction index 32deb5996..14ea69c8a 100644 --- a/data/ai/function/skill/change_move/horizontal.mcfunction +++ b/data/ai/function/skill/change_move/horizontal.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Horizontal.Add 100 execute store result score @s _ run data get storage mob_data: Call.Horizontal.Range 100 -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Rotate[0] 100 execute if data storage mob_data: Call.Horizontal.Set store result score _ Calc run data get storage mob_data: Call.Horizontal.Set 100 scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_move/side.mcfunction b/data/ai/function/skill/change_move/side.mcfunction index bc34a6ea0..9f1594084 100644 --- a/data/ai/function/skill/change_move/side.mcfunction +++ b/data/ai/function/skill/change_move/side.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Side.Add 100 execute store result score @s _ run data get storage mob_data: Call.Side.Range 100 -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Side 100 execute if data storage mob_data: Call.Side.Set store result score _ Calc run data get storage mob_data: Call.Side.Set 100 scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_move/up.mcfunction b/data/ai/function/skill/change_move/up.mcfunction index fdc82e4c1..d9bf76042 100644 --- a/data/ai/function/skill/change_move/up.mcfunction +++ b/data/ai/function/skill/change_move/up.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Up.Add 100 execute store result score @s _ run data get storage mob_data: Call.Up.Range 100 -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Up 100 execute if data storage mob_data: Call.Up.Set store result score _ Calc run data get storage mob_data: Call.Up.Set 100 scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_move/vertical.mcfunction b/data/ai/function/skill/change_move/vertical.mcfunction index 163465262..7f45f582c 100644 --- a/data/ai/function/skill/change_move/vertical.mcfunction +++ b/data/ai/function/skill/change_move/vertical.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Vertical.Add 100 execute store result score @s _ run data get storage mob_data: Call.Vertical.Range 100 -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Rotate[1] 100 execute if data storage mob_data: Call.Vertical.Set store result score _ Calc run data get storage mob_data: Call.Vertical.Set 100 scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/.mcfunction b/data/ai/function/skill/change_status/.mcfunction index e37c5051f..55c970f13 100644 --- a/data/ai/function/skill/change_status/.mcfunction +++ b/data/ai/function/skill/change_status/.mcfunction @@ -1,13 +1,13 @@ #> ai:skill/change_status/ data modify storage tusb_mob: "遅延ステータス"."ステータス" set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス" -execute if data storage mob_data: Call.Level run function skill:enemy/change_status/level/ -execute if data storage mob_data: Call.HP run function skill:enemy/change_status/hp -execute if data storage mob_data: Call.MP run function skill:enemy/change_status/mp -execute if data storage mob_data: Call.Attack run function skill:enemy/change_status/attack -execute if data storage mob_data: Call.Defense run function skill:enemy/change_status/defense -execute if data storage mob_data: Call.MagicAttack run function skill:enemy/change_status/magic_attack -execute if data storage mob_data: Call.MagicDefence run function skill:enemy/change_status/magic_defense +execute if data storage mob_data: Call.Level run function ai:skill/change_status/level/ +execute if data storage mob_data: Call.HP run function ai:skill/change_status/hp +execute if data storage mob_data: Call.MP run function ai:skill/change_status/mp +execute if data storage mob_data: Call.Attack run function ai:skill/change_status/attack +execute if data storage mob_data: Call.Defense run function ai:skill/change_status/defense +execute if data storage mob_data: Call.MagicAttack run function ai:skill/change_status/magic_attack +execute if data storage mob_data: Call.MagicDefence run function ai:skill/change_status/magic_defense #データを元に戻す data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス" set from storage tusb_mob: "遅延ステータス"."ステータス" diff --git a/data/ai/function/skill/change_status/attack.mcfunction b/data/ai/function/skill/change_status/attack.mcfunction index da954e950..59871ab32 100644 --- a/data/ai/function/skill/change_status/attack.mcfunction +++ b/data/ai/function/skill/change_status/attack.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Attack.Add execute store result score @s _ run data get storage mob_data: Call.Attack.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."物理攻撃力" execute if data storage mob_data: Call.Attack.Set store result score _ Calc run data get storage mob_data: Call.Attack.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/defense.mcfunction b/data/ai/function/skill/change_status/defense.mcfunction index 3153704e2..b6c4747a2 100644 --- a/data/ai/function/skill/change_status/defense.mcfunction +++ b/data/ai/function/skill/change_status/defense.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Defense.Add execute store result score @s _ run data get storage mob_data: Call.Defense.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."物理防御力" execute if data storage mob_data: Call.Defense.Set store result score _ Calc run data get storage mob_data: Call.Defense.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/hp.mcfunction b/data/ai/function/skill/change_status/hp.mcfunction index 6d70a0fc7..99eb61377 100644 --- a/data/ai/function/skill/change_status/hp.mcfunction +++ b/data/ai/function/skill/change_status/hp.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.HP.Add execute store result score @s _ run data get storage mob_data: Call.HP.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."最大HP" execute if data storage mob_data: Call.HP.Set store result score _ Calc run data get storage mob_data: Call.HP.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/level/.mcfunction b/data/ai/function/skill/change_status/level/.mcfunction index 9b5aa0973..a9bb9ed3a 100644 --- a/data/ai/function/skill/change_status/level/.mcfunction +++ b/data/ai/function/skill/change_status/level/.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Level.Add execute store result score @s _ run data get storage mob_data: Call.Level.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute if data storage mob_data: Call.Level.Set store result score @s Level run data get storage mob_data: Call.Level.Set scoreboard players operation @s Level += @s Calc #Limit @@ -29,4 +29,4 @@ function entity:spawn/apply_status/status/mp scoreboard players operation @s MP *= @s MPMax scoreboard players operation @s MP /= _ _ #名前の修正 -execute if entity @s[tag=!HideLevel] run function skill:enemy/change_status/level/rename +execute if entity @s[tag=!HideLevel] run function ai:skill/change_status/level/rename diff --git a/data/ai/function/skill/change_status/magic_attack.mcfunction b/data/ai/function/skill/change_status/magic_attack.mcfunction index d540bd426..1117eaa27 100644 --- a/data/ai/function/skill/change_status/magic_attack.mcfunction +++ b/data/ai/function/skill/change_status/magic_attack.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MagicAttack.Add execute store result score @s _ run data get storage mob_data: Call.MagicAttack.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法攻撃力" execute if data storage mob_data: Call.MagicAttack.Set store result score _ Calc run data get storage mob_data: Call.MagicAttack.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/magic_defense.mcfunction b/data/ai/function/skill/change_status/magic_defense.mcfunction index 139145e67..8a377d095 100644 --- a/data/ai/function/skill/change_status/magic_defense.mcfunction +++ b/data/ai/function/skill/change_status/magic_defense.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MagicDefence.Add execute store result score @s _ run data get storage mob_data: Call.MagicDefence.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法防御力" execute if data storage mob_data: Call.MagicDefence.Set store result score _ Calc run data get storage mob_data: Call.MagicDefence.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/mp.mcfunction b/data/ai/function/skill/change_status/mp.mcfunction index 03a7c9fd6..6978f0b49 100644 --- a/data/ai/function/skill/change_status/mp.mcfunction +++ b/data/ai/function/skill/change_status/mp.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MP.Add execute store result score @s _ run data get storage mob_data: Call.MP.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."最大MP" execute if data storage mob_data: Call.MP.Set store result score _ Calc run data get storage mob_data: Call.MP.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_turn/.mcfunction b/data/ai/function/skill/change_turn/.mcfunction index 8f5d5d7b0..55f036ec1 100644 --- a/data/ai/function/skill/change_turn/.mcfunction +++ b/data/ai/function/skill/change_turn/.mcfunction @@ -5,7 +5,7 @@ data modify storage mob_data: AI.Turn[0].Exit.ChangeTurn set value 1b execute if data storage mob_data: AI.Turn[0].Once store result storage mob_data: AI.Turn[0].Once int 0.99999 run data get storage mob_data: AI.Turn[0].Once #AI.ChangeTurnにターンを進める回数を保存する execute if data storage mob_data: Call.Loop run data modify storage mob_data: AI.ChangeTurn set from storage mob_data: Call.Loop -execute if data storage mob_data: Call.Set run function skill:enemy/change_turn/set -execute if data storage mob_data: Call.Random run function skill:enemy/change_turn/random +execute if data storage mob_data: Call.Set run function ai:skill/change_turn/set +execute if data storage mob_data: Call.Random run function ai:skill/change_turn/random #データを元に戻す data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/damage/.mcfunction b/data/ai/function/skill/damage/.mcfunction index e9cefe2ab..fcad9356f 100644 --- a/data/ai/function/skill/damage/.mcfunction +++ b/data/ai/function/skill/damage/.mcfunction @@ -8,17 +8,17 @@ function skill:damage/add/skill/normal data modify storage score_damage: Argument set value {Damage:0d} # Enemyへダメージ -execute if data storage mob_data: Call.Mob run function skill:enemy/damage/mob +execute if data storage mob_data: Call.Mob run function ai:skill/damage/mob # FriendlyかつEnemyに対して二重付与しないように初期化 data modify storage skill: damage set value {Physical:0,Fire:0,Ice:0,Lightning:0,Light:0,Dark:0} function skill:damage/add/skill/normal # Friendlyへダメージ -execute if data storage mob_data: Call.Player run function skill:enemy/damage/player +execute if data storage mob_data: Call.Player run function ai:skill/damage/player # 爆発 -execute if data storage mob_data: Call.Explosion run function skill:enemy/damage/explosion +execute if data storage mob_data: Call.Explosion run function ai:skill/damage/explosion #MPを吸収 scoreboard players operation @s MP += _ MPMax diff --git a/data/ai/function/skill/damage/apply.mcfunction b/data/ai/function/skill/damage/apply.mcfunction index 53e43939b..1734bb391 100644 --- a/data/ai/function/skill/damage/apply.mcfunction +++ b/data/ai/function/skill/damage/apply.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/damage/apply execute if entity @s[tag=Enemy] run function skill:damage/apply/ -execute if entity @s[predicate=entity:friendly] run function skill:enemy/damage/is_player -execute if data storage mob_data: Call.AEC positioned as @s run function skill:enemy/damage/aec -execute if data storage mob_data: Call.MP run function skill:enemy/damage/mp +execute if entity @s[predicate=entity:friendly] run function ai:skill/damage/is_player +execute if data storage mob_data: Call.AEC positioned as @s run function ai:skill/damage/aec +execute if data storage mob_data: Call.MP run function ai:skill/damage/mp diff --git a/data/ai/function/skill/damage/can_be_blocked.mcfunction b/data/ai/function/skill/damage/can_be_blocked.mcfunction index ff466717d..799ff0475 100644 --- a/data/ai/function/skill/damage/can_be_blocked.mcfunction +++ b/data/ai/function/skill/damage/can_be_blocked.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/damage/can_be_blocked -execute unless data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/is_using_shield -execute if data storage score_damage: Argument{CanBeBlocked:false} run function skill:enemy/damage/apply_to_player +execute unless data storage score_damage: Argument{CanBeBlocked:false} run function ai:skill/damage/is_using_shield +execute if data storage score_damage: Argument{CanBeBlocked:false} run function ai:skill/damage/apply_to_player diff --git a/data/ai/function/skill/damage/check_distance.mcfunction b/data/ai/function/skill/damage/check_distance.mcfunction index c682c02b8..d97e60416 100644 --- a/data/ai/function/skill/damage/check_distance.mcfunction +++ b/data/ai/function/skill/damage/check_distance.mcfunction @@ -9,7 +9,7 @@ function calc:geometry/distance/ function calc:geometry/tp_00001 #ダメージ付与 -execute if score 00000000-0000-0000-0000-000000000001 Calc <= _ Ret if score _ Ret <= 00000000-0000-0000-0000-000000000000 Calc run function skill:enemy/damage/apply +execute if score 00000000-0000-0000-0000-000000000001 Calc <= _ Ret if score _ Ret <= 00000000-0000-0000-0000-000000000000 Calc run function ai:skill/damage/apply #目標タグ削除 tag @s remove TargetCards diff --git a/data/ai/function/skill/damage/is_blocking.mcfunction b/data/ai/function/skill/damage/is_blocking.mcfunction index 4dd6a8b97..a58074ac3 100644 --- a/data/ai/function/skill/damage/is_blocking.mcfunction +++ b/data/ai/function/skill/damage/is_blocking.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/damage/is_blocking -execute if entity @s[distance=..1000] positioned as @s positioned ~ ~1 ~ run function skill:enemy/damage/use_shield +execute if entity @s[distance=..1000] positioned as @s positioned ~ ~1 ~ run function ai:skill/damage/use_shield execute unless entity @s[distance=..1000] run function score_damage:api/attack diff --git a/data/ai/function/skill/damage/is_player.mcfunction b/data/ai/function/skill/damage/is_player.mcfunction index d287f6deb..cb8d31543 100644 --- a/data/ai/function/skill/damage/is_player.mcfunction +++ b/data/ai/function/skill/damage/is_player.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/damage/is_player ##プレイヤーかどうかで分岐 # プレイヤーは生存している必要がある。 -execute if entity @s[type=player,nbt=!{Health:0.0f}] run function skill:enemy/damage/can_be_blocked -execute unless entity @s[type=player] run function skill:enemy/damage/friendly +execute if entity @s[type=player,nbt=!{Health:0.0f}] run function ai:skill/damage/can_be_blocked +execute unless entity @s[type=player] run function ai:skill/damage/friendly diff --git a/data/ai/function/skill/damage/is_using_shield.mcfunction b/data/ai/function/skill/damage/is_using_shield.mcfunction index 137ef46a5..58e3fa877 100644 --- a/data/ai/function/skill/damage/is_using_shield.mcfunction +++ b/data/ai/function/skill/damage/is_using_shield.mcfunction @@ -1,4 +1,4 @@ #> ai:skill/damage/is_using_shield execute store result score _ _ run time query gametime -execute if score @s ShieldUsingTick = _ _ positioned as @s facing entity 0-0-0-0-1 feet positioned ^ ^ ^1000 rotated as @s positioned ^ ^ ^-1000 run function skill:enemy/damage/is_blocking -execute unless score @s ShieldUsingTick = _ _ run function skill:enemy/damage/apply_to_player +execute if score @s ShieldUsingTick = _ _ positioned as @s facing entity 0-0-0-0-1 feet positioned ^ ^ ^1000 rotated as @s positioned ^ ^ ^-1000 run function ai:skill/damage/is_blocking +execute unless score @s ShieldUsingTick = _ _ run function ai:skill/damage/apply_to_player diff --git a/data/ai/function/skill/damage/mob.mcfunction b/data/ai/function/skill/damage/mob.mcfunction index ac0e76a4e..f7dfb9c61 100644 --- a/data/ai/function/skill/damage/mob.mcfunction +++ b/data/ai/function/skill/damage/mob.mcfunction @@ -19,4 +19,4 @@ execute if score 00000000-0000-0000-0000-000000000000 Calc matches 3201.. if sco execute if score 00000000-0000-0000-0000-000000000000 Calc matches 6401.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..12800 run tag @e[tag=Enemy,distance=64.01..128] add TargetCards #細かく調べてダメージを与える -execute as @e[tag=TargetCards] run function skill:enemy/damage/check_distance +execute as @e[tag=TargetCards] run function ai:skill/damage/check_distance diff --git a/data/ai/function/skill/damage/player.mcfunction b/data/ai/function/skill/damage/player.mcfunction index 2d1b8e1d9..93042a428 100644 --- a/data/ai/function/skill/damage/player.mcfunction +++ b/data/ai/function/skill/damage/player.mcfunction @@ -25,4 +25,4 @@ execute if score 00000000-0000-0000-0000-000000000000 Calc matches 3201.. if sco execute if score 00000000-0000-0000-0000-000000000000 Calc matches 6401.. if score 00000000-0000-0000-0000-000000000001 Calc matches ..12800 run tag @e[predicate=entity:friendly,distance=64.01..128] add TargetCards #細かく調べてダメージを与える -execute as @e[tag=TargetCards] run function skill:enemy/damage/check_distance +execute as @e[tag=TargetCards] run function ai:skill/damage/check_distance diff --git a/data/ai/function/skill/delay_action/act/.mcfunction b/data/ai/function/skill/delay_action/act/.mcfunction index c18989aca..ccb5a2235 100644 --- a/data/ai/function/skill/delay_action/act/.mcfunction +++ b/data/ai/function/skill/delay_action/act/.mcfunction @@ -1,4 +1,4 @@ #> ai:skill/delay_action/act/ scoreboard players add @s ActionTick 1 ###一時的な処理を継続するかどうか NextActionTickが1以上なら継続 -execute if score @s ActionTick >= @s NextActionTick run function skill:enemy/delay_action/act/check/ +execute if score @s ActionTick >= @s NextActionTick run function ai:skill/delay_action/act/check/ diff --git a/data/ai/function/skill/delay_action/act/check/.mcfunction b/data/ai/function/skill/delay_action/act/check/.mcfunction index 58bba51ab..8b537f359 100644 --- a/data/ai/function/skill/delay_action/act/check/.mcfunction +++ b/data/ai/function/skill/delay_action/act/check/.mcfunction @@ -8,11 +8,11 @@ data modify storage calc: Array.reverse.Input set from storage mob_data: DelayAc function calc:array/reverse/ data modify storage mob_data: CheckingAction set from storage calc: Array.reverse.Output ###Loop -execute if data storage mob_data: CheckingAction[0] run function skill:enemy/delay_action/act/check/loop +execute if data storage mob_data: CheckingAction[0] run function ai:skill/delay_action/act/check/loop data modify storage mob_data: DelayAction set from storage mob_data: CheckedAction ###DelayActionのソートをする ###Executed:1bのついた要素だけ位置を調整する -execute if data storage mob_data: DelayAction[0] run function skill:enemy/delay_action/act/sort/ +execute if data storage mob_data: DelayAction[0] run function ai:skill/delay_action/act/sort/ ###次の詠唱Tick更新 execute if data storage mob_data: DelayAction[0] store result score @s NextActionTick run data get storage mob_data: DelayAction[0].NextAction execute unless data storage mob_data: DelayAction[0] run scoreboard players reset @s NextActionTick diff --git a/data/ai/function/skill/delay_action/act/check/loop.mcfunction b/data/ai/function/skill/delay_action/act/check/loop.mcfunction index 31a6c2701..29d8e1c07 100644 --- a/data/ai/function/skill/delay_action/act/check/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/check/loop.mcfunction @@ -6,11 +6,11 @@ scoreboard players operation @s _ -= @s ActionTick ###Data移動 data modify storage mob_data: ExecutingAction set from storage mob_data: CheckingAction[-1] ###Execute -execute if score @s _ matches ..0 run function skill:enemy/delay_action/act/execute/ +execute if score @s _ matches ..0 run function ai:skill/delay_action/act/execute/ ###Dataを戻す data modify storage mob_data: CheckingAction[-1] set from storage mob_data: ExecutingAction data remove storage mob_data: ExecutingAction ###Shift -function skill:enemy/delay_action/act/check/shift +function ai:skill/delay_action/act/check/shift ###Loop -execute if data storage mob_data: CheckingAction[-1] run function skill:enemy/delay_action/act/check/loop +execute if data storage mob_data: CheckingAction[-1] run function ai:skill/delay_action/act/check/loop diff --git a/data/ai/function/skill/delay_action/act/execute/.mcfunction b/data/ai/function/skill/delay_action/act/execute/.mcfunction index 760b88a7e..5d3eaaac3 100644 --- a/data/ai/function/skill/delay_action/act/execute/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/.mcfunction @@ -1,9 +1,9 @@ #> ai:skill/delay_action/act/execute/ ###Dataの参照、書き換えはExecutingActionから行う -execute if data storage mob_data: ExecutingAction{Tags:[Casting]} run function skill:enemy/delay_action/act/execute/casting/ -execute if data storage mob_data: ExecutingAction{Tags:[Affect]} run function skill:enemy/delay_action/act/execute/affect/ -execute if data storage mob_data: ExecutingAction{Tags:[Enemy]} run function skill:enemy/delay_action/act/execute/enemy/ +execute if data storage mob_data: ExecutingAction{Tags:[Casting]} run function ai:skill/delay_action/act/execute/casting/ +execute if data storage mob_data: ExecutingAction{Tags:[Affect]} run function ai:skill/delay_action/act/execute/affect/ +execute if data storage mob_data: ExecutingAction{Tags:[Enemy]} run function ai:skill/delay_action/act/execute/enemy/ ###共通処理 -function skill:enemy/delay_action/act/execute/common +function ai:skill/delay_action/act/execute/common diff --git a/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction index 9ce0db1a0..bc2ae4352 100644 --- a/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/affect/.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/delay_action/act/execute/affect/ -execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion01]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_01/ -execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion02]} run function skill:enemy/delay_action/act/execute/affect/huge_explosion_02/ +execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion01]} run function ai:skill/delay_action/act/execute/affect/huge_explosion_01/ +execute if data storage mob_data: ExecutingAction{Tags:[HugeExplosion02]} run function ai:skill/delay_action/act/execute/affect/huge_explosion_02/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction index 8ce0754e9..30311684a 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/.mcfunction @@ -1,16 +1,16 @@ #> ai:skill/delay_action/act/execute/casting/ -execute if data storage mob_data: ExecutingAction{Tags:[Cast]} run function skill:enemy/delay_action/act/execute/casting/cast/ -execute if data storage mob_data: ExecutingAction{Tags:[LaserPointer]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/ -execute if data storage mob_data: ExecutingAction{Tags:[Charge]} run function skill:enemy/delay_action/act/execute/casting/charge/ -execute if data storage mob_data: ExecutingAction{Tags:[WaterBolt]} run function skill:enemy/delay_action/act/execute/casting/water_bolt/ -execute if data storage mob_data: ExecutingAction{Tags:[SludgeGarbager]} run function skill:enemy/delay_action/act/execute/casting/sludge_garbager/ -execute if data storage mob_data: ExecutingAction{Tags:[PillarOfWater]} run function skill:enemy/delay_action/act/execute/casting/pillar_of_water/ -execute if data storage mob_data: ExecutingAction{Tags:[FinishingMove]} run function skill:enemy/delay_action/act/execute/casting/finishing_move/ -execute if data storage mob_data: ExecutingAction{Tags:[CrossRing]} run function skill:enemy/delay_action/act/execute/casting/cross_ring/ -execute if data storage mob_data: ExecutingAction{Tags:[Healing]} run function skill:enemy/delay_action/act/execute/casting/healing/ -execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher01]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_01/ -execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher02]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_02/ -execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher03]} run function skill:enemy/delay_action/act/execute/casting/bubble_launcher_03/ -execute if data storage mob_data: ExecutingAction{Tags:[DoomBomb]} run function skill:enemy/delay_action/act/execute/casting/doom_bomb/ -execute if data storage mob_data: ExecutingAction{Tags:[DoomCast]} run function skill:enemy/delay_action/act/execute/casting/doom_cast/ -execute if data storage mob_data: ExecutingAction{Tags:[CircleHearts]} run function skill:enemy/delay_action/act/execute/casting/circle_hearts/ +execute if data storage mob_data: ExecutingAction{Tags:[Cast]} run function ai:skill/delay_action/act/execute/casting/cast/ +execute if data storage mob_data: ExecutingAction{Tags:[LaserPointer]} run function ai:skill/delay_action/act/execute/casting/laser_pointer/ +execute if data storage mob_data: ExecutingAction{Tags:[Charge]} run function ai:skill/delay_action/act/execute/casting/charge/ +execute if data storage mob_data: ExecutingAction{Tags:[WaterBolt]} run function ai:skill/delay_action/act/execute/casting/water_bolt/ +execute if data storage mob_data: ExecutingAction{Tags:[SludgeGarbager]} run function ai:skill/delay_action/act/execute/casting/sludge_garbager/ +execute if data storage mob_data: ExecutingAction{Tags:[PillarOfWater]} run function ai:skill/delay_action/act/execute/casting/pillar_of_water/ +execute if data storage mob_data: ExecutingAction{Tags:[FinishingMove]} run function ai:skill/delay_action/act/execute/casting/finishing_move/ +execute if data storage mob_data: ExecutingAction{Tags:[CrossRing]} run function ai:skill/delay_action/act/execute/casting/cross_ring/ +execute if data storage mob_data: ExecutingAction{Tags:[Healing]} run function ai:skill/delay_action/act/execute/casting/healing/ +execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher01]} run function ai:skill/delay_action/act/execute/casting/bubble_launcher_01/ +execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher02]} run function ai:skill/delay_action/act/execute/casting/bubble_launcher_02/ +execute if data storage mob_data: ExecutingAction{Tags:[BubbleLauncher03]} run function ai:skill/delay_action/act/execute/casting/bubble_launcher_03/ +execute if data storage mob_data: ExecutingAction{Tags:[DoomBomb]} run function ai:skill/delay_action/act/execute/casting/doom_bomb/ +execute if data storage mob_data: ExecutingAction{Tags:[DoomCast]} run function ai:skill/delay_action/act/execute/casting/doom_cast/ +execute if data storage mob_data: ExecutingAction{Tags:[CircleHearts]} run function ai:skill/delay_action/act/execute/casting/circle_hearts/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction index d1c8bf886..d0137adb4 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/cast/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/delay_action/act/execute/casting/cast/ -execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/cast/normal/ +execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function ai:skill/delay_action/act/execute/casting/cast/normal/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction index 45544ce38..11a7a5f28 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/delay_action/act/execute/casting/charge/ -execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function skill:enemy/delay_action/act/execute/casting/charge/normal/ +execute if data storage mob_data: ExecutingAction{Tags:[Normal]} run function ai:skill/delay_action/act/execute/casting/charge/normal/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction index 7955d9250..ba66834cc 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction @@ -4,7 +4,7 @@ execute anchored eyes positioned ^ ^ ^ run function calc:geometry/tp_00000 ## 演出 function makeup:skill/enemy/delay_action/casting/charge/normal/sound/ -execute as 0-0-0-0-0 at @s run function skill:enemy/delay_action/act/execute/casting/charge/normal/act +execute as 0-0-0-0-0 at @s run function ai:skill/delay_action/act/execute/casting/charge/normal/act diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction index a57098b64..12ba93427 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/delay_action/act/execute/casting/laser_pointer/ -execute if data storage mob_data: ExecutingAction{Tags:[RedDust]} run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/ +execute if data storage mob_data: ExecutingAction{Tags:[RedDust]} run function ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/ diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction index 6da12f06f..0e7f5e883 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/.mcfunction @@ -1,4 +1,4 @@ #> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/ ###演出 -execute if data storage mob_data: ExecutingAction.ExtraSettings.Loop anchored eyes positioned ^ ^ ^ run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start +execute if data storage mob_data: ExecutingAction.ExtraSettings.Loop anchored eyes positioned ^ ^ ^ run function ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start data modify storage mob_data: ExecutingAction.NextAction set value 2 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction index 482af1da5..3b86e02c2 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction @@ -3,4 +3,4 @@ function makeup:skill/enemy/delay_action/casting/laser_pointer/red_dust/particle execute store result storage mob_data: ExecutingAction.Loop int 1 run data get storage mob_data: ExecutingAction.Loop 0.999999999 -execute unless data storage mob_data: ExecutingAction{Loop:0} positioned ^ ^ ^0.5 if block ~ ~ ~ #block:no_collision run function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop +execute unless data storage mob_data: ExecutingAction{Loop:0} positioned ^ ^ ^0.5 if block ~ ~ ~ #block:no_collision run function ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction index ac7aa70ad..1c17bf948 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start.mcfunction @@ -1,4 +1,4 @@ #> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_start data modify storage mob_data: ExecutingAction.Loop set from storage mob_data: ExecutingAction.ExtraSettings.Loop -function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop -function skill:enemy/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end +function ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop +function ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop_end diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction index 885e5aad6..77773fdaa 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/.mcfunction @@ -1,12 +1,12 @@ -#> skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/act/execute/enemy/ # # 敵固有DelayAction用分岐 # -# @within function skill:enemy/delay_action/append/ +# @within function ai:skill/delay_action/append/ -execute if data storage mob_data: ExecutingAction{Tags:["Common"]} run function skill:enemy/delay_action/act/execute/enemy/common/ -execute if data storage mob_data: ExecutingAction{Tags:["CrimsonEye"]} run function skill:enemy/delay_action/act/execute/enemy/crimson_eye/ -execute if data storage mob_data: ExecutingAction{Tags:["LunaticEye"]} run function skill:enemy/delay_action/act/execute/enemy/lunatic_eye/ -execute if data storage mob_data: ExecutingAction{Tags:["AuroraEye"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ -execute if data storage mob_data: ExecutingAction{Tags:["Ryomen"]} run function skill:enemy/delay_action/act/execute/enemy/ryomen/ -execute if data storage mob_data: ExecutingAction{Tags:["AbyssMage"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/ +execute if data storage mob_data: ExecutingAction{Tags:["Common"]} run function ai:skill/delay_action/act/execute/enemy/common/ +execute if data storage mob_data: ExecutingAction{Tags:["CrimsonEye"]} run function ai:skill/delay_action/act/execute/enemy/crimson_eye/ +execute if data storage mob_data: ExecutingAction{Tags:["LunaticEye"]} run function ai:skill/delay_action/act/execute/enemy/lunatic_eye/ +execute if data storage mob_data: ExecutingAction{Tags:["AuroraEye"]} run function ai:skill/delay_action/act/execute/enemy/aurora_eye/ +execute if data storage mob_data: ExecutingAction{Tags:["Ryomen"]} run function ai:skill/delay_action/act/execute/enemy/ryomen/ +execute if data storage mob_data: ExecutingAction{Tags:["AbyssMage"]} run function ai:skill/delay_action/act/execute/enemy/abyss_mage/ diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction index 3c16fd052..1886a39f0 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/.mcfunction @@ -1,4 +1,4 @@ -#> skill:enemy/delay_action/act/execute/enemy/abyss_mage/ -# @within function skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/act/execute/enemy/abyss_mage/ +# @within function ai:skill/delay_action/act/execute/enemy/ -execute if data storage mob_data: ExecutingAction{Tags:["Magic"]} run function skill:enemy/delay_action/act/execute/enemy/abyss_mage/abyss_magic +execute if data storage mob_data: ExecutingAction{Tags:["Magic"]} run function ai:skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction index fb5e51631..4db2c7060 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/abyss_mage/abyss_magic -# @within function skill:enemy/delay_action/act/execute/enemy/abyss_mage/ +#> ai:skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic +# @within function ai:skill/delay_action/act/execute/enemy/abyss_mage/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_1 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction index 66fab2ebe..517af2465 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/aurora_eye/ -# @within function skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/act/execute/enemy/aurora_eye/ +# @within function ai:skill/delay_action/act/execute/enemy/ -execute if data storage mob_data: ExecutingAction{Tags:["Zone"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/zone -execute if data storage mob_data: ExecutingAction{Tags:["Shard"]} run function skill:enemy/delay_action/act/execute/enemy/aurora_eye/shard +execute if data storage mob_data: ExecutingAction{Tags:["Zone"]} run function ai:skill/delay_action/act/execute/enemy/aurora_eye/zone +execute if data storage mob_data: ExecutingAction{Tags:["Shard"]} run function ai:skill/delay_action/act/execute/enemy/aurora_eye/shard diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction index cb1202470..b3843637d 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/shard.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/aurora_eye/shard -# @within function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ +#> ai:skill/delay_action/act/execute/enemy/aurora_eye/shard +# @within function ai:skill/delay_action/act/execute/enemy/aurora_eye/ execute store result score _ _ run data get storage mob_data: ExecutingAction.Stage diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction index 3664177d2..8798dcde0 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/aurora_eye/zone -# @within function skill:enemy/delay_action/act/execute/enemy/aurora_eye/ +#> ai:skill/delay_action/act/execute/enemy/aurora_eye/zone +# @within function ai:skill/delay_action/act/execute/enemy/aurora_eye/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_1 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction index bfdd14c54..48ab4efbc 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/common/.mcfunction @@ -1,4 +1,4 @@ -#> skill:enemy/delay_action/act/execute/enemy/common/ -# @within function skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/act/execute/enemy/common/ +# @within function ai:skill/delay_action/act/execute/enemy/ -execute if data storage mob_data: ExecutingAction{Tags:["Paralyze"]} run function skill:enemy/delay_action/act/execute/enemy/common/paralyze +execute if data storage mob_data: ExecutingAction{Tags:["Paralyze"]} run function ai:skill/delay_action/act/execute/enemy/common/paralyze diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction index d43fbd305..af0b9053e 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/common/paralyze.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/common/paralyze -# @within function skill:enemy/delay_action/act/execute/enemy/common/ +#> ai:skill/delay_action/act/execute/enemy/common/paralyze +# @within function ai:skill/delay_action/act/execute/enemy/common/ # 演出 particle electric_spark ~ ~1 ~ 0.25 0.5 0.25 0 3 force @a[distance=..32,tag=ShowParticles] diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction index 53f98a5d6..9311e6505 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/crimson_eye/ -# @within function skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/act/execute/enemy/crimson_eye/ +# @within function ai:skill/delay_action/append/enemy/ ###詠唱演出 Stage0で終了なので最大数から開始 function calc:set/random_rotation diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction index 14d83faec..5d6133245 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/act/execute/enemy/lunatic_eye/ -# @within function skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/act/execute/enemy/lunatic_eye/ +# @within function ai:skill/delay_action/act/execute/enemy/ ###詠唱演出 Stage0で終了なので最大数から開始 execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_1 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction index b78212ba8..83649b7b2 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/ryomen/.mcfunction @@ -1,8 +1,8 @@ -#> skill:enemy/delay_action/act/execute/enemy/ryomen/ -# @within function skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/act/execute/enemy/ryomen/ +# @within function ai:skill/delay_action/act/execute/enemy/ # ステータス強化解除 data modify storage mob_data: Call.Attack set value {Add:-40} - function skill:enemy/change_status/ + function ai:skill/change_status/ tag @s remove RyomenRage diff --git a/data/ai/function/skill/delay_action/act/sort/.mcfunction b/data/ai/function/skill/delay_action/act/sort/.mcfunction index d275059d4..ddb40721a 100644 --- a/data/ai/function/skill/delay_action/act/sort/.mcfunction +++ b/data/ai/function/skill/delay_action/act/sort/.mcfunction @@ -2,6 +2,6 @@ data modify storage mob_data: SortingActionData append from storage mob_data: DelayAction[{Executed:1b}] data remove storage mob_data: DelayAction[{Executed:1b}] -function skill:enemy/delay_action/act/sort/loop +function ai:skill/delay_action/act/sort/loop data remove storage mob_data: DelayAction[{Executed:1b}].Executed diff --git a/data/ai/function/skill/delay_action/act/sort/loop.mcfunction b/data/ai/function/skill/delay_action/act/sort/loop.mcfunction index 1bd5f02e4..2b7888479 100644 --- a/data/ai/function/skill/delay_action/act/sort/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/sort/loop.mcfunction @@ -3,6 +3,6 @@ ### "_ _" SortingActionData[-1]のNextAction execute store result score _ _ run data get storage mob_data: SortingActionData[-1].NextAction data modify storage mob_data: AddingAction set from storage mob_data: SortingActionData[-1] -function skill:enemy/delay_action/append/search +function ai:skill/delay_action/append/search data remove storage mob_data: SortingActionData[-1] -execute if data storage mob_data: SortingActionData[-1] run function skill:enemy/delay_action/act/sort/loop +execute if data storage mob_data: SortingActionData[-1] run function ai:skill/delay_action/act/sort/loop diff --git a/data/ai/function/skill/delay_action/append/.mcfunction b/data/ai/function/skill/delay_action/append/.mcfunction index 99f7a3bcb..671abb1de 100644 --- a/data/ai/function/skill/delay_action/append/.mcfunction +++ b/data/ai/function/skill/delay_action/append/.mcfunction @@ -15,9 +15,9 @@ data modify storage mob_data: DelayAction set from storage oh_my_dat: _[-4][-4][ ### 追加用枠 -execute if data storage mob_data: Call{Tags:["Casting"]} run function skill:enemy/delay_action/append/casting/ -execute if data storage mob_data: Call{Tags:["Affect"]} run function skill:enemy/delay_action/append/affect/ -execute if data storage mob_data: Call{Tags:["Enemy"]} run function skill:enemy/delay_action/append/enemy/ +execute if data storage mob_data: Call{Tags:["Casting"]} run function ai:skill/delay_action/append/casting/ +execute if data storage mob_data: Call{Tags:["Affect"]} run function ai:skill/delay_action/append/affect/ +execute if data storage mob_data: Call{Tags:["Enemy"]} run function ai:skill/delay_action/append/enemy/ ### @@ -32,7 +32,7 @@ execute if score @s NextActionTick matches -2147483647..2147483647 run scoreboar ###挿入する場所の探索 -function skill:enemy/delay_action/append/search +function ai:skill/delay_action/append/search diff --git a/data/ai/function/skill/delay_action/append/affect/.mcfunction b/data/ai/function/skill/delay_action/append/affect/.mcfunction index c3c0d3b17..d97761c3c 100644 --- a/data/ai/function/skill/delay_action/append/affect/.mcfunction +++ b/data/ai/function/skill/delay_action/append/affect/.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/delay_action/append/affect/ -execute if data storage mob_data: Call{Tags:["HugeExplosion01"]} run function skill:enemy/delay_action/append/affect/huge_explosion_01/ -execute if data storage mob_data: Call{Tags:["HugeExplosion02"]} run function skill:enemy/delay_action/append/affect/huge_explosion_02/ +execute if data storage mob_data: Call{Tags:["HugeExplosion01"]} run function ai:skill/delay_action/append/affect/huge_explosion_01/ +execute if data storage mob_data: Call{Tags:["HugeExplosion02"]} run function ai:skill/delay_action/append/affect/huge_explosion_02/ diff --git a/data/ai/function/skill/delay_action/append/casting/.mcfunction b/data/ai/function/skill/delay_action/append/casting/.mcfunction index 8a8ca144d..061b2f26a 100644 --- a/data/ai/function/skill/delay_action/append/casting/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/.mcfunction @@ -1,16 +1,16 @@ #> ai:skill/delay_action/append/casting/ -execute if data storage mob_data: Call{Tags:["Cast"]} run function skill:enemy/delay_action/append/casting/cast/ -execute if data storage mob_data: Call{Tags:["LaserPointer"]} run function skill:enemy/delay_action/append/casting/laser_pointer/ -execute if data storage mob_data: Call{Tags:["Charge"]} run function skill:enemy/delay_action/append/casting/charge/ -execute if data storage mob_data: Call{Tags:["WaterBolt"]} run function skill:enemy/delay_action/append/casting/water_bolt/ -execute if data storage mob_data: Call{Tags:["SludgeGarbager"]} run function skill:enemy/delay_action/append/casting/sludge_garbager/ -execute if data storage mob_data: Call{Tags:["PillarOfWater"]} run function skill:enemy/delay_action/append/casting/pillar_of_water/ -execute if data storage mob_data: Call{Tags:["FinishingMove"]} run function skill:enemy/delay_action/append/casting/finishing_move/ -execute if data storage mob_data: Call{Tags:["CrossRing"]} run function skill:enemy/delay_action/append/casting/cross_ring/ -execute if data storage mob_data: Call{Tags:["Healing"]} run function skill:enemy/delay_action/append/casting/healing/ -execute if data storage mob_data: Call{Tags:["BubbleLauncher01"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_01/ -execute if data storage mob_data: Call{Tags:["BubbleLauncher02"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_02/ -execute if data storage mob_data: Call{Tags:["BubbleLauncher03"]} run function skill:enemy/delay_action/append/casting/bubble_launcher_03/ -execute if data storage mob_data: Call{Tags:["DoomBomb"]} run function skill:enemy/delay_action/append/casting/doom_bomb/ -execute if data storage mob_data: Call{Tags:["DoomCast"]} run function skill:enemy/delay_action/append/casting/doom_cast/ -execute if data storage mob_data: Call{Tags:["CircleHearts"]} run function skill:enemy/delay_action/append/casting/circle_hearts/ +execute if data storage mob_data: Call{Tags:["Cast"]} run function ai:skill/delay_action/append/casting/cast/ +execute if data storage mob_data: Call{Tags:["LaserPointer"]} run function ai:skill/delay_action/append/casting/laser_pointer/ +execute if data storage mob_data: Call{Tags:["Charge"]} run function ai:skill/delay_action/append/casting/charge/ +execute if data storage mob_data: Call{Tags:["WaterBolt"]} run function ai:skill/delay_action/append/casting/water_bolt/ +execute if data storage mob_data: Call{Tags:["SludgeGarbager"]} run function ai:skill/delay_action/append/casting/sludge_garbager/ +execute if data storage mob_data: Call{Tags:["PillarOfWater"]} run function ai:skill/delay_action/append/casting/pillar_of_water/ +execute if data storage mob_data: Call{Tags:["FinishingMove"]} run function ai:skill/delay_action/append/casting/finishing_move/ +execute if data storage mob_data: Call{Tags:["CrossRing"]} run function ai:skill/delay_action/append/casting/cross_ring/ +execute if data storage mob_data: Call{Tags:["Healing"]} run function ai:skill/delay_action/append/casting/healing/ +execute if data storage mob_data: Call{Tags:["BubbleLauncher01"]} run function ai:skill/delay_action/append/casting/bubble_launcher_01/ +execute if data storage mob_data: Call{Tags:["BubbleLauncher02"]} run function ai:skill/delay_action/append/casting/bubble_launcher_02/ +execute if data storage mob_data: Call{Tags:["BubbleLauncher03"]} run function ai:skill/delay_action/append/casting/bubble_launcher_03/ +execute if data storage mob_data: Call{Tags:["DoomBomb"]} run function ai:skill/delay_action/append/casting/doom_bomb/ +execute if data storage mob_data: Call{Tags:["DoomCast"]} run function ai:skill/delay_action/append/casting/doom_cast/ +execute if data storage mob_data: Call{Tags:["CircleHearts"]} run function ai:skill/delay_action/append/casting/circle_hearts/ diff --git a/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction index 3b442b81f..d07988d95 100644 --- a/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/cast/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/delay_action/append/casting/cast/ -execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/cast/normal/ +execute if data storage mob_data: Call{Tags:["Normal"]} run function ai:skill/delay_action/append/casting/cast/normal/ diff --git a/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction b/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction index ada72e3da..68a6f7fb2 100644 --- a/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/charge/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/delay_action/append/casting/charge/ -execute if data storage mob_data: Call{Tags:["Normal"]} run function skill:enemy/delay_action/append/casting/charge/normal/ +execute if data storage mob_data: Call{Tags:["Normal"]} run function ai:skill/delay_action/append/casting/charge/normal/ diff --git a/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction b/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction index 6895830b3..7601fe035 100644 --- a/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/laser_pointer/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/delay_action/append/casting/laser_pointer/ -execute if data storage mob_data: Call{Tags:["RedDust"]} run function skill:enemy/delay_action/append/casting/laser_pointer/red_dust/ +execute if data storage mob_data: Call{Tags:["RedDust"]} run function ai:skill/delay_action/append/casting/laser_pointer/red_dust/ diff --git a/data/ai/function/skill/delay_action/append/enemy/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/.mcfunction index 719e5ff97..7d3ba4eaf 100644 --- a/data/ai/function/skill/delay_action/append/enemy/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/.mcfunction @@ -1,12 +1,12 @@ -#> skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/append/enemy/ # # 敵固有DelayAction用分岐 # -# @within function skill:enemy/delay_action/append/ +# @within function ai:skill/delay_action/append/ -execute if data storage mob_data: Call{Tags:["Common"]} run function skill:enemy/delay_action/append/enemy/common/ -execute if data storage mob_data: Call{Tags:["CrimsonEye"]} run function skill:enemy/delay_action/append/enemy/crimson_eye/ -execute if data storage mob_data: Call{Tags:["LunaticEye"]} run function skill:enemy/delay_action/append/enemy/lunatic_eye/ -execute if data storage mob_data: Call{Tags:["AuroraEye"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/ -execute if data storage mob_data: Call{Tags:["Ryomen"]} run function skill:enemy/delay_action/append/enemy/ryomen/ -execute if data storage mob_data: Call{Tags:["AbyssMage"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/ +execute if data storage mob_data: Call{Tags:["Common"]} run function ai:skill/delay_action/append/enemy/common/ +execute if data storage mob_data: Call{Tags:["CrimsonEye"]} run function ai:skill/delay_action/append/enemy/crimson_eye/ +execute if data storage mob_data: Call{Tags:["LunaticEye"]} run function ai:skill/delay_action/append/enemy/lunatic_eye/ +execute if data storage mob_data: Call{Tags:["AuroraEye"]} run function ai:skill/delay_action/append/enemy/aurora_eye/ +execute if data storage mob_data: Call{Tags:["Ryomen"]} run function ai:skill/delay_action/append/enemy/ryomen/ +execute if data storage mob_data: Call{Tags:["AbyssMage"]} run function ai:skill/delay_action/append/enemy/abyss_mage/ diff --git a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction index eaea574d6..dfe24c3ad 100644 --- a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/.mcfunction @@ -1,4 +1,4 @@ -#> skill:enemy/delay_action/append/enemy/abyss_mage/ -# @within function skill:enemy/delay_action/act/execute/enemy/ +#> ai:skill/delay_action/append/enemy/abyss_mage/ +# @within function ai:skill/delay_action/act/execute/enemy/ -execute if data storage mob_data: Call{Tags:["Magic"]} run function skill:enemy/delay_action/append/enemy/abyss_mage/abyss_magic +execute if data storage mob_data: Call{Tags:["Magic"]} run function ai:skill/delay_action/append/enemy/abyss_mage/abyss_magic diff --git a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction index 8257333ac..092380aab 100644 --- a/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/abyss_mage/abyss_magic.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/abyss_mage/abyss_magic -# @within function skill:enemy/delay_action/append/enemy/abyss_mage/ +#> ai:skill/delay_action/append/enemy/abyss_mage/abyss_magic +# @within function ai:skill/delay_action/append/enemy/abyss_mage/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:25,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction index ab3d227fa..097c963e2 100644 --- a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/aurora_eye/ -# @within function skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/append/enemy/aurora_eye/ +# @within function ai:skill/delay_action/append/enemy/ -execute if data storage mob_data: Call{Tags:["Zone"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/zone -execute if data storage mob_data: Call{Tags:["Shard"]} run function skill:enemy/delay_action/append/enemy/aurora_eye/shard +execute if data storage mob_data: Call{Tags:["Zone"]} run function ai:skill/delay_action/append/enemy/aurora_eye/zone +execute if data storage mob_data: Call{Tags:["Shard"]} run function ai:skill/delay_action/append/enemy/aurora_eye/shard diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction index 0f1d14bf2..890512aa8 100644 --- a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/shard.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/aurora_eye/shard -# @within function skill:enemy/delay_action/append/enemy/aurora_eye/ +#> ai:skill/delay_action/append/enemy/aurora_eye/shard +# @within function ai:skill/delay_action/append/enemy/aurora_eye/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:70,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction index a33c73c68..f6e3376d8 100644 --- a/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/aurora_eye/zone.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/aurora_eye/zone -# @within function skill:enemy/delay_action/append/enemy/aurora_eye/ +#> ai:skill/delay_action/append/enemy/aurora_eye/zone +# @within function ai:skill/delay_action/append/enemy/aurora_eye/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:15,NextAction:2} diff --git a/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction index 4a259b58f..2953caca7 100644 --- a/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/common/.mcfunction @@ -1,4 +1,4 @@ -#> skill:enemy/delay_action/append/enemy/common/ -# @within function skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/append/enemy/common/ +# @within function ai:skill/delay_action/append/enemy/ -execute if data storage mob_data: Call{Tags:["Paralyze"]} run function skill:enemy/delay_action/append/enemy/common/paralyze +execute if data storage mob_data: Call{Tags:["Paralyze"]} run function ai:skill/delay_action/append/enemy/common/paralyze diff --git a/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction b/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction index 1436add83..092fe92c4 100644 --- a/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/common/paralyze.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/common/paralyze -# @within function skill:enemy/delay_action/append/enemy/common/ +#> ai:skill/delay_action/append/enemy/common/paralyze +# @within function ai:skill/delay_action/append/enemy/common/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:40,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction index 3344eea30..c135d48ba 100644 --- a/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/crimson_eye/.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/crimson_eye/ -# @within function skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/append/enemy/crimson_eye/ +# @within function ai:skill/delay_action/append/enemy/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction index 5e91ea117..e3baa2f8e 100644 --- a/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/lunatic_eye/.mcfunction @@ -1,5 +1,5 @@ -#> skill:enemy/delay_action/append/enemy/lunatic_eye/ -# @within function skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/append/enemy/lunatic_eye/ +# @within function ai:skill/delay_action/append/enemy/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:51,NextAction:1} diff --git a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction index d11eff347..5e55c806e 100644 --- a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction @@ -1,11 +1,11 @@ -#> skill:enemy/delay_action/append/enemy/ryomen/ -# @within function skill:enemy/delay_action/append/enemy/ +#> ai:skill/delay_action/append/enemy/ryomen/ +# @within function ai:skill/delay_action/append/enemy/ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:1,NextAction:400} # ステータスを変化させて強化 data modify storage mob_data: Call.Attack set value {Add:40} - function skill:enemy/change_status/ + function ai:skill/change_status/ tag @s add RyomenRage # 演出 particle dust 0.45 0 0 1 ~ ~1 ~ 0.25 0.5 0.25 1 50 force @a[distance=..32,tag=ShowParticles] diff --git a/data/ai/function/skill/delay_action/append/loop.mcfunction b/data/ai/function/skill/delay_action/append/loop.mcfunction index 9d20120f7..afb715ffb 100644 --- a/data/ai/function/skill/delay_action/append/loop.mcfunction +++ b/data/ai/function/skill/delay_action/append/loop.mcfunction @@ -4,17 +4,17 @@ execute store result score @s _ run data get storage mob_data: DelayAction[0].Ne ###追加 ###DelayAction[0].NextActionが"_ _"より大きくてかつ、すでに実行済みでないならそこに追加 -execute if score @s _ > _ _ if data storage mob_data: AddingAction{IsAdded:false} run function skill:enemy/delay_action/append/act +execute if score @s _ > _ _ if data storage mob_data: AddingAction{IsAdded:false} run function ai:skill/delay_action/append/act ###一巡しても追加されてない場合は最後尾に追加 -execute if data storage mob_data: AddingAction{LoopCount:0} if data storage mob_data: AddingAction{IsAdded:false} run function skill:enemy/delay_action/append/act +execute if data storage mob_data: AddingAction{LoopCount:0} if data storage mob_data: AddingAction{IsAdded:false} run function ai:skill/delay_action/append/act ###Shift #scoreboard players add @s Calc 1 execute store result storage mob_data: AddingAction.LoopCount int 0.99999999 run data get storage mob_data: AddingAction.LoopCount 1 -execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/shift +execute unless data storage mob_data: AddingAction{LoopCount:0} run function ai:skill/delay_action/append/shift ###Loop -execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/loop +execute unless data storage mob_data: AddingAction{LoopCount:0} run function ai:skill/delay_action/append/loop diff --git a/data/ai/function/skill/delay_action/append/search.mcfunction b/data/ai/function/skill/delay_action/append/search.mcfunction index 5dc32861d..7de948a88 100644 --- a/data/ai/function/skill/delay_action/append/search.mcfunction +++ b/data/ai/function/skill/delay_action/append/search.mcfunction @@ -8,11 +8,11 @@ execute store result storage mob_data: AddingAction.LoopCount int 1 run data get #scoreboard players set 00000000-0000-0000-0000-000000000000 _ 0 data modify storage mob_data: AddingAction.IsAdded set value false -execute if data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/act +execute if data storage mob_data: AddingAction{LoopCount:0} run function ai:skill/delay_action/append/act ###LoopCountSet "@s Calc" scoreboard players set @s Calc 1 -execute unless data storage mob_data: AddingAction{LoopCount:0} run function skill:enemy/delay_action/append/loop +execute unless data storage mob_data: AddingAction{LoopCount:0} run function ai:skill/delay_action/append/loop diff --git a/data/ai/function/skill/function/loot_add.mcfunction b/data/ai/function/skill/function/loot_add.mcfunction index 837d2eb07..16989d4f9 100644 --- a/data/ai/function/skill/function/loot_add.mcfunction +++ b/data/ai/function/skill/function/loot_add.mcfunction @@ -8,7 +8,7 @@ tag @s[tag=!HasLootTable] add HasLootTable #> シート上に追加するfunctionのテンプレート # # data modify storage mob_data: LootTable set value {Item:{},Chance:1.0d,Count:1} -# execute as @e[<変更対象>,tag=!<重複処理させないようにするタグ>] run function skill:enemy/function/loot_add +# execute as @e[<変更対象>,tag=!<重複処理させないようにするタグ>] run function ai:skill/function/loot_add # tag @e[<変更対象>] add <重複処理させないようにするタグ> # function #oh_my_dat:please # diff --git a/data/ai/function/skill/heal/.mcfunction b/data/ai/function/skill/heal/.mcfunction index dec1593d0..0caabc190 100644 --- a/data/ai/function/skill/heal/.mcfunction +++ b/data/ai/function/skill/heal/.mcfunction @@ -25,7 +25,7 @@ scoreboard players operation _ Calc /= @s Calc ###対象探索 scoreboard players set 00000000-0000-0000-0000-000000000000 _ 0 -execute as @e[tag=Enemy,distance=..32] if score @s HP < @s HPMax run function skill:enemy/heal/search +execute as @e[tag=Enemy,distance=..32] if score @s HP < @s HPMax run function ai:skill/heal/search ###演出 execute if score 00000000-0000-0000-0000-000000000000 _ matches 1 run function makeup:skill/enemy/heal/ diff --git a/data/ai/function/skill/heal/search.mcfunction b/data/ai/function/skill/heal/search.mcfunction index b03a42e61..a065e45fa 100644 --- a/data/ai/function/skill/heal/search.mcfunction +++ b/data/ai/function/skill/heal/search.mcfunction @@ -1,4 +1,4 @@ #> ai:skill/heal/search ###対象探索 function calc:geometry/distance/ -execute if score _ Ret <= # _ run function skill:enemy/heal/act +execute if score _ Ret <= # _ run function ai:skill/heal/act diff --git a/data/ai/function/skill/icicle_magic/.mcfunction b/data/ai/function/skill/icicle_magic/.mcfunction index 30f831f83..d567c705a 100644 --- a/data/ai/function/skill/icicle_magic/.mcfunction +++ b/data/ai/function/skill/icicle_magic/.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/ summon area_effect_cloud ~ ~ ~ {Tags:["IcicleSummoner"],Duration:4,Radius:0f,Particle:"minecraft:block minecraft:air"} -schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t replace +schedule function ai:skill/icicle_magic/schedule_loop/icicle_summoner 1t replace diff --git a/data/ai/function/skill/icicle_magic/icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle/.mcfunction index 9258b4320..b622abee8 100644 --- a/data/ai/function/skill/icicle_magic/icicle/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle/.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/icicle_magic/icicle/ execute positioned as @s run teleport @s ~ ~-1 ~ ###ここらへんにダメージ判定 -execute unless block ~ ~ ~ #block:no_collision run function skill:enemy/icicle_magic/icicle/fall +execute unless block ~ ~ ~ #block:no_collision run function ai:skill/icicle_magic/icicle/fall function makeup:skill/enemy/icicle_magic/icicle diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction index 0ed86278e..05f680a4c 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/.mcfunction @@ -3,4 +3,4 @@ ###氷柱設置場所探索 scoreboard players set $LoopCount _ 0 -function skill:enemy/icicle_magic/icicle_summoner/find_place/start +function ai:skill/icicle_magic/icicle_summoner/find_place/start diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction index aac792473..dec92da33 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/end.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/icicle_summoner/find_place/end scoreboard players set $LoopCount _ 0 -function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start +function ai:skill/icicle_magic/icicle_summoner/find_place_above/start diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction index 29a345490..cdbcff572 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place/start.mcfunction @@ -5,5 +5,5 @@ execute unless block ^ ^ ^0.5 #block:no_collision run scoreboard players set $LoopCount _ 17 scoreboard players add $LoopCount _ 1 -execute if score $LoopCount _ matches ..16 positioned ^ ^ ^0.5 run function skill:enemy/icicle_magic/icicle_summoner/find_place/start -execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place/end +execute if score $LoopCount _ matches ..16 positioned ^ ^ ^0.5 run function ai:skill/icicle_magic/icicle_summoner/find_place/start +execute if score $LoopCount _ matches 17.. run function ai:skill/icicle_magic/icicle_summoner/find_place/end diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction index 0e9e2775d..f66a46669 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/find_place_above/start.mcfunction @@ -2,5 +2,5 @@ ###設置場所上方向探索 execute unless block ~ ~0.5 ~ #block:no_collision run scoreboard players set $LoopCount _ 17 scoreboard players add $LoopCount _ 1 -execute if score $LoopCount _ matches ..16 positioned ~ ~0.5 ~ run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/start -execute if score $LoopCount _ matches 17.. run function skill:enemy/icicle_magic/icicle_summoner/find_place_above/end +execute if score $LoopCount _ matches ..16 positioned ~ ~0.5 ~ run function ai:skill/icicle_magic/icicle_summoner/find_place_above/start +execute if score $LoopCount _ matches 17.. run function ai:skill/icicle_magic/icicle_summoner/find_place_above/end diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction index 98572fcff..90fc784ae 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/icicle_magic/icicle_summoner/place_icicle/ -execute positioned ~0.4 ~0.7 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act -execute positioned ~0.4 ~0.2 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act -execute positioned ~0.4 ~-0.3 ~-0.075 run function skill:enemy/icicle_magic/icicle_summoner/place_icicle/act +execute positioned ~0.4 ~0.7 ~-0.075 run function ai:skill/icicle_magic/icicle_summoner/place_icicle/act +execute positioned ~0.4 ~0.2 ~-0.075 run function ai:skill/icicle_magic/icicle_summoner/place_icicle/act +execute positioned ~0.4 ~-0.3 ~-0.075 run function ai:skill/icicle_magic/icicle_summoner/place_icicle/act -schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace +schedule function ai:skill/icicle_magic/schedule_loop/icicle 1t replace diff --git a/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction b/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction index de52581e4..dccf14978 100644 --- a/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction +++ b/data/ai/function/skill/icicle_magic/schedule_loop/icicle.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/schedule_loop/icicle -execute as @e[tag=Icicle] at @s positioned ~-0.4 ~0.7 ~0.075 run function skill:enemy/icicle_magic/icicle/ -execute if entity @e[tag=Icicle,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle 1t replace +execute as @e[tag=Icicle] at @s positioned ~-0.4 ~0.7 ~0.075 run function ai:skill/icicle_magic/icicle/ +execute if entity @e[tag=Icicle,limit=1] run schedule function ai:skill/icicle_magic/schedule_loop/icicle 1t replace diff --git a/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction b/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction index fd17849b3..b30a98f06 100644 --- a/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction +++ b/data/ai/function/skill/icicle_magic/schedule_loop/icicle_summoner.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/schedule_loop/icicle_summoner -execute as @e[tag=IcicleSummoner] at @s run function skill:enemy/icicle_magic/icicle_summoner/ -execute if entity @e[tag=IcicleSummoner,limit=1] run schedule function skill:enemy/icicle_magic/schedule_loop/icicle_summoner 1t +execute as @e[tag=IcicleSummoner] at @s run function ai:skill/icicle_magic/icicle_summoner/ +execute if entity @e[tag=IcicleSummoner,limit=1] run schedule function ai:skill/icicle_magic/schedule_loop/icicle_summoner 1t diff --git a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction index 613e47d6a..cd054d51f 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/blue_laser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/blue_laser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/blue_laser/damage #演出 function makeup:skill/enemy/laser/loop/blue_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopblue_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/blue_laser/ +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loopblue_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/blue_laser/ diff --git a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction index 4c7253617..1ada02625 100644 --- a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction +++ b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/frozenlaser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/frozenlaser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/frozenlaser/damage #演出 function makeup:skill/enemy/laser/loop/frozenlazer/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/frozenlaser/ +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/frozenlaser/ diff --git a/data/ai/function/skill/laser/loop/green_laser/.mcfunction b/data/ai/function/skill/laser/loop/green_laser/.mcfunction index b20eb2b26..31f02e631 100644 --- a/data/ai/function/skill/laser/loop/green_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/green_laser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/green_laser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/green_laser/damage #演出 function makeup:skill/enemy/laser/loop/green_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopgreen_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/green_laser/ +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loopgreen_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/green_laser/ diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction index f9a26095f..b2f7edac5 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/.mcfunction @@ -1,9 +1,9 @@ #> ai:skill/laser/loop/kame_hame_ha/ #分岐処理 -execute if data storage mob_data: Call{Width:1} run function skill:enemy/laser/loop/kame_hame_ha/1 -execute if data storage mob_data: Call{Width:2} run function skill:enemy/laser/loop/kame_hame_ha/2 -execute if data storage mob_data: Call{Width:3} run function skill:enemy/laser/loop/kame_hame_ha/3 -execute if data storage mob_data: Call{Width:4} run function skill:enemy/laser/loop/kame_hame_ha/4 -execute if data storage mob_data: Call{Width:5} run function skill:enemy/laser/loop/kame_hame_ha/5 -execute if data storage mob_data: Call{Width:6} run function skill:enemy/laser/loop/kame_hame_ha/6 -execute if data storage mob_data: Call{Width:7} run function skill:enemy/laser/loop/kame_hame_ha/7 +execute if data storage mob_data: Call{Width:1} run function ai:skill/laser/loop/kame_hame_ha/1 +execute if data storage mob_data: Call{Width:2} run function ai:skill/laser/loop/kame_hame_ha/2 +execute if data storage mob_data: Call{Width:3} run function ai:skill/laser/loop/kame_hame_ha/3 +execute if data storage mob_data: Call{Width:4} run function ai:skill/laser/loop/kame_hame_ha/4 +execute if data storage mob_data: Call{Width:5} run function ai:skill/laser/loop/kame_hame_ha/5 +execute if data storage mob_data: Call{Width:6} run function ai:skill/laser/loop/kame_hame_ha/6 +execute if data storage mob_data: Call{Width:7} run function ai:skill/laser/loop/kame_hame_ha/7 diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction index 800a3237f..30e8ccd67 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/1 #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/1 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction index ffc9affab..cca000a7e 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/2 #ダメージ処理 -execute positioned ~-1 ~-1 ~-1 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-1 ~-1 ~-1 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/2 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction index ea1c521ae..a694b790f 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/3 #ダメージ処理 -execute positioned ~-1.5 ~-1.5 ~-1.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-1.5 ~-1.5 ~-1.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/3 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction index 139cc16c8..94363fca9 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/4 #ダメージ処理 -execute positioned ~-2 ~-2 ~-2 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-2 ~-2 ~-2 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/4 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction index 76ece1fe5..774b64141 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/5 #ダメージ処理 -execute positioned ~-2.5 ~-2.5 ~-2.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-2.5 ~-2.5 ~-2.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/5 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction index bdcfe8cb6..9a6c8d3a7 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/6 #ダメージ処理 -execute positioned ~-3 ~-3 ~-3 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-3 ~-3 ~-3 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/6 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction index 94e6731bc..7c56f792e 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/kame_hame_ha/7 #ダメージ処理 -execute positioned ~-3.5 ~-3.5 ~-3.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-3.5 ~-3.5 ~-3.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/kame_hame_ha/7 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/kame_hame_ha +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/kame_hame_ha diff --git a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction index a3fef6d43..af7ec44c1 100644 --- a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction @@ -1,11 +1,11 @@ #> ai:skill/laser/loop/lightning_laser/ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run effect give @s invisibility 10 5 true -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/lightning_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/lightning_laser/ +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/lightning_laser/ diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction index 816ea1ca7..8f35b43ec 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction @@ -1,11 +1,11 @@ #> ai:skill/laser/loop/piglin_snipe/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/piglin_snipe/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/piglin_snipe/damage execute positioned ~-0.5 ~-0.5 ~-0.5 unless block ^ ^ ^ #block:no_collision run data modify storage mob_data: Call.Loop set value 0 #演出 function makeup:skill/enemy/laser/loop/piglin_snipe/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -#execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loop/piglin_snipe/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/piglin_snipe/ +#execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loop/piglin_snipe/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/piglin_snipe/ diff --git a/data/ai/function/skill/laser/loop/red_laser/.mcfunction b/data/ai/function/skill/laser/loop/red_laser/.mcfunction index eedb69e6a..43e9f9462 100644 --- a/data/ai/function/skill/laser/loop/red_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/red_laser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/red_laser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/red_laser/damage #演出 function makeup:skill/enemy/laser/loop/red_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loop/red_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/red_laser/ +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loop/red_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/red_laser/ diff --git a/data/ai/function/skill/laser/loop/security_laser/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/.mcfunction index 1a34659f5..b9fc0aa2c 100644 --- a/data/ai/function/skill/laser/loop/security_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/.mcfunction @@ -1,4 +1,4 @@ #> ai:skill/laser/loop/security_laser/ -execute if data storage mob_data: Call{Type:"Single"} run function skill:enemy/laser/loop/security_laser/single/ -execute if data storage mob_data: Call{Type:"Dual"} run function skill:enemy/laser/loop/security_laser/dual/ +execute if data storage mob_data: Call{Type:"Single"} run function ai:skill/laser/loop/security_laser/single/ +execute if data storage mob_data: Call{Type:"Dual"} run function ai:skill/laser/loop/security_laser/dual/ #execute if data storage mob_data: Call{Type:"Triple"} diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction index 8a57d60c6..850a1fc9b 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/laser/loop/security_laser/dual/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/dual/damage #演出 function makeup:skill/enemy/laser/loop/security_laser/dual/ @@ -8,4 +8,4 @@ execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/securit #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/dual/1 +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/security_laser/dual/1 diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction index 2a06abdbc..5c236eb94 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/laser/loop/security_laser/dual/1 #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/dual/damage #演出 function makeup:skill/enemy/laser/loop/security_laser/dual/ @@ -8,4 +8,4 @@ execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/securit #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/dual/2 +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/security_laser/dual/2 diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction index b93c0977b..cfd8eed7d 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/laser/loop/security_laser/dual/2 #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/dual/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/dual/damage #演出 function makeup:skill/enemy/laser/loop/security_laser/dual/ @@ -8,4 +8,4 @@ execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/securit #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/dual/ +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/security_laser/dual/ diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction index 2984bea64..e497195bd 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/damage.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/laser/loop/security_laser/dual/damage data modify storage score_damage: Argument.DeathCause set value '[{"translate":"%1$sは%2$sによって気化した。","with":[{"selector":"@s"},{"nbt":"MobName","storage":"mob_data:","interpret":true}]}]' execute unless data storage score_damage: Argument{Damage:0} run function score_damage:api/attack -function skill:enemy/laser/main/call_on_attack +function ai:skill/laser/main/call_on_attack execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit scoreboard players set @s ProjectileTime -5 diff --git a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction index be5c1c38c..9f3d0227a 100644 --- a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/security_laser/single/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/security_laser/single/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/single/damage #演出 function makeup:skill/enemy/laser/loop/security_laser/single/ #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/security_laser/single/ +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/security_laser/single/ diff --git a/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction index e513790c7..b7621df28 100644 --- a/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/single/damage.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/laser/loop/security_laser/single/damage data modify storage score_damage: Argument.DeathCause set value '[{"translate":"%1$sは%2$sによって蒸発させられた。","with":[{"selector":"@s"},{"nbt":"MobName","storage":"mob_data:","interpret":true}]}]' execute unless data storage score_damage: Argument{Damage:0} run function score_damage:api/attack -function skill:enemy/laser/main/call_on_attack +function ai:skill/laser/main/call_on_attack execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit scoreboard players set @s ProjectileTime -5 diff --git a/data/ai/function/skill/laser/loop/test.mcfunction b/data/ai/function/skill/laser/loop/test.mcfunction index 9cb7e04cf..9f75b436d 100644 --- a/data/ai/function/skill/laser/loop/test.mcfunction +++ b/data/ai/function/skill/laser/loop/test.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/test #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/main/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 function makeup:skill/enemy/laser/loop/test #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/test +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/test diff --git a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction index b248def6b..3e6b1007f 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/violet_laser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/violet_laser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/violet_laser/damage #演出 function makeup:skill/enemy/laser/loop/violet_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopviolet_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/violet_laser/ +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loopviolet_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/violet_laser/ diff --git a/data/ai/function/skill/laser/loop/white_laser/.mcfunction b/data/ai/function/skill/laser/loop/white_laser/.mcfunction index d5e58b9c7..8d0ab6b93 100644 --- a/data/ai/function/skill/laser/loop/white_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/white_laser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/white_laser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/white_laser/damage #演出 function makeup:skill/enemy/laser/loop/white_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopwhite_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/white_laser/ +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loopwhite_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/white_laser/ diff --git a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction index 5fb126e08..f95c3f02c 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction @@ -1,10 +1,10 @@ #> ai:skill/laser/loop/yellow_laser/ #ダメージ処理 -execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function skill:enemy/laser/loop/yellow_laser/damage +execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/yellow_laser/damage #演出 function makeup:skill/enemy/laser/loop/yellow_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop -execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function skill:enemy/laser/loopyellow_laser/end -execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function skill:enemy/laser/loop/yellow_laser/ +execute if data storage mob_data: Call{Loop:0} positioned ^ ^ ^ run function ai:skill/laser/loopyellow_laser/end +execute unless data storage mob_data: Call{Loop:0} positioned ^ ^ ^0.5 if block ^ ^ ^ #block:no_collision run function ai:skill/laser/loop/yellow_laser/ diff --git a/data/ai/function/skill/laser/main/damage.mcfunction b/data/ai/function/skill/laser/main/damage.mcfunction index b5240dedc..71f46d826 100644 --- a/data/ai/function/skill/laser/main/damage.mcfunction +++ b/data/ai/function/skill/laser/main/damage.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/laser/main/damage execute unless data storage score_damage: Argument{Damage:0} if entity @s[nbt=!{Health:0.0f}] run function score_damage:api/attack -function skill:enemy/laser/main/call_on_attack +function ai:skill/laser/main/call_on_attack execute if entity @s[nbt=!{Health:0.0f}] run function makeup:enemy/projectile_hit scoreboard players set @s ProjectileTime -10 diff --git a/data/ai/function/skill/laser/main/fork.mcfunction b/data/ai/function/skill/laser/main/fork.mcfunction index 31157a9b1..995524c5f 100644 --- a/data/ai/function/skill/laser/main/fork.mcfunction +++ b/data/ai/function/skill/laser/main/fork.mcfunction @@ -1,13 +1,13 @@ #> ai:skill/laser/main/fork -execute if data storage mob_data: Call{Laser:"Test"} run function skill:enemy/laser/loop/test -execute if data storage mob_data: Call{Laser:"PiglinSnipe"} run function skill:enemy/laser/loop/piglin_snipe/ -execute if data storage mob_data: Call{Laser:"FrozenLaser"} run function skill:enemy/laser/loop/frozenlaser/ -execute if data storage mob_data: Call{Laser:"KameHameHa"} run function skill:enemy/laser/loop/kame_hame_ha/ -execute if data storage mob_data: Call{Laser:"SecurityLaser"} run function skill:enemy/laser/loop/security_laser/ -execute if data storage mob_data: Call{Laser:"LightningLaser"} run function skill:enemy/laser/loop/lightning_laser/ -execute if data storage mob_data: Call{Laser:"RedLaser"} run function skill:enemy/laser/loop/red_laser/ -execute if data storage mob_data: Call{Laser:"BlueLaser"} run function skill:enemy/laser/loop/blue_laser/ -execute if data storage mob_data: Call{Laser:"GreenLaser"} run function skill:enemy/laser/loop/green_laser/ -execute if data storage mob_data: Call{Laser:"YellowLaser"} run function skill:enemy/laser/loop/yellow_laser/ -execute if data storage mob_data: Call{Laser:"VioletLaser"} run function skill:enemy/laser/loop/violet_laser/ -execute if data storage mob_data: Call{Laser:"WhiteLaser"} run function skill:enemy/laser/loop/white_laser/ +execute if data storage mob_data: Call{Laser:"Test"} run function ai:skill/laser/loop/test +execute if data storage mob_data: Call{Laser:"PiglinSnipe"} run function ai:skill/laser/loop/piglin_snipe/ +execute if data storage mob_data: Call{Laser:"FrozenLaser"} run function ai:skill/laser/loop/frozenlaser/ +execute if data storage mob_data: Call{Laser:"KameHameHa"} run function ai:skill/laser/loop/kame_hame_ha/ +execute if data storage mob_data: Call{Laser:"SecurityLaser"} run function ai:skill/laser/loop/security_laser/ +execute if data storage mob_data: Call{Laser:"LightningLaser"} run function ai:skill/laser/loop/lightning_laser/ +execute if data storage mob_data: Call{Laser:"RedLaser"} run function ai:skill/laser/loop/red_laser/ +execute if data storage mob_data: Call{Laser:"BlueLaser"} run function ai:skill/laser/loop/blue_laser/ +execute if data storage mob_data: Call{Laser:"GreenLaser"} run function ai:skill/laser/loop/green_laser/ +execute if data storage mob_data: Call{Laser:"YellowLaser"} run function ai:skill/laser/loop/yellow_laser/ +execute if data storage mob_data: Call{Laser:"VioletLaser"} run function ai:skill/laser/loop/violet_laser/ +execute if data storage mob_data: Call{Laser:"WhiteLaser"} run function ai:skill/laser/loop/white_laser/ diff --git a/data/ai/function/skill/laser/main/init.mcfunction b/data/ai/function/skill/laser/main/init.mcfunction index 9932b973c..e41fc75df 100644 --- a/data/ai/function/skill/laser/main/init.mcfunction +++ b/data/ai/function/skill/laser/main/init.mcfunction @@ -13,4 +13,4 @@ data modify storage mob_data: Call.Owner set from entity @s Owner data modify storage mob_data: Call.Tags set from entity @s Tags #ループ実行 -execute anchored eyes run function skill:enemy/laser/main/fork +execute anchored eyes run function ai:skill/laser/main/fork diff --git a/data/ai/function/skill/parabolic_motion/.mcfunction b/data/ai/function/skill/parabolic_motion/.mcfunction index 63100f05c..ac2cf22fb 100644 --- a/data/ai/function/skill/parabolic_motion/.mcfunction +++ b/data/ai/function/skill/parabolic_motion/.mcfunction @@ -1,4 +1,4 @@ -#> skill:enemy/parabolic_motion/ +#> ai:skill/parabolic_motion/ # # 実行者のMotionを操作して放物運動をさせます # @@ -20,7 +20,7 @@ execute unless data storage mob_data: Call.MotionGravity run tellraw @a [{"text":"ParabolicMotionの重力加速度は必ず設定する必要があります"}] # 本処理に移行 - execute if data storage mob_data: Call.MotionTick if data storage mob_data: Call.MotionGravity run function skill:enemy/parabolic_motion/core/ + execute if data storage mob_data: Call.MotionTick if data storage mob_data: Call.MotionGravity run function ai:skill/parabolic_motion/core/ # リセット data remove storage mob_data: Call diff --git a/data/ai/function/skill/parabolic_motion/core/.mcfunction b/data/ai/function/skill/parabolic_motion/core/.mcfunction index c915afb14..46e561f69 100644 --- a/data/ai/function/skill/parabolic_motion/core/.mcfunction +++ b/data/ai/function/skill/parabolic_motion/core/.mcfunction @@ -1,8 +1,8 @@ -#> skill:enemy/parabolic_motion/core/ +#> ai:skill/parabolic_motion/core/ # # ParabolicMotionに関するメイン処理を行います # -# @within function skill:enemy/parabolic_motion/ +# @within function ai:skill/parabolic_motion/ # 0-0-0-0-0を原点に召喚する # 0-0-0-0-1を実行位置に召喚する @@ -14,7 +14,7 @@ execute store result score # Calc run data get storage mob_data: Call.MotionGravity 5000 # Motionを計算する - function skill:enemy/parabolic_motion/core/calc + function ai:skill/parabolic_motion/core/calc # リセット execute as 0-0-0-0-0 run function calc:geometry/return_marker diff --git a/data/ai/function/skill/parabolic_motion/core/calc.mcfunction b/data/ai/function/skill/parabolic_motion/core/calc.mcfunction index 707ea8ba5..0699ad868 100644 --- a/data/ai/function/skill/parabolic_motion/core/calc.mcfunction +++ b/data/ai/function/skill/parabolic_motion/core/calc.mcfunction @@ -1,8 +1,8 @@ -#> skill:enemy/parabolic_motion/core/calc +#> ai:skill/parabolic_motion/core/calc # # ParabolicMotionに関する計算処理を行います # -# @within function skill:enemy/parabolic_motion/core/ +# @within function ai:skill/parabolic_motion/core/ # @s と 0-0-0-0-1 のX座標差を10倍で保存 execute store result score _ _ run data get entity @s Pos[0] 10000 @@ -40,4 +40,4 @@ execute in area:control_area positioned 0.0 0.0 0.0 as 0-0-0-0-0 run function #util:distance execute store result storage mob_data: Call.Speed.Set int 1 run data get storage util: out 100 execute store result storage mob_data: Call.Gravity.Set int 1 run data get storage mob_data: Call.MotionGravity 10000 - execute at @s run function skill:enemy/smart_motion/ + execute at @s run function ai:skill/smart_motion/ diff --git a/data/ai/function/skill/reraise/.mcfunction b/data/ai/function/skill/reraise/.mcfunction index 1ddabc8fd..5fba6eded 100644 --- a/data/ai/function/skill/reraise/.mcfunction +++ b/data/ai/function/skill/reraise/.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/reraise/ -execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData run function skill:enemy/reraise/success +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData run function ai:skill/reraise/success diff --git a/data/ai/function/skill/reraise/death_cancel.mcfunction b/data/ai/function/skill/reraise/death_cancel.mcfunction index 309078dc4..5dce026e4 100644 --- a/data/ai/function/skill/reraise/death_cancel.mcfunction +++ b/data/ai/function/skill/reraise/death_cancel.mcfunction @@ -3,13 +3,13 @@ ### Reraise処理 ############################## tag @s remove Garbage -function skill:enemy/reraise/health_recovery +function ai:skill/reraise/health_recovery ### RaiseCount 減少 function #oh_my_dat:please execute store result score @s _ run data get storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count 0.99999999 execute unless score @s _ matches 0 store result storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].RaiseData.Count int 1 run scoreboard players get @s _ -execute if score @s _ matches 0 run function skill:enemy/reraise/remove_raise +execute if score @s _ matches 0 run function ai:skill/reraise/remove_raise ### 演出 ### function makeup:skill/enemy/reraise/death_cancel diff --git a/data/ai/function/skill/smart_motion/.mcfunction b/data/ai/function/skill/smart_motion/.mcfunction index ae03dafd5..b6e6b4000 100644 --- a/data/ai/function/skill/smart_motion/.mcfunction +++ b/data/ai/function/skill/smart_motion/.mcfunction @@ -6,13 +6,13 @@ execute if data storage mob_data: Call{TP:1b} unless data storage mob_data: Call execute if data storage mob_data: Call{TP:1b,KeepRotation:1b} run function smart_motion:core/tp_keep_rotation #Rotation -execute if data storage mob_data: Call.Rotation run function skill:enemy/smart_motion/rotation +execute if data storage mob_data: Call.Rotation run function ai:skill/smart_motion/rotation #Speed -execute if data storage mob_data: Call.Speed run function skill:enemy/smart_motion/speed +execute if data storage mob_data: Call.Speed run function ai:skill/smart_motion/speed #Gravity -execute if data storage mob_data: Call.Gravity run function skill:enemy/smart_motion/gravity +execute if data storage mob_data: Call.Gravity run function ai:skill/smart_motion/gravity #Start execute if data storage mob_data: Call{Start:1b} run scoreboard players add @s[tag=!SmartMotion] NativeFlag 1 @@ -23,7 +23,7 @@ execute if data storage mob_data: Call{Stop:1b} run scoreboard players remove @s execute if data storage mob_data: Call{Stop:1b} run tag @s remove SmartMotion #OnBlock -execute if data storage mob_data: Call.OnBlock run function skill:enemy/smart_motion/on_block +execute if data storage mob_data: Call.OnBlock run function ai:skill/smart_motion/on_block #E (反発係数) execute if data storage mob_data: Call.E store result score @s sm.E run data get storage mob_data: Call.E diff --git a/data/ai/function/skill/smart_motion/gravity.mcfunction b/data/ai/function/skill/smart_motion/gravity.mcfunction index ab253108e..90f23b2f8 100644 --- a/data/ai/function/skill/smart_motion/gravity.mcfunction +++ b/data/ai/function/skill/smart_motion/gravity.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Gravity.Add execute store result score @s _ run data get storage mob_data: Call.Gravity.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute if data storage mob_data: Call.Gravity.Set store result score @s sm.Gravity run data get storage mob_data: Call.Gravity.Set scoreboard players operation @s sm.Gravity += @s Calc #Limit diff --git a/data/ai/function/skill/smart_motion/speed.mcfunction b/data/ai/function/skill/smart_motion/speed.mcfunction index 3082df829..29e313994 100644 --- a/data/ai/function/skill/smart_motion/speed.mcfunction +++ b/data/ai/function/skill/smart_motion/speed.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Speed.Add execute store result score @s _ run data get storage mob_data: Call.Speed.Range -execute unless score @s _ matches 0 run function skill:enemy/change_move/range +execute unless score @s _ matches 0 run function ai:skill/change_move/range execute if data storage mob_data: Call.Speed.Set store result score @s sm.Speed run data get storage mob_data: Call.Speed.Set scoreboard players operation @s sm.Speed += @s Calc #Limit diff --git a/data/ai/function/skill/spawn/.mcfunction b/data/ai/function/skill/spawn/.mcfunction index 9cb8481e1..e76bda125 100644 --- a/data/ai/function/skill/spawn/.mcfunction +++ b/data/ai/function/skill/spawn/.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/spawn/ summon armor_stand ~ ~ ~ {Tags:[Spawn],DeathTime:19s,NoAI:1b,Silent:1b,Invisible:1b,DisabledSlots:2097151,ArmorItems:[{},{},{},{id:"minecraft:stick",Count:1b,tag:{CustomModelData:1}}]} -execute if data storage mob_data: Call.CountRange run function skill:enemy/spawn/count_range +execute if data storage mob_data: Call.CountRange run function ai:skill/spawn/count_range scoreboard players operation _ Level = @s Level -execute if data storage mob_data: Call{IsChild:1b} run function skill:enemy/spawn/child -execute as @e[tag=Spawn,tag=!CallSpawned,distance=0] run function skill:enemy/spawn/apply +execute if data storage mob_data: Call{IsChild:1b} run function ai:skill/spawn/child +execute as @e[tag=Spawn,tag=!CallSpawned,distance=0] run function ai:skill/spawn/apply diff --git a/data/ai/function/skill/step/.mcfunction b/data/ai/function/skill/step/.mcfunction index e69150184..d4868946f 100644 --- a/data/ai/function/skill/step/.mcfunction +++ b/data/ai/function/skill/step/.mcfunction @@ -1,7 +1,7 @@ #> ai:skill/step/ #向きを設定 -function skill:enemy/step/direction +function ai:skill/step/direction #速度を設定 -function skill:enemy/step/speed +function ai:skill/step/speed #Motionに適用 -function skill:enemy/step/set_motion +function ai:skill/step/set_motion diff --git a/data/ai/function/skill/step/direction.mcfunction b/data/ai/function/skill/step/direction.mcfunction index a0603075e..6714e9167 100644 --- a/data/ai/function/skill/step/direction.mcfunction +++ b/data/ai/function/skill/step/direction.mcfunction @@ -4,7 +4,7 @@ execute positioned as @s run tp @s ~ ~ ~ ~ ~ #Marker召喚 execute in area:control_area positioned 0.0 0.0 0.0 run function calc:geometry/tp_00000 #向きを設定 -execute if data storage mob_data: Call.DirectionRange run function skill:enemy/step/range/direction +execute if data storage mob_data: Call.DirectionRange run function ai:skill/step/range/direction #水平 execute store result score _ Calc run data get entity @s Rotation[0] 100 execute if data storage mob_data: Call.Absolute{Horizontal:1b} run scoreboard players set _ Calc 0 diff --git a/data/ai/function/skill/step/speed.mcfunction b/data/ai/function/skill/step/speed.mcfunction index e76fc2774..912989126 100644 --- a/data/ai/function/skill/step/speed.mcfunction +++ b/data/ai/function/skill/step/speed.mcfunction @@ -1,7 +1,7 @@ #> ai:skill/step/speed #速度を設定 execute as 0-0-0-0-0 at @s run tp @s ^ ^ ^1 -execute if data storage mob_data: Call.SpeedRange run function skill:enemy/step/range/speed +execute if data storage mob_data: Call.SpeedRange run function ai:skill/step/range/speed execute store result score _ _ run data get storage mob_data: Call.Speed 100 execute store result score _ Calc run data get entity 0-0-0-0-0 Pos[0] 100 execute store result entity 0-0-0-0-0 Pos[0] double 0.0001 run scoreboard players operation _ Calc *= _ _ diff --git a/data/ai/function/skill/teleport/.mcfunction b/data/ai/function/skill/teleport/.mcfunction index 3aba68941..4c2bc0d95 100644 --- a/data/ai/function/skill/teleport/.mcfunction +++ b/data/ai/function/skill/teleport/.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/teleport/ #実行位置にTPする ブロックにめり込む場合は後方に補正 -function skill:enemy/teleport/loop +function ai:skill/teleport/loop #演出 execute if data storage mob_data: Call{Message:1b} run function makeup:skill/enemy/teleport diff --git a/data/ai/function/skill/teleport/loop.mcfunction b/data/ai/function/skill/teleport/loop.mcfunction index 23a6ef620..ba526c737 100644 --- a/data/ai/function/skill/teleport/loop.mcfunction +++ b/data/ai/function/skill/teleport/loop.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/teleport/loop execute if block ^ ^ ^ #block:no_collision run tp @s ^ ^ ^ -execute unless block ^ ^ ^ #block:no_collision positioned ^ ^ ^-0.5 run function skill:enemy/teleport/loop +execute unless block ^ ^ ^ #block:no_collision positioned ^ ^ ^-0.5 run function ai:skill/teleport/loop diff --git a/data/entity/function/death/check.mcfunction b/data/entity/function/death/check.mcfunction index e56045008..0ad8f6eda 100644 --- a/data/entity/function/death/check.mcfunction +++ b/data/entity/function/death/check.mcfunction @@ -11,6 +11,6 @@ tag @s add Garbage #ダメージ表示 execute if entity @s[scores={StoredDamage=-2147483648..}] run function enemy:show_damage/ -execute if entity @s[tag=HasRaise] run function skill:enemy/reraise/death_cancel +execute if entity @s[tag=HasRaise] run function ai:skill/reraise/death_cancel execute if entity @s[tag=Garbage] run function entity:death/act diff --git a/data/main/function/task/temporary.mcfunction b/data/main/function/task/temporary.mcfunction index 4d748e49f..9289380e0 100644 --- a/data/main/function/task/temporary.mcfunction +++ b/data/main/function/task/temporary.mcfunction @@ -2,10 +2,10 @@ ### 毎ティック一時処理 ###魅了 -#execute if score @s matches 1.. run function skill:enemy/charm/tick +#execute if score @s matches 1.. run function ai:skill/charm/tick ###幻影 -execute if score @s BlinkSubTimer matches 1.. run function skill:enemy/blink/activate/decorate/tick +execute if score @s BlinkSubTimer matches 1.. run function ai:skill/blink/activate/decorate/tick ###隼斬り遅延発動処理 execute if score @s FalconSlashTimer matches 1.. run function skill:act/knight/falcon_slash/decorate/tick @@ -14,4 +14,4 @@ execute if score @s FalconSlashTimer matches 1.. run function skill:act/knight/f execute if score @s RagingCount matches 1.. run function skill:act/knight/raging_slash/tick ###詠唱演出 -execute if score @s NextActionTick matches 1.. run function skill:enemy/delay_action/act/ +execute if score @s NextActionTick matches 1.. run function ai:skill/delay_action/act/ diff --git a/data/skill/functions/act/common/condemnation/effect1.mcfunction b/data/skill/functions/act/common/condemnation/effect1.mcfunction index e81eb47b1..9965ffd40 100644 --- a/data/skill/functions/act/common/condemnation/effect1.mcfunction +++ b/data/skill/functions/act/common/condemnation/effect1.mcfunction @@ -15,7 +15,7 @@ function #oh_my_dat:please execute store result storage mob_data: Call.Level.Add int -0.1 run scoreboard players get @s[tag=!Boss] Level execute store result storage mob_data: Call.Level.Add int -0.2 run scoreboard players get @s[tag=Boss] Level data modify storage mob_data: Call.Level.Range set value 0 -function skill:enemy/change_status/ +function ai:skill/change_status/ # カスタムネームを更新 execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName run data modify entity @s CustomName set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName From d7003a12554d0ef7b136dba166327636ac2a2b82 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 17:46:46 +0900 Subject: [PATCH 09/27] =?UTF-8?q?GH-790=20Add=20CallSkill=E3=81=AE?= =?UTF-8?q?=E6=BC=94=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ai/skill/blink/activate/0.mcfunction | 8 + .../ai/skill/blink/activate/1.mcfunction | 2 + .../function/ai/skill/blink/cast/0.mcfunction | 4 + .../huge_explosion_01/fc_001.mcfunction | 48 + .../huge_explosion_01/fc_002.mcfunction | 48 + .../huge_explosion_01/fc_003.mcfunction | 48 + .../huge_explosion_01/fc_004.mcfunction | 48 + .../huge_explosion_01/fc_005.mcfunction | 48 + .../huge_explosion_01/fc_006.mcfunction | 48 + .../huge_explosion_01/fc_007.mcfunction | 48 + .../huge_explosion_01/fc_008.mcfunction | 48 + .../huge_explosion_01/fc_009.mcfunction | 48 + .../huge_explosion_01/fc_010.mcfunction | 48 + .../huge_explosion_01/fc_011.mcfunction | 48 + .../huge_explosion_01/fc_012.mcfunction | 48 + .../huge_explosion_01/fc_013.mcfunction | 48 + .../huge_explosion_01/fc_014.mcfunction | 48 + .../huge_explosion_01/fc_015.mcfunction | 48 + .../huge_explosion_01/fc_016.mcfunction | 48 + .../huge_explosion_01/fc_017.mcfunction | 48 + .../huge_explosion_01/fc_018.mcfunction | 48 + .../huge_explosion_01/fc_019.mcfunction | 48 + .../huge_explosion_01/fc_020.mcfunction | 48 + .../huge_explosion_01/fc_021.mcfunction | 48 + .../huge_explosion_01/fc_022.mcfunction | 48 + .../huge_explosion_01/fc_023.mcfunction | 48 + .../huge_explosion_01/fc_024.mcfunction | 48 + .../huge_explosion_01/fc_025.mcfunction | 48 + .../huge_explosion_01/fc_026.mcfunction | 48 + .../huge_explosion_01/fc_027.mcfunction | 48 + .../huge_explosion_01/fc_028.mcfunction | 48 + .../huge_explosion_01/fc_029.mcfunction | 48 + .../huge_explosion_01/fc_030.mcfunction | 48 + .../huge_explosion_01/fc_031.mcfunction | 48 + .../huge_explosion_01/fc_032.mcfunction | 48 + .../huge_explosion_01/fc_033.mcfunction | 48 + .../huge_explosion_01/fc_034.mcfunction | 48 + .../huge_explosion_01/fc_035.mcfunction | 48 + .../huge_explosion_01/fc_036.mcfunction | 48 + .../huge_explosion_01/fc_037.mcfunction | 48 + .../huge_explosion_01/fc_038.mcfunction | 48 + .../huge_explosion_01/fc_039.mcfunction | 48 + .../huge_explosion_01/fc_040.mcfunction | 48 + .../huge_explosion_01/fc_041.mcfunction | 48 + .../huge_explosion_01/fc_042.mcfunction | 48 + .../huge_explosion_01/fc_043.mcfunction | 48 + .../huge_explosion_01/fc_044.mcfunction | 48 + .../huge_explosion_01/fc_045.mcfunction | 48 + .../huge_explosion_01/fc_046.mcfunction | 48 + .../huge_explosion_01/fc_047.mcfunction | 48 + .../huge_explosion_01/fc_048.mcfunction | 48 + .../huge_explosion_01/fc_049.mcfunction | 48 + .../huge_explosion_01/fc_050.mcfunction | 48 + .../huge_explosion_01/fc_051.mcfunction | 48 + .../huge_explosion_01/fc_052.mcfunction | 48 + .../huge_explosion_01/fc_053.mcfunction | 48 + .../huge_explosion_01/fc_054.mcfunction | 48 + .../huge_explosion_01/fc_055.mcfunction | 48 + .../huge_explosion_01/fc_056.mcfunction | 48 + .../huge_explosion_01/fc_057.mcfunction | 48 + .../huge_explosion_01/fc_058.mcfunction | 48 + .../huge_explosion_01/fc_059.mcfunction | 48 + .../huge_explosion_01/fc_060.mcfunction | 48 + .../huge_explosion_02/fc_001.mcfunction | 48 + .../huge_explosion_02/fc_002.mcfunction | 48 + .../huge_explosion_02/fc_003.mcfunction | 48 + .../huge_explosion_02/fc_004.mcfunction | 48 + .../huge_explosion_02/fc_005.mcfunction | 48 + .../huge_explosion_02/fc_006.mcfunction | 48 + .../huge_explosion_02/fc_007.mcfunction | 48 + .../huge_explosion_02/fc_008.mcfunction | 48 + .../huge_explosion_02/fc_009.mcfunction | 48 + .../huge_explosion_02/fc_010.mcfunction | 48 + .../huge_explosion_02/fc_011.mcfunction | 48 + .../huge_explosion_02/fc_012.mcfunction | 48 + .../huge_explosion_02/fc_013.mcfunction | 48 + .../huge_explosion_02/fc_014.mcfunction | 48 + .../huge_explosion_02/fc_015.mcfunction | 48 + .../huge_explosion_02/fc_016.mcfunction | 48 + .../huge_explosion_02/fc_017.mcfunction | 48 + .../huge_explosion_02/fc_018.mcfunction | 48 + .../huge_explosion_02/fc_019.mcfunction | 48 + .../huge_explosion_02/fc_020.mcfunction | 48 + .../huge_explosion_02/fc_021.mcfunction | 48 + .../huge_explosion_02/fc_022.mcfunction | 48 + .../huge_explosion_02/fc_023.mcfunction | 48 + .../huge_explosion_02/fc_024.mcfunction | 48 + .../huge_explosion_02/fc_025.mcfunction | 48 + .../huge_explosion_02/fc_026.mcfunction | 48 + .../huge_explosion_02/fc_027.mcfunction | 48 + .../huge_explosion_02/fc_028.mcfunction | 48 + .../huge_explosion_02/fc_029.mcfunction | 48 + .../huge_explosion_02/fc_030.mcfunction | 48 + .../huge_explosion_02/fc_031.mcfunction | 48 + .../huge_explosion_02/fc_032.mcfunction | 48 + .../huge_explosion_02/fc_033.mcfunction | 48 + .../huge_explosion_02/fc_034.mcfunction | 48 + .../huge_explosion_02/fc_035.mcfunction | 48 + .../huge_explosion_02/fc_036.mcfunction | 48 + .../huge_explosion_02/fc_037.mcfunction | 48 + .../huge_explosion_02/fc_038.mcfunction | 48 + .../huge_explosion_02/fc_039.mcfunction | 48 + .../huge_explosion_02/fc_040.mcfunction | 48 + .../huge_explosion_02/fc_041.mcfunction | 48 + .../huge_explosion_02/fc_042.mcfunction | 48 + .../huge_explosion_02/fc_043.mcfunction | 48 + .../huge_explosion_02/fc_044.mcfunction | 48 + .../huge_explosion_02/fc_045.mcfunction | 48 + .../huge_explosion_02/fc_046.mcfunction | 48 + .../huge_explosion_02/fc_047.mcfunction | 48 + .../huge_explosion_02/fc_048.mcfunction | 48 + .../huge_explosion_02/fc_049.mcfunction | 48 + .../huge_explosion_02/fc_050.mcfunction | 48 + .../huge_explosion_02/fc_051.mcfunction | 48 + .../huge_explosion_02/fc_052.mcfunction | 48 + .../huge_explosion_02/fc_053.mcfunction | 48 + .../huge_explosion_02/fc_054.mcfunction | 48 + .../huge_explosion_02/fc_055.mcfunction | 48 + .../huge_explosion_02/fc_056.mcfunction | 48 + .../huge_explosion_02/fc_057.mcfunction | 48 + .../huge_explosion_02/fc_058.mcfunction | 48 + .../huge_explosion_02/fc_059.mcfunction | 48 + .../huge_explosion_02/fc_060.mcfunction | 48 + .../bubble_launcher_01/fc_001.mcfunction | 10 + .../bubble_launcher_01/fc_002.mcfunction | 10 + .../bubble_launcher_01/fc_003.mcfunction | 10 + .../bubble_launcher_01/fc_004.mcfunction | 10 + .../bubble_launcher_01/fc_005.mcfunction | 10 + .../bubble_launcher_01/fc_006.mcfunction | 10 + .../bubble_launcher_01/fc_007.mcfunction | 10 + .../bubble_launcher_01/fc_008.mcfunction | 10 + .../bubble_launcher_01/fc_009.mcfunction | 10 + .../bubble_launcher_01/fc_010.mcfunction | 10 + .../bubble_launcher_01/fc_011.mcfunction | 10 + .../bubble_launcher_01/fc_012.mcfunction | 10 + .../bubble_launcher_01/fc_013.mcfunction | 10 + .../bubble_launcher_01/fc_014.mcfunction | 10 + .../bubble_launcher_01/fc_015.mcfunction | 10 + .../bubble_launcher_01/fc_016.mcfunction | 10 + .../bubble_launcher_01/fc_017.mcfunction | 10 + .../bubble_launcher_01/fc_018.mcfunction | 10 + .../bubble_launcher_01/fc_019.mcfunction | 10 + .../bubble_launcher_01/fc_020.mcfunction | 10 + .../bubble_launcher_01/fc_021.mcfunction | 10 + .../bubble_launcher_01/fc_022.mcfunction | 10 + .../bubble_launcher_01/fc_023.mcfunction | 10 + .../bubble_launcher_01/fc_024.mcfunction | 10 + .../bubble_launcher_01/fc_025.mcfunction | 10 + .../bubble_launcher_01/fc_026.mcfunction | 10 + .../bubble_launcher_01/fc_027.mcfunction | 10 + .../bubble_launcher_01/fc_028.mcfunction | 10 + .../bubble_launcher_01/fc_029.mcfunction | 10 + .../bubble_launcher_01/fc_030.mcfunction | 10 + .../bubble_launcher_01/fc_031.mcfunction | 10 + .../bubble_launcher_01/fc_032.mcfunction | 10 + .../bubble_launcher_01/fc_033.mcfunction | 10 + .../bubble_launcher_01/fc_034.mcfunction | 10 + .../bubble_launcher_01/fc_035.mcfunction | 10 + .../bubble_launcher_01/fc_036.mcfunction | 10 + .../bubble_launcher_01/fc_037.mcfunction | 10 + .../bubble_launcher_01/fc_038.mcfunction | 10 + .../bubble_launcher_01/fc_039.mcfunction | 10 + .../bubble_launcher_01/fc_040.mcfunction | 10 + .../bubble_launcher_01/fc_041.mcfunction | 10 + .../bubble_launcher_01/fc_042.mcfunction | 10 + .../bubble_launcher_01/fc_043.mcfunction | 10 + .../bubble_launcher_01/fc_044.mcfunction | 10 + .../bubble_launcher_01/fc_045.mcfunction | 10 + .../bubble_launcher_01/fc_046.mcfunction | 10 + .../bubble_launcher_01/fc_047.mcfunction | 10 + .../bubble_launcher_01/fc_048.mcfunction | 10 + .../bubble_launcher_01/fc_049.mcfunction | 10 + .../bubble_launcher_01/fc_050.mcfunction | 10 + .../bubble_launcher_01/fc_051.mcfunction | 10 + .../bubble_launcher_01/fc_052.mcfunction | 10 + .../bubble_launcher_01/fc_053.mcfunction | 10 + .../bubble_launcher_01/fc_054.mcfunction | 10 + .../bubble_launcher_01/fc_055.mcfunction | 10 + .../bubble_launcher_01/fc_056.mcfunction | 10 + .../bubble_launcher_01/fc_057.mcfunction | 10 + .../bubble_launcher_01/fc_058.mcfunction | 10 + .../bubble_launcher_01/fc_059.mcfunction | 10 + .../bubble_launcher_01/fc_060.mcfunction | 10 + .../bubble_launcher_01/fc_061.mcfunction | 10 + .../bubble_launcher_01/fc_062.mcfunction | 10 + .../bubble_launcher_01/fc_063.mcfunction | 10 + .../bubble_launcher_01/fc_064.mcfunction | 10 + .../bubble_launcher_01/fc_065.mcfunction | 10 + .../bubble_launcher_01/fc_066.mcfunction | 10 + .../bubble_launcher_01/fc_067.mcfunction | 10 + .../bubble_launcher_01/fc_068.mcfunction | 10 + .../bubble_launcher_01/fc_069.mcfunction | 10 + .../bubble_launcher_01/fc_070.mcfunction | 10 + .../bubble_launcher_01/fc_071.mcfunction | 10 + .../bubble_launcher_01/fc_072.mcfunction | 10 + .../bubble_launcher_01/fc_073.mcfunction | 10 + .../bubble_launcher_01/fc_074.mcfunction | 10 + .../bubble_launcher_01/fc_075.mcfunction | 10 + .../bubble_launcher_01/fc_076.mcfunction | 10 + .../bubble_launcher_01/fc_077.mcfunction | 10 + .../bubble_launcher_01/fc_078.mcfunction | 10 + .../bubble_launcher_01/fc_079.mcfunction | 10 + .../bubble_launcher_01/fc_080.mcfunction | 10 + .../bubble_launcher_02/fc_001.mcfunction | 10 + .../bubble_launcher_02/fc_002.mcfunction | 10 + .../bubble_launcher_02/fc_003.mcfunction | 10 + .../bubble_launcher_02/fc_004.mcfunction | 10 + .../bubble_launcher_02/fc_005.mcfunction | 10 + .../bubble_launcher_02/fc_006.mcfunction | 10 + .../bubble_launcher_02/fc_007.mcfunction | 10 + .../bubble_launcher_02/fc_008.mcfunction | 10 + .../bubble_launcher_02/fc_009.mcfunction | 10 + .../bubble_launcher_02/fc_010.mcfunction | 10 + .../bubble_launcher_02/fc_011.mcfunction | 10 + .../bubble_launcher_02/fc_012.mcfunction | 10 + .../bubble_launcher_02/fc_013.mcfunction | 10 + .../bubble_launcher_02/fc_014.mcfunction | 10 + .../bubble_launcher_02/fc_015.mcfunction | 10 + .../bubble_launcher_02/fc_016.mcfunction | 10 + .../bubble_launcher_02/fc_017.mcfunction | 10 + .../bubble_launcher_02/fc_018.mcfunction | 10 + .../bubble_launcher_02/fc_019.mcfunction | 10 + .../bubble_launcher_02/fc_020.mcfunction | 10 + .../bubble_launcher_02/fc_021.mcfunction | 10 + .../bubble_launcher_02/fc_022.mcfunction | 10 + .../bubble_launcher_02/fc_023.mcfunction | 10 + .../bubble_launcher_02/fc_024.mcfunction | 10 + .../bubble_launcher_02/fc_025.mcfunction | 10 + .../bubble_launcher_02/fc_026.mcfunction | 10 + .../bubble_launcher_02/fc_027.mcfunction | 10 + .../bubble_launcher_02/fc_028.mcfunction | 10 + .../bubble_launcher_02/fc_029.mcfunction | 10 + .../bubble_launcher_02/fc_030.mcfunction | 10 + .../bubble_launcher_02/fc_031.mcfunction | 10 + .../bubble_launcher_02/fc_032.mcfunction | 10 + .../bubble_launcher_02/fc_033.mcfunction | 10 + .../bubble_launcher_02/fc_034.mcfunction | 10 + .../bubble_launcher_02/fc_035.mcfunction | 10 + .../bubble_launcher_02/fc_036.mcfunction | 10 + .../bubble_launcher_02/fc_037.mcfunction | 10 + .../bubble_launcher_02/fc_038.mcfunction | 10 + .../bubble_launcher_02/fc_039.mcfunction | 10 + .../bubble_launcher_02/fc_040.mcfunction | 10 + .../bubble_launcher_02/fc_041.mcfunction | 10 + .../bubble_launcher_02/fc_042.mcfunction | 10 + .../bubble_launcher_02/fc_043.mcfunction | 10 + .../bubble_launcher_02/fc_044.mcfunction | 10 + .../bubble_launcher_02/fc_045.mcfunction | 10 + .../bubble_launcher_02/fc_046.mcfunction | 10 + .../bubble_launcher_02/fc_047.mcfunction | 10 + .../bubble_launcher_02/fc_048.mcfunction | 10 + .../bubble_launcher_02/fc_049.mcfunction | 10 + .../bubble_launcher_02/fc_050.mcfunction | 10 + .../bubble_launcher_02/fc_051.mcfunction | 10 + .../bubble_launcher_02/fc_052.mcfunction | 10 + .../bubble_launcher_02/fc_053.mcfunction | 10 + .../bubble_launcher_02/fc_054.mcfunction | 10 + .../bubble_launcher_02/fc_055.mcfunction | 10 + .../bubble_launcher_02/fc_056.mcfunction | 10 + .../bubble_launcher_02/fc_057.mcfunction | 10 + .../bubble_launcher_02/fc_058.mcfunction | 10 + .../bubble_launcher_02/fc_059.mcfunction | 10 + .../bubble_launcher_02/fc_060.mcfunction | 10 + .../bubble_launcher_02/fc_061.mcfunction | 10 + .../bubble_launcher_02/fc_062.mcfunction | 10 + .../bubble_launcher_02/fc_063.mcfunction | 10 + .../bubble_launcher_02/fc_064.mcfunction | 10 + .../bubble_launcher_02/fc_065.mcfunction | 10 + .../bubble_launcher_02/fc_066.mcfunction | 10 + .../bubble_launcher_02/fc_067.mcfunction | 10 + .../bubble_launcher_02/fc_068.mcfunction | 10 + .../bubble_launcher_02/fc_069.mcfunction | 10 + .../bubble_launcher_02/fc_070.mcfunction | 10 + .../bubble_launcher_02/fc_071.mcfunction | 10 + .../bubble_launcher_02/fc_072.mcfunction | 10 + .../bubble_launcher_02/fc_073.mcfunction | 10 + .../bubble_launcher_02/fc_074.mcfunction | 10 + .../bubble_launcher_02/fc_075.mcfunction | 10 + .../bubble_launcher_02/fc_076.mcfunction | 10 + .../bubble_launcher_02/fc_077.mcfunction | 10 + .../bubble_launcher_02/fc_078.mcfunction | 10 + .../bubble_launcher_02/fc_079.mcfunction | 10 + .../bubble_launcher_02/fc_080.mcfunction | 10 + .../bubble_launcher_03/fc_001.mcfunction | 10 + .../bubble_launcher_03/fc_002.mcfunction | 10 + .../bubble_launcher_03/fc_003.mcfunction | 10 + .../bubble_launcher_03/fc_004.mcfunction | 10 + .../bubble_launcher_03/fc_005.mcfunction | 10 + .../bubble_launcher_03/fc_006.mcfunction | 10 + .../bubble_launcher_03/fc_007.mcfunction | 10 + .../bubble_launcher_03/fc_008.mcfunction | 10 + .../bubble_launcher_03/fc_009.mcfunction | 10 + .../bubble_launcher_03/fc_010.mcfunction | 10 + .../bubble_launcher_03/fc_011.mcfunction | 10 + .../bubble_launcher_03/fc_012.mcfunction | 10 + .../bubble_launcher_03/fc_013.mcfunction | 10 + .../bubble_launcher_03/fc_014.mcfunction | 10 + .../bubble_launcher_03/fc_015.mcfunction | 10 + .../bubble_launcher_03/fc_016.mcfunction | 10 + .../bubble_launcher_03/fc_017.mcfunction | 10 + .../bubble_launcher_03/fc_018.mcfunction | 10 + .../bubble_launcher_03/fc_019.mcfunction | 10 + .../bubble_launcher_03/fc_020.mcfunction | 10 + .../bubble_launcher_03/fc_021.mcfunction | 10 + .../bubble_launcher_03/fc_022.mcfunction | 10 + .../bubble_launcher_03/fc_023.mcfunction | 10 + .../bubble_launcher_03/fc_024.mcfunction | 10 + .../bubble_launcher_03/fc_025.mcfunction | 10 + .../bubble_launcher_03/fc_026.mcfunction | 10 + .../bubble_launcher_03/fc_027.mcfunction | 10 + .../bubble_launcher_03/fc_028.mcfunction | 10 + .../bubble_launcher_03/fc_029.mcfunction | 10 + .../bubble_launcher_03/fc_030.mcfunction | 10 + .../bubble_launcher_03/fc_031.mcfunction | 10 + .../bubble_launcher_03/fc_032.mcfunction | 10 + .../bubble_launcher_03/fc_033.mcfunction | 10 + .../bubble_launcher_03/fc_034.mcfunction | 10 + .../bubble_launcher_03/fc_035.mcfunction | 10 + .../bubble_launcher_03/fc_036.mcfunction | 10 + .../bubble_launcher_03/fc_037.mcfunction | 10 + .../bubble_launcher_03/fc_038.mcfunction | 10 + .../bubble_launcher_03/fc_039.mcfunction | 10 + .../bubble_launcher_03/fc_040.mcfunction | 10 + .../bubble_launcher_03/fc_041.mcfunction | 10 + .../bubble_launcher_03/fc_042.mcfunction | 10 + .../bubble_launcher_03/fc_043.mcfunction | 10 + .../bubble_launcher_03/fc_044.mcfunction | 10 + .../bubble_launcher_03/fc_045.mcfunction | 10 + .../bubble_launcher_03/fc_046.mcfunction | 10 + .../bubble_launcher_03/fc_047.mcfunction | 10 + .../bubble_launcher_03/fc_048.mcfunction | 10 + .../bubble_launcher_03/fc_049.mcfunction | 10 + .../bubble_launcher_03/fc_050.mcfunction | 10 + .../bubble_launcher_03/fc_051.mcfunction | 10 + .../bubble_launcher_03/fc_052.mcfunction | 10 + .../bubble_launcher_03/fc_053.mcfunction | 10 + .../bubble_launcher_03/fc_054.mcfunction | 10 + .../bubble_launcher_03/fc_055.mcfunction | 10 + .../bubble_launcher_03/fc_056.mcfunction | 10 + .../bubble_launcher_03/fc_057.mcfunction | 10 + .../bubble_launcher_03/fc_058.mcfunction | 10 + .../bubble_launcher_03/fc_059.mcfunction | 10 + .../bubble_launcher_03/fc_060.mcfunction | 10 + .../bubble_launcher_03/fc_061.mcfunction | 10 + .../bubble_launcher_03/fc_062.mcfunction | 10 + .../bubble_launcher_03/fc_063.mcfunction | 10 + .../bubble_launcher_03/fc_064.mcfunction | 10 + .../bubble_launcher_03/fc_065.mcfunction | 10 + .../bubble_launcher_03/fc_066.mcfunction | 10 + .../bubble_launcher_03/fc_067.mcfunction | 10 + .../bubble_launcher_03/fc_068.mcfunction | 10 + .../bubble_launcher_03/fc_069.mcfunction | 10 + .../bubble_launcher_03/fc_070.mcfunction | 10 + .../bubble_launcher_03/fc_071.mcfunction | 10 + .../bubble_launcher_03/fc_072.mcfunction | 10 + .../bubble_launcher_03/fc_073.mcfunction | 10 + .../bubble_launcher_03/fc_074.mcfunction | 10 + .../bubble_launcher_03/fc_075.mcfunction | 10 + .../bubble_launcher_03/fc_076.mcfunction | 10 + .../bubble_launcher_03/fc_077.mcfunction | 10 + .../bubble_launcher_03/fc_078.mcfunction | 10 + .../bubble_launcher_03/fc_079.mcfunction | 10 + .../bubble_launcher_03/fc_080.mcfunction | 10 + .../casting/cast/normal/particle/.mcfunction | 37 + .../cast/normal/particle/firework.mcfunction | 2 + .../normal/sound/portal_travel.mcfunction | 2 + .../charge/normal/particle/.mcfunction | 2 + .../casting/charge/normal/sound/.mcfunction | 4 + .../casting/circle_hearts/fc_001.mcfunction | 6 + .../casting/circle_hearts/fc_002.mcfunction | 6 + .../casting/circle_hearts/fc_003.mcfunction | 6 + .../casting/circle_hearts/fc_004.mcfunction | 6 + .../casting/circle_hearts/fc_005.mcfunction | 6 + .../casting/circle_hearts/fc_006.mcfunction | 6 + .../casting/circle_hearts/fc_007.mcfunction | 6 + .../casting/circle_hearts/fc_008.mcfunction | 6 + .../casting/circle_hearts/fc_009.mcfunction | 6 + .../casting/circle_hearts/fc_010.mcfunction | 6 + .../casting/circle_hearts/fc_011.mcfunction | 6 + .../casting/circle_hearts/fc_012.mcfunction | 6 + .../casting/circle_hearts/fc_013.mcfunction | 6 + .../casting/circle_hearts/fc_014.mcfunction | 6 + .../casting/circle_hearts/fc_015.mcfunction | 6 + .../casting/circle_hearts/fc_016.mcfunction | 6 + .../casting/circle_hearts/fc_017.mcfunction | 6 + .../casting/circle_hearts/fc_018.mcfunction | 6 + .../casting/circle_hearts/fc_019.mcfunction | 6 + .../casting/circle_hearts/fc_020.mcfunction | 6 + .../casting/circle_hearts/fc_021.mcfunction | 6 + .../casting/circle_hearts/fc_022.mcfunction | 6 + .../casting/circle_hearts/fc_023.mcfunction | 6 + .../casting/circle_hearts/fc_024.mcfunction | 6 + .../casting/circle_hearts/fc_025.mcfunction | 6 + .../casting/circle_hearts/fc_026.mcfunction | 6 + .../casting/circle_hearts/fc_027.mcfunction | 6 + .../casting/circle_hearts/fc_028.mcfunction | 6 + .../casting/circle_hearts/fc_029.mcfunction | 6 + .../casting/circle_hearts/fc_030.mcfunction | 6 + .../cross_ring/cross_ring_001.mcfunction | 48 + .../cross_ring/cross_ring_002.mcfunction | 48 + .../cross_ring/cross_ring_003.mcfunction | 48 + .../cross_ring/cross_ring_004.mcfunction | 48 + .../cross_ring/cross_ring_005.mcfunction | 48 + .../cross_ring/cross_ring_006.mcfunction | 48 + .../cross_ring/cross_ring_007.mcfunction | 48 + .../cross_ring/cross_ring_008.mcfunction | 48 + .../cross_ring/cross_ring_009.mcfunction | 48 + .../cross_ring/cross_ring_010.mcfunction | 48 + .../cross_ring/cross_ring_011.mcfunction | 48 + .../cross_ring/cross_ring_012.mcfunction | 48 + .../cross_ring/cross_ring_013.mcfunction | 48 + .../cross_ring/cross_ring_014.mcfunction | 48 + .../cross_ring/cross_ring_015.mcfunction | 48 + .../cross_ring/cross_ring_016.mcfunction | 48 + .../cross_ring/cross_ring_017.mcfunction | 48 + .../cross_ring/cross_ring_018.mcfunction | 48 + .../cross_ring/cross_ring_019.mcfunction | 48 + .../cross_ring/cross_ring_020.mcfunction | 3 + .../doom_bomb/doom_bomb2_01.mcfunction | 122 +++ .../doom_bomb/doom_bomb2_02.mcfunction | 122 +++ .../doom_bomb/doom_bomb2_03.mcfunction | 122 +++ .../doom_bomb/doom_bomb2_04.mcfunction | 122 +++ .../doom_bomb/doom_bomb2_05.mcfunction | 122 +++ .../casting/doom_bomb/doom_bomb_01.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_02.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_03.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_04.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_05.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_06.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_07.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_08.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_09.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_10.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_11.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_12.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_13.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_14.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_15.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_16.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_17.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_18.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_19.mcfunction | 94 ++ .../casting/doom_bomb/doom_bomb_20.mcfunction | 94 ++ .../casting/doom_cast/doom_cast_01.mcfunction | 43 + .../casting/doom_cast/doom_cast_02.mcfunction | 43 + .../casting/doom_cast/doom_cast_03.mcfunction | 43 + .../casting/doom_cast/doom_cast_04.mcfunction | 43 + .../casting/doom_cast/doom_cast_05.mcfunction | 43 + .../casting/doom_cast/doom_cast_06.mcfunction | 43 + .../casting/doom_cast/doom_cast_07.mcfunction | 43 + .../casting/doom_cast/doom_cast_08.mcfunction | 43 + .../casting/doom_cast/doom_cast_09.mcfunction | 43 + .../casting/doom_cast/doom_cast_10.mcfunction | 43 + .../casting/doom_cast/doom_cast_11.mcfunction | 43 + .../casting/doom_cast/doom_cast_12.mcfunction | 43 + .../casting/doom_cast/doom_cast_13.mcfunction | 43 + .../casting/doom_cast/doom_cast_14.mcfunction | 43 + .../casting/doom_cast/doom_cast_15.mcfunction | 43 + .../casting/finishing_move/fc_001.mcfunction | 64 ++ .../casting/finishing_move/fc_002.mcfunction | 64 ++ .../casting/finishing_move/fc_003.mcfunction | 64 ++ .../casting/finishing_move/fc_004.mcfunction | 64 ++ .../casting/finishing_move/fc_005.mcfunction | 64 ++ .../casting/finishing_move/fc_006.mcfunction | 64 ++ .../casting/finishing_move/fc_007.mcfunction | 112 +++ .../casting/finishing_move/fc_008.mcfunction | 112 +++ .../casting/finishing_move/fc_009.mcfunction | 112 +++ .../casting/finishing_move/fc_010.mcfunction | 112 +++ .../casting/finishing_move/fc_011.mcfunction | 112 +++ .../casting/finishing_move/fc_012.mcfunction | 112 +++ .../casting/finishing_move/fc_013.mcfunction | 160 ++++ .../casting/finishing_move/fc_014.mcfunction | 160 ++++ .../casting/finishing_move/fc_015.mcfunction | 160 ++++ .../casting/finishing_move/fc_016.mcfunction | 160 ++++ .../casting/finishing_move/fc_017.mcfunction | 160 ++++ .../casting/finishing_move/fc_018.mcfunction | 160 ++++ .../casting/finishing_move/fc_019.mcfunction | 160 ++++ .../casting/finishing_move/fc_020.mcfunction | 208 ++++ .../casting/finishing_move/fc_021.mcfunction | 208 ++++ .../casting/finishing_move/fc_022.mcfunction | 208 ++++ .../casting/finishing_move/fc_023.mcfunction | 208 ++++ .../casting/finishing_move/fc_024.mcfunction | 208 ++++ .../casting/finishing_move/fc_025.mcfunction | 208 ++++ .../casting/finishing_move/fc_026.mcfunction | 256 +++++ .../casting/finishing_move/fc_027.mcfunction | 256 +++++ .../casting/finishing_move/fc_028.mcfunction | 256 +++++ .../casting/finishing_move/fc_029.mcfunction | 256 +++++ .../casting/finishing_move/fc_030.mcfunction | 256 +++++ .../casting/finishing_move/fc_031.mcfunction | 256 +++++ .../casting/finishing_move/fc_032.mcfunction | 256 +++++ .../casting/finishing_move/fc_033.mcfunction | 256 +++++ .../casting/finishing_move/fc_034.mcfunction | 256 +++++ .../casting/finishing_move/fc_035.mcfunction | 256 +++++ .../casting/finishing_move/fc_036.mcfunction | 256 +++++ .../casting/finishing_move/fc_037.mcfunction | 256 +++++ .../casting/finishing_move/fc_038.mcfunction | 208 ++++ .../casting/finishing_move/fc_039.mcfunction | 208 ++++ .../casting/finishing_move/fc_040.mcfunction | 208 ++++ .../casting/finishing_move/fc_041.mcfunction | 208 ++++ .../casting/finishing_move/fc_042.mcfunction | 208 ++++ .../casting/finishing_move/fc_043.mcfunction | 208 ++++ .../casting/finishing_move/fc_044.mcfunction | 208 ++++ .../casting/finishing_move/fc_045.mcfunction | 160 ++++ .../casting/finishing_move/fc_046.mcfunction | 160 ++++ .../casting/finishing_move/fc_047.mcfunction | 160 ++++ .../casting/finishing_move/fc_048.mcfunction | 160 ++++ .../casting/finishing_move/fc_049.mcfunction | 160 ++++ .../casting/finishing_move/fc_050.mcfunction | 160 ++++ .../casting/finishing_move/fc_051.mcfunction | 112 +++ .../casting/finishing_move/fc_052.mcfunction | 112 +++ .../casting/finishing_move/fc_053.mcfunction | 112 +++ .../casting/finishing_move/fc_054.mcfunction | 112 +++ .../casting/finishing_move/fc_055.mcfunction | 112 +++ .../casting/finishing_move/fc_056.mcfunction | 112 +++ .../casting/finishing_move/fc_057.mcfunction | 64 ++ .../casting/finishing_move/fc_058.mcfunction | 64 ++ .../casting/finishing_move/fc_059.mcfunction | 64 ++ .../casting/finishing_move/fc_060.mcfunction | 64 ++ .../casting/healing/healing_001.mcfunction | 76 ++ .../casting/healing/healing_002.mcfunction | 74 ++ .../casting/healing/healing_003.mcfunction | 76 ++ .../casting/healing/healing_004.mcfunction | 74 ++ .../casting/healing/healing_005.mcfunction | 76 ++ .../casting/healing/healing_006.mcfunction | 74 ++ .../casting/healing/healing_007.mcfunction | 76 ++ .../casting/healing/healing_008.mcfunction | 74 ++ .../casting/healing/healing_009.mcfunction | 76 ++ .../casting/healing/healing_010.mcfunction | 74 ++ .../casting/healing/healing_011.mcfunction | 76 ++ .../casting/healing/healing_012.mcfunction | 74 ++ .../casting/healing/healing_013.mcfunction | 76 ++ .../casting/healing/healing_014.mcfunction | 74 ++ .../casting/healing/healing_015.mcfunction | 76 ++ .../casting/healing/healing_016.mcfunction | 74 ++ .../casting/healing/healing_017.mcfunction | 76 ++ .../casting/healing/healing_018.mcfunction | 74 ++ .../casting/healing/healing_019.mcfunction | 76 ++ .../casting/healing/healing_020.mcfunction | 74 ++ .../casting/healing/healing_021.mcfunction | 76 ++ .../casting/healing/healing_022.mcfunction | 74 ++ .../casting/healing/healing_023.mcfunction | 76 ++ .../casting/healing/healing_024.mcfunction | 74 ++ .../casting/healing/healing_025.mcfunction | 76 ++ .../casting/healing/healing_026.mcfunction | 74 ++ .../casting/healing/healing_027.mcfunction | 76 ++ .../casting/healing/healing_028.mcfunction | 74 ++ .../casting/healing/healing_029.mcfunction | 76 ++ .../casting/healing/healing_030.mcfunction | 74 ++ .../casting/healing/healing_031.mcfunction | 36 + .../red_dust/particle/red_dust.mcfunction | 2 + .../casting/pillar_of_water/fc_001.mcfunction | 168 ++++ .../casting/pillar_of_water/fc_002.mcfunction | 119 +++ .../casting/pillar_of_water/fc_003.mcfunction | 119 +++ .../casting/pillar_of_water/fc_004.mcfunction | 119 +++ .../casting/pillar_of_water/fc_005.mcfunction | 119 +++ .../casting/pillar_of_water/fc_006.mcfunction | 119 +++ .../casting/pillar_of_water/fc_007.mcfunction | 119 +++ .../casting/pillar_of_water/fc_008.mcfunction | 119 +++ .../casting/pillar_of_water/fc_009.mcfunction | 119 +++ .../casting/pillar_of_water/fc_010.mcfunction | 119 +++ .../casting/pillar_of_water/fc_011.mcfunction | 119 +++ .../casting/pillar_of_water/fc_012.mcfunction | 119 +++ .../casting/pillar_of_water/fc_013.mcfunction | 86 ++ .../casting/pillar_of_water/fc_014.mcfunction | 86 ++ .../casting/pillar_of_water/fc_015.mcfunction | 86 ++ .../casting/pillar_of_water/fc_016.mcfunction | 86 ++ .../casting/pillar_of_water/fc_017.mcfunction | 53 + .../casting/pillar_of_water/fc_018.mcfunction | 53 + .../casting/pillar_of_water/fc_019.mcfunction | 53 + .../casting/pillar_of_water/fc_020.mcfunction | 53 + .../casting/sludge_garbager/fc_001.mcfunction | 98 ++ .../casting/sludge_garbager/fc_002.mcfunction | 98 ++ .../casting/sludge_garbager/fc_003.mcfunction | 98 ++ .../casting/sludge_garbager/fc_004.mcfunction | 98 ++ .../casting/sludge_garbager/fc_005.mcfunction | 98 ++ .../casting/sludge_garbager/fc_006.mcfunction | 98 ++ .../casting/sludge_garbager/fc_007.mcfunction | 98 ++ .../casting/sludge_garbager/fc_008.mcfunction | 98 ++ .../casting/sludge_garbager/fc_009.mcfunction | 98 ++ .../casting/sludge_garbager/fc_010.mcfunction | 98 ++ .../casting/sludge_garbager/fc_011.mcfunction | 98 ++ .../casting/sludge_garbager/fc_012.mcfunction | 98 ++ .../casting/sludge_garbager/fc_013.mcfunction | 98 ++ .../casting/sludge_garbager/fc_014.mcfunction | 98 ++ .../casting/sludge_garbager/fc_015.mcfunction | 98 ++ .../casting/sludge_garbager/fc_016.mcfunction | 98 ++ .../casting/sludge_garbager/fc_017.mcfunction | 98 ++ .../casting/sludge_garbager/fc_018.mcfunction | 98 ++ .../casting/sludge_garbager/fc_019.mcfunction | 98 ++ .../casting/sludge_garbager/fc_020.mcfunction | 98 ++ .../casting/sludge_garbager/fc_021.mcfunction | 98 ++ .../casting/sludge_garbager/fc_022.mcfunction | 98 ++ .../casting/sludge_garbager/fc_023.mcfunction | 98 ++ .../casting/sludge_garbager/fc_024.mcfunction | 98 ++ .../casting/sludge_garbager/fc_025.mcfunction | 98 ++ .../casting/sludge_garbager/fc_026.mcfunction | 98 ++ .../casting/sludge_garbager/fc_027.mcfunction | 98 ++ .../casting/sludge_garbager/fc_028.mcfunction | 98 ++ .../casting/sludge_garbager/fc_029.mcfunction | 98 ++ .../casting/sludge_garbager/fc_030.mcfunction | 98 ++ .../casting/sludge_garbager/fc_031.mcfunction | 98 ++ .../casting/sludge_garbager/fc_032.mcfunction | 98 ++ .../casting/sludge_garbager/fc_033.mcfunction | 98 ++ .../casting/sludge_garbager/fc_034.mcfunction | 98 ++ .../casting/sludge_garbager/fc_035.mcfunction | 98 ++ .../casting/sludge_garbager/fc_036.mcfunction | 98 ++ .../casting/sludge_garbager/fc_037.mcfunction | 98 ++ .../casting/sludge_garbager/fc_038.mcfunction | 98 ++ .../casting/sludge_garbager/fc_039.mcfunction | 98 ++ .../casting/sludge_garbager/fc_040.mcfunction | 98 ++ .../casting/sludge_garbager/fc_041.mcfunction | 98 ++ .../casting/sludge_garbager/fc_042.mcfunction | 98 ++ .../casting/sludge_garbager/fc_043.mcfunction | 98 ++ .../casting/sludge_garbager/fc_044.mcfunction | 98 ++ .../casting/sludge_garbager/fc_045.mcfunction | 98 ++ .../casting/sludge_garbager/fc_046.mcfunction | 98 ++ .../casting/sludge_garbager/fc_047.mcfunction | 98 ++ .../casting/sludge_garbager/fc_048.mcfunction | 98 ++ .../casting/sludge_garbager/fc_049.mcfunction | 98 ++ .../casting/sludge_garbager/fc_050.mcfunction | 98 ++ .../casting/sludge_garbager/fc_051.mcfunction | 98 ++ .../casting/sludge_garbager/fc_052.mcfunction | 98 ++ .../casting/sludge_garbager/fc_053.mcfunction | 98 ++ .../casting/sludge_garbager/fc_054.mcfunction | 98 ++ .../casting/sludge_garbager/fc_055.mcfunction | 98 ++ .../casting/sludge_garbager/fc_056.mcfunction | 98 ++ .../casting/sludge_garbager/fc_057.mcfunction | 98 ++ .../casting/sludge_garbager/fc_058.mcfunction | 98 ++ .../casting/sludge_garbager/fc_059.mcfunction | 98 ++ .../casting/sludge_garbager/fc_060.mcfunction | 98 ++ .../water_bolt/water_bolt_001.mcfunction | 114 +++ .../water_bolt/water_bolt_002.mcfunction | 114 +++ .../water_bolt/water_bolt_003.mcfunction | 114 +++ .../water_bolt/water_bolt_004.mcfunction | 114 +++ .../water_bolt/water_bolt_005.mcfunction | 114 +++ .../water_bolt/water_bolt_006.mcfunction | 114 +++ .../water_bolt/water_bolt_007.mcfunction | 114 +++ .../water_bolt/water_bolt_008.mcfunction | 114 +++ .../water_bolt/water_bolt_009.mcfunction | 114 +++ .../water_bolt/water_bolt_010.mcfunction | 114 +++ .../water_bolt/water_bolt_011.mcfunction | 114 +++ .../water_bolt/water_bolt_012.mcfunction | 114 +++ .../water_bolt/water_bolt_013.mcfunction | 114 +++ .../water_bolt/water_bolt_014.mcfunction | 114 +++ .../water_bolt/water_bolt_015.mcfunction | 114 +++ .../water_bolt/water_bolt_016.mcfunction | 114 +++ .../water_bolt/water_bolt_017.mcfunction | 114 +++ .../water_bolt/water_bolt_018.mcfunction | 114 +++ .../water_bolt/water_bolt_019.mcfunction | 114 +++ .../water_bolt/water_bolt_020.mcfunction | 114 +++ .../water_bolt/water_bolt_021.mcfunction | 114 +++ .../water_bolt/water_bolt_022.mcfunction | 114 +++ .../water_bolt/water_bolt_023.mcfunction | 114 +++ .../water_bolt/water_bolt_024.mcfunction | 114 +++ .../water_bolt/water_bolt_025.mcfunction | 114 +++ .../water_bolt/water_bolt_026.mcfunction | 99 ++ .../water_bolt/water_bolt_027.mcfunction | 84 ++ .../water_bolt/water_bolt_028.mcfunction | 84 ++ .../water_bolt/water_bolt_029.mcfunction | 99 ++ .../water_bolt/water_bolt_030.mcfunction | 99 ++ .../abyss_mage/abyss_magic/fc_1.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_10.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_11.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_12.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_13.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_14.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_15.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_16.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_17.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_18.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_19.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_2.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_20.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_21.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_22.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_23.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_24.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_25.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_3.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_4.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_5.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_6.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_7.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_8.mcfunction | 103 ++ .../abyss_mage/abyss_magic/fc_9.mcfunction | 103 ++ .../aurora_eye/aurora_zone/fc_1.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_10.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_11.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_12.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_13.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_14.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_15.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_2.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_3.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_4.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_5.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_6.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_7.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_8.mcfunction | 36 + .../aurora_eye/aurora_zone/fc_9.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_1.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_10.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_11.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_12.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_13.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_14.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_15.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_16.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_17.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_18.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_19.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_2.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_20.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_21.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_22.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_23.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_24.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_25.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_26.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_27.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_28.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_29.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_3.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_30.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_4.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_5.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_6.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_7.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_8.mcfunction | 36 + .../enemy/crimson_eye/blood/fc_9.mcfunction | 36 + .../lunatic_eye/luna_laser/fc_1.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_10.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_11.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_12.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_13.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_14.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_15.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_16.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_17.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_18.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_19.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_2.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_20.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_21.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_22.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_23.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_24.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_25.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_26.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_27.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_28.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_29.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_3.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_30.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_31.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_32.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_33.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_34.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_35.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_36.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_37.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_38.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_39.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_4.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_40.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_41.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_42.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_43.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_44.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_45.mcfunction | 462 +++++++++ .../lunatic_eye/luna_laser/fc_46.mcfunction | 460 +++++++++ .../lunatic_eye/luna_laser/fc_47.mcfunction | 460 +++++++++ .../lunatic_eye/luna_laser/fc_48.mcfunction | 460 +++++++++ .../lunatic_eye/luna_laser/fc_49.mcfunction | 460 +++++++++ .../lunatic_eye/luna_laser/fc_5.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_50.mcfunction | 460 +++++++++ .../lunatic_eye/luna_laser/fc_51.mcfunction | 705 ++++++++++++++ .../lunatic_eye/luna_laser/fc_52.mcfunction | 563 +++++++++++ .../lunatic_eye/luna_laser/fc_53.mcfunction | 563 +++++++++++ .../lunatic_eye/luna_laser/fc_54.mcfunction | 563 +++++++++++ .../lunatic_eye/luna_laser/fc_55.mcfunction | 561 +++++++++++ .../lunatic_eye/luna_laser/fc_6.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_7.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_8.mcfunction | 412 ++++++++ .../lunatic_eye/luna_laser/fc_9.mcfunction | 412 ++++++++ .../ai/skill/firework_tusb_star.mcfunction | 549 +++++++++++ .../makeup/function/ai/skill/heal/.mcfunction | 7 + .../ai/skill/heal/get_heal.mcfunction | 2 + .../ai/skill/icicle_magic/icicle.mcfunction | 2 + .../skill/icicle_magic/icicle_fall.mcfunction | 4 + .../laser/loop/blue_laser/spark.mcfunction | 4 + .../laser/loop/blue_laser/trail.mcfunction | 2 + .../loop/frozenlazer/ice_effect.mcfunction | 4 + .../laser/loop/frozenlazer/trail.mcfunction | 5 + .../laser/loop/green_laser/spark.mcfunction | 4 + .../laser/loop/green_laser/trail.mcfunction | 2 + .../laser/loop/kame_hame_ha/1.mcfunction | 2 + .../laser/loop/kame_hame_ha/2.mcfunction | 2 + .../laser/loop/kame_hame_ha/3.mcfunction | 2 + .../laser/loop/kame_hame_ha/4.mcfunction | 2 + .../laser/loop/kame_hame_ha/5.mcfunction | 2 + .../laser/loop/kame_hame_ha/6.mcfunction | 2 + .../laser/loop/kame_hame_ha/7.mcfunction | 2 + .../loop/lightning_laser/trail.mcfunction | 4 + .../loop/piglin_snipe/firework.mcfunction | 2 + .../laser/loop/piglin_snipe/trail.mcfunction | 2 + .../laser/loop/red_laser/spark.mcfunction | 4 + .../laser/loop/red_laser/trail.mcfunction | 2 + .../loop/security_laser/dual/.mcfunction | 5 + .../security_laser/dual/spiral1.mcfunction | 4 + .../security_laser/dual/spiral2.mcfunction | 4 + .../security_laser/dual/spiral3.mcfunction | 3 + .../loop/security_laser/single/.mcfunction | 5 + .../ai/skill/laser/loop/test.mcfunction | 2 + .../laser/loop/violet_laser/spark.mcfunction | 4 + .../laser/loop/violet_laser/trail.mcfunction | 2 + .../laser/loop/white_laser/spark.mcfunction | 4 + .../laser/loop/white_laser/trail.mcfunction | 2 + .../laser/loop/yellow_laser/spark.mcfunction | 4 + .../laser/loop/yellow_laser/trail.mcfunction | 2 + .../function/ai/skill/reraise/.mcfunction | 1 + .../ai/skill/reraise/death_cancel.mcfunction | 4 + .../function/ai/skill/teleport.mcfunction | 2 + .../ai/skill/wind_with_smell.mcfunction | 906 ++++++++++++++++++ 824 files changed, 66164 insertions(+) create mode 100644 data/makeup/function/ai/skill/blink/activate/0.mcfunction create mode 100644 data/makeup/function/ai/skill/blink/activate/1.mcfunction create mode 100644 data/makeup/function/ai/skill/blink/cast/0.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_061.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_062.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_063.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_064.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_065.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_066.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_067.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_068.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_069.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_070.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_071.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_072.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_073.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_074.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_075.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_076.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_077.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_078.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_079.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_080.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_061.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_062.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_063.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_064.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_065.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_066.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_067.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_068.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_069.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_070.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_071.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_072.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_073.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_074.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_075.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_076.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_077.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_078.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_079.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_080.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_061.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_062.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_063.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_064.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_065.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_066.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_067.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_068.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_069.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_070.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_071.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_072.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_073.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_074.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_075.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_076.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_077.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_078.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_079.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_080.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/firework.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cast/normal/sound/portal_travel.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/charge/normal/particle/.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/charge/normal/sound/.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_01.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_02.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_03.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_04.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_05.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_01.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_02.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_03.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_04.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_05.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_06.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_07.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_08.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_09.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_10.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_11.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_12.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_13.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_14.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_15.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_16.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_17.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_18.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_19.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_20.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_01.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_02.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_03.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_04.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_05.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_06.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_07.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_08.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_09.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_10.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_11.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_12.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_13.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_14.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_15.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/healing/healing_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/laser_pointer/red_dust/particle/red_dust.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_031.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_032.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_033.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_034.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_035.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_036.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_037.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_038.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_039.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_040.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_041.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_042.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_043.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_044.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_045.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_046.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_047.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_048.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_049.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_050.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_051.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_052.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_053.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_054.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_055.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_056.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_057.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_058.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_059.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_060.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_001.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_002.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_003.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_004.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_005.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_006.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_007.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_008.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_009.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_010.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_011.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_012.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_013.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_014.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_015.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_016.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_017.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_018.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_019.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_020.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_021.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_022.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_023.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_024.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_025.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_026.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_027.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_028.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_029.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_030.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_1.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_10.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_11.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_12.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_13.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_14.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_15.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_16.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_17.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_18.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_19.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_2.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_20.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_21.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_22.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_23.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_24.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_25.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_3.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_4.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_5.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_6.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_7.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_8.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_9.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_1.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_10.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_11.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_12.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_13.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_14.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_15.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_2.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_3.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_4.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_5.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_6.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_7.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_8.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_9.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_1.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_10.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_11.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_12.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_13.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_14.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_15.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_16.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_17.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_18.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_19.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_2.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_20.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_21.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_22.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_23.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_24.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_25.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_26.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_27.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_28.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_29.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_3.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_30.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_4.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_5.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_6.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_7.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_8.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_9.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_1.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_10.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_11.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_12.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_13.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_14.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_15.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_16.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_17.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_18.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_19.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_2.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_20.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_21.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_22.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_23.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_24.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_25.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_26.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_27.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_28.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_29.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_3.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_30.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_31.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_32.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_33.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_34.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_35.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_36.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_37.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_38.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_39.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_4.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_40.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_41.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_42.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_43.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_44.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_45.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_46.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_47.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_48.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_49.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_5.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_50.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_51.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_52.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_53.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_54.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_55.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_6.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_7.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_8.mcfunction create mode 100644 data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_9.mcfunction create mode 100644 data/makeup/function/ai/skill/firework_tusb_star.mcfunction create mode 100644 data/makeup/function/ai/skill/heal/.mcfunction create mode 100644 data/makeup/function/ai/skill/heal/get_heal.mcfunction create mode 100644 data/makeup/function/ai/skill/icicle_magic/icicle.mcfunction create mode 100644 data/makeup/function/ai/skill/icicle_magic/icicle_fall.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/blue_laser/spark.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/blue_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/frozenlazer/ice_effect.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/frozenlazer/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/green_laser/spark.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/green_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/1.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/2.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/3.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/4.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/5.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/6.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/kame_hame_ha/7.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/lightning_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/piglin_snipe/firework.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/piglin_snipe/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/red_laser/spark.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/red_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/security_laser/dual/.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral1.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral2.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral3.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/security_laser/single/.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/test.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/violet_laser/spark.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/violet_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/white_laser/spark.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/white_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/yellow_laser/spark.mcfunction create mode 100644 data/makeup/function/ai/skill/laser/loop/yellow_laser/trail.mcfunction create mode 100644 data/makeup/function/ai/skill/reraise/.mcfunction create mode 100644 data/makeup/function/ai/skill/reraise/death_cancel.mcfunction create mode 100644 data/makeup/function/ai/skill/teleport.mcfunction create mode 100644 data/makeup/function/ai/skill/wind_with_smell.mcfunction diff --git a/data/makeup/function/ai/skill/blink/activate/0.mcfunction b/data/makeup/function/ai/skill/blink/activate/0.mcfunction new file mode 100644 index 000000000..c91f4da93 --- /dev/null +++ b/data/makeup/function/ai/skill/blink/activate/0.mcfunction @@ -0,0 +1,8 @@ +#> makeup:ai/skill/blink/activate/0 +##透明化 発光 +execute unless data entity @s active_effects[{id:"minecraft:invisibility"}] run data modify entity @s active_effects append value {id:"minecraft:invisibility",duration:7,amplifier:127b,show_particles:false} +execute unless data entity @s active_effects[{id:"minecraft:glowing"}] run data modify entity @s active_effects append value {id:"minecraft:glowing",duration:7,amplifier:127b,show_particles:false} + +##サウンド +playsound minecraft:entity.wolf.shake hostile @a[distance=..32] ~ ~ ~ 3 2 +playsound minecraft:entity.illusioner.mirror_move hostile @a[distance=..32] ~ ~ ~ 3 diff --git a/data/makeup/function/ai/skill/blink/activate/1.mcfunction b/data/makeup/function/ai/skill/blink/activate/1.mcfunction new file mode 100644 index 000000000..77d8cadf2 --- /dev/null +++ b/data/makeup/function/ai/skill/blink/activate/1.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/blink/activate/1 +particle minecraft:instant_effect ^ ^ ^ 0.05 0.2 0.05 0 10 force diff --git a/data/makeup/function/ai/skill/blink/cast/0.mcfunction b/data/makeup/function/ai/skill/blink/cast/0.mcfunction new file mode 100644 index 000000000..ce0cf3d96 --- /dev/null +++ b/data/makeup/function/ai/skill/blink/cast/0.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/blink/cast/0 +##サウンド +playsound minecraft:block.enchantment_table.use master @a[distance=..32] ~ ~ ~ 3 0.9 +playsound minecraft:block.enchantment_table.use master @a[distance=..32] ~ ~ ~ 3 0.92 diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_001.mcfunction new file mode 100644 index 000000000..d51750588 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_001.mcfunction @@ -0,0 +1,48 @@ +# frame 1 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.5d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.5 0.2 +# Explosion--02_Particle1 +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.0 0.02 0.02 0.02 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_002.mcfunction new file mode 100644 index 000000000..204be7b41 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_002.mcfunction @@ -0,0 +1,48 @@ +# frame 2 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.51d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.513 0.2 +# Explosion--02_Particle1 +particle flash ^0.01 ^0.01 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.01 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.01 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.0 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.0 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.0 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^-0.0 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.01 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.01 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.0 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.01 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.01 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.01 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.01 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.01 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.0 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.01 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.01 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.0 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.0 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^-0.0 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.0 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.0 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.01 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.01 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.0 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.01 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.01 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.0 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.01 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^-0.01 ^-0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.0 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.01 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^-0.01 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.01 ^-0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.0 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.01 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.0 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^-0.01 ^0.01 0.025 0.025 0.025 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.01 ^0.0 0.025 0.025 0.025 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_003.mcfunction new file mode 100644 index 000000000..42982aa8e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_003.mcfunction @@ -0,0 +1,48 @@ +# frame 3 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.55d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.525 0.2 +# Explosion--02_Particle1 +particle flash ^-0.02 ^0.03 ^-0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.02 ^-0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.01 ^-0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.01 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^0.03 ^0.02 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.04 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-0.03 ^-0.02 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.04 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.02 ^0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.01 ^0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.01 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.03 ^0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^0.01 ^-0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.03 ^-0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.0 ^-0.05 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^0.04 ^-0.02 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.04 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^0.01 ^-0.02 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.01 ^-0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^0.04 ^-0.0 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^0.01 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.04 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.01 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.03 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.02 ^-0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-0.01 ^-0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.03 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.03 ^-0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^0.01 ^0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.01 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.03 ^0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.02 ^0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^-0.01 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.04 ^-0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^-0.04 ^0.02 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.0 ^0.05 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.01 ^0.03 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-0.04 ^0.0 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^-0.01 ^0.02 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^-0.04 ^0.01 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.03 ^0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.01 ^0.04 0.03 0.03 0.03 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_004.mcfunction new file mode 100644 index 000000000..a397b7840 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_004.mcfunction @@ -0,0 +1,48 @@ +# frame 4 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.61d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.538 0.2 +# Explosion--02_Particle1 +particle flash ^-0.07 ^0.04 ^-0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.08 ^-0.05 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.01 ^-0.1 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.06 ^-0.07 ^-0.05 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^-0.01 ^0.03 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^0.09 ^0.03 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^0.01 ^-0.03 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^-0.09 ^-0.03 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.08 ^0.05 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^0.01 ^0.1 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.06 ^0.07 ^0.05 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^-0.04 ^0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^0.02 ^-0.1 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^0.07 ^-0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.04 ^-0.09 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.1 ^-0.01 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^0.07 ^-0.02 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^-0.02 ^-0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^-0.04 ^-0.09 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^0.02 ^-0.02 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^-0.04 ^-0.02 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^0.05 ^0.03 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^0.09 ^0.0 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.09 ^0.05 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^-0.0 ^-0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^0.05 ^-0.04 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.09 ^-0.05 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^-0.06 ^-0.08 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^-0.05 ^0.04 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-0.09 ^-0.0 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^0.06 ^0.08 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^0.0 ^0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^0.04 ^0.02 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^-0.05 ^-0.03 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.1 ^0.01 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.04 ^0.09 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^0.04 ^0.09 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^-0.02 ^0.02 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^0.02 ^0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^-0.07 ^0.02 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.07 ^0.07 0.035 0.035 0.035 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-0.02 ^0.1 0.035 0.035 0.035 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_005.mcfunction new file mode 100644 index 000000000..153c26895 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_005.mcfunction @@ -0,0 +1,48 @@ +# frame 5 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.7d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.55 0.2 +# Explosion--02_Particle1 +particle flash ^0.09 ^0.15 ^-0.02 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.11 ^0.05 ^0.13 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^-0.02 ^-0.04 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^0.04 ^-0.17 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^0.13 ^-0.08 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^0.14 ^0.1 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^-0.13 ^0.08 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^-0.14 ^-0.1 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.11 ^-0.05 ^-0.13 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^0.02 ^0.04 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-0.04 ^0.17 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^-0.15 ^0.02 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^0.08 ^-0.04 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^0.11 ^0.06 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^0.02 ^0.05 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.11 ^0.14 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.17 ^0.05 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^0.11 ^-0.11 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.13 ^0.01 ^-0.12 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.17 ^-0.06 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^0.1 ^-0.15 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^0.16 ^0.01 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.0 ^0.17 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.06 ^0.06 ^0.16 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.15 ^-0.09 ^0.03 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^-0.05 ^0.12 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.06 ^-0.06 ^-0.16 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.13 ^-0.09 ^-0.08 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^0.05 ^-0.12 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.0 ^-0.17 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.13 ^0.09 ^0.08 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.15 ^0.09 ^-0.03 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.1 ^0.15 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^-0.16 ^-0.01 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.11 ^-0.14 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^-0.02 ^-0.05 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.13 ^-0.01 ^0.12 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.17 ^0.06 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^-0.11 ^0.11 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.17 ^-0.05 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^-0.11 ^-0.06 0.039 0.039 0.039 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^-0.08 ^0.04 0.039 0.039 0.039 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_006.mcfunction new file mode 100644 index 000000000..efb165ce7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_006.mcfunction @@ -0,0 +1,48 @@ +# frame 6 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.8d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.563 0.2 +# Explosion--02_Particle1 +particle flash ^-0.12 ^-0.15 ^0.19 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.08 ^0.26 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.21 ^0.11 ^0.12 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^-0.11 ^-0.06 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.27 ^-0.04 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^-0.15 ^0.15 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.27 ^0.04 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^0.15 ^-0.15 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.08 ^-0.26 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.21 ^-0.11 ^-0.12 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^0.11 ^0.06 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^0.15 ^-0.19 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.2 ^-0.02 ^0.19 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-0.04 ^0.26 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^0.11 ^0.22 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^-0.04 ^0.24 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-0.18 ^0.2 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.21 ^-0.15 ^0.08 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.27 ^0.0 ^0.04 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^-0.25 ^0.09 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.15 ^-0.22 ^-0.06 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^-0.25 ^0.07 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^0.11 ^0.19 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^-0.03 ^0.13 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^0.22 ^0.1 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^0.21 ^0.18 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^0.03 ^-0.13 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.22 ^0.15 ^-0.02 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-0.21 ^-0.18 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^-0.11 ^-0.19 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.22 ^-0.15 ^0.02 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^-0.22 ^-0.1 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.15 ^0.22 ^0.06 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^0.25 ^-0.07 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^0.04 ^-0.24 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^-0.11 ^-0.22 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.27 ^-0.0 ^-0.04 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^0.25 ^-0.09 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.21 ^0.15 ^-0.08 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^0.18 ^-0.2 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^0.04 ^-0.26 0.044 0.044 0.044 0.0 3 force @a[distance=..64] +particle flash ^0.2 ^0.02 ^-0.19 0.044 0.044 0.044 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_007.mcfunction new file mode 100644 index 000000000..97ec0c303 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_007.mcfunction @@ -0,0 +1,48 @@ +# frame 7 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:1.93d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.576 0.2 +# Explosion--02_Particle1 +particle flash ^0.24 ^0.16 ^0.25 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^0.21 ^0.28 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.15 ^0.35 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.31 ^-0.2 ^0.09 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.33 ^0.13 ^-0.14 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.38 ^-0.02 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.33 ^-0.13 ^0.14 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.38 ^0.02 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^-0.21 ^-0.28 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.15 ^-0.35 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.31 ^0.2 ^-0.09 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^-0.16 ^-0.25 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.15 ^0.01 ^0.35 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^0.22 ^0.31 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^0.03 ^0.37 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^0.35 ^0.15 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^0.32 ^0.13 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.33 ^-0.02 ^0.2 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^-0.21 ^0.26 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^0.17 ^0.06 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.38 ^-0.04 ^-0.03 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.22 ^0.3 ^-0.1 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.28 ^0.24 ^0.11 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^0.34 ^-0.07 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^-0.16 ^0.29 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.29 ^0.05 ^0.25 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^-0.34 ^0.07 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^-0.31 ^0.22 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.29 ^-0.05 ^-0.25 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.28 ^-0.24 ^-0.11 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^0.31 ^-0.22 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^0.16 ^-0.29 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.38 ^0.04 ^0.03 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.22 ^-0.3 ^0.1 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^-0.35 ^-0.15 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^-0.03 ^-0.37 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^0.21 ^-0.26 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^-0.17 ^-0.06 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.33 ^0.02 ^-0.2 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^-0.32 ^-0.13 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-0.22 ^-0.31 0.049 0.049 0.049 0.0 3 force @a[distance=..64] +particle flash ^-0.15 ^-0.01 ^-0.35 0.049 0.049 0.049 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_008.mcfunction new file mode 100644 index 000000000..5d84aa3e7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_008.mcfunction @@ -0,0 +1,48 @@ +# frame 8 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:2.07d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.588 0.2 +# Explosion--02_Particle1 +particle flash ^0.09 ^-0.5 ^0.08 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.2 ^-0.2 ^0.42 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.4 ^-0.32 ^-0.06 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.3 ^-0.41 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^-0.18 ^-0.14 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.33 ^-0.12 ^0.37 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^0.18 ^0.14 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.33 ^0.12 ^-0.37 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.2 ^0.2 ^-0.42 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.4 ^0.32 ^0.06 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.3 ^0.41 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^0.5 ^-0.08 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.18 ^-0.48 ^0.01 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^-0.41 ^0.3 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.35 ^-0.3 ^0.21 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^-0.19 ^0.47 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^-0.36 ^0.27 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.06 ^-0.47 ^-0.2 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.23 ^-0.36 ^-0.28 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.32 ^-0.4 ^-0.04 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.27 ^-0.28 ^-0.33 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^-0.17 ^0.14 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^0.06 ^0.49 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^0.11 ^0.46 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.5 ^-0.08 ^0.05 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.39 ^-0.01 ^0.33 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^-0.11 ^-0.46 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^-0.12 ^-0.26 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.39 ^0.01 ^-0.33 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^-0.06 ^-0.49 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^0.12 ^0.26 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.5 ^0.08 ^-0.05 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.27 ^0.28 ^0.33 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^0.17 ^-0.14 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.07 ^0.19 ^-0.47 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.35 ^0.3 ^-0.21 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.23 ^0.36 ^0.28 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.32 ^0.4 ^0.04 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.06 ^0.47 ^0.2 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^0.36 ^-0.27 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.07 ^0.41 ^-0.3 0.054 0.054 0.054 0.0 3 force @a[distance=..64] +particle flash ^0.18 ^0.48 ^-0.01 0.054 0.054 0.054 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_009.mcfunction new file mode 100644 index 000000000..a9764123e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_009.mcfunction @@ -0,0 +1,48 @@ +# frame 9 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:2.23d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.601 0.2 +# Explosion--02_Particle1 +particle flash ^-0.01 ^0.57 ^0.32 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.55 ^0.17 ^0.31 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.35 ^0.49 ^-0.27 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^0.48 ^-0.28 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.56 ^0.17 ^0.29 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.03 ^0.65 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.56 ^-0.17 ^-0.29 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.03 ^-0.65 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.55 ^-0.17 ^-0.31 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.35 ^-0.49 ^0.27 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^-0.48 ^0.28 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.57 ^-0.32 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.2 ^0.62 ^0.03 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.32 ^0.44 ^0.37 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.53 ^0.39 ^0.03 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.32 ^0.09 ^0.57 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^0.32 ^0.57 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.21 ^0.62 ^0.02 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^0.57 ^-0.32 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^0.43 ^0.36 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.53 ^0.38 ^0.01 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^0.08 ^0.55 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.52 ^-0.18 ^0.35 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^-0.3 ^0.55 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.53 ^0.19 ^-0.33 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.65 ^0.0 ^0.01 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^0.3 ^-0.55 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.21 ^0.3 ^-0.54 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.65 ^-0.0 ^-0.01 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.52 ^0.18 ^-0.35 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.21 ^-0.3 ^0.54 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.53 ^-0.19 ^0.33 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.53 ^-0.38 ^-0.01 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^-0.08 ^-0.55 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.32 ^-0.09 ^-0.57 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.53 ^-0.39 ^-0.03 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^-0.57 ^0.32 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^-0.43 ^-0.36 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.21 ^-0.62 ^-0.02 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^-0.32 ^-0.57 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.32 ^-0.44 ^-0.37 0.059 0.059 0.059 0.0 3 force @a[distance=..64] +particle flash ^-0.2 ^-0.62 ^-0.03 0.059 0.059 0.059 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_010.mcfunction new file mode 100644 index 000000000..c66ab5f82 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_010.mcfunction @@ -0,0 +1,48 @@ +# frame 10 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:2.41d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.613 0.2 +# Explosion--02_Particle1 +particle flash ^-0.08 ^0.68 ^-0.44 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.56 ^-0.02 ^-0.59 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.67 ^0.44 ^0.13 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^0.71 ^0.39 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.68 ^0.41 ^-0.16 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.27 ^-0.03 ^-0.76 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.68 ^-0.41 ^0.16 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.27 ^0.03 ^0.76 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.56 ^0.02 ^0.59 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.67 ^-0.44 ^-0.13 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^-0.71 ^-0.39 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^-0.68 ^0.44 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.44 ^0.66 ^-0.18 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.38 ^0.39 ^-0.6 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.73 ^0.25 ^-0.27 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^-0.03 ^-0.79 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.11 ^0.38 ^-0.71 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^0.81 ^-0.03 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^0.67 ^0.31 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.35 ^0.64 ^-0.35 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^0.66 ^0.14 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.56 ^0.22 ^-0.54 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.39 ^-0.42 ^-0.57 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^-0.43 ^-0.68 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.79 ^0.01 ^0.17 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.73 ^-0.25 ^-0.25 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^0.43 ^0.68 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.55 ^0.28 ^0.53 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.73 ^0.25 ^0.25 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.39 ^0.42 ^0.57 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.55 ^-0.28 ^-0.53 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.79 ^-0.01 ^-0.17 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^-0.66 ^-0.14 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.56 ^-0.22 ^0.54 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^0.03 ^0.79 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.73 ^-0.25 ^0.27 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^-0.67 ^-0.31 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.35 ^-0.64 ^0.35 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-0.81 ^0.03 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^-0.11 ^-0.38 ^0.71 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.38 ^-0.39 ^0.6 0.064 0.064 0.064 0.0 3 force @a[distance=..64] +particle flash ^0.44 ^-0.66 ^0.18 0.064 0.064 0.064 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_011.mcfunction new file mode 100644 index 000000000..e32f4c52b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_011.mcfunction @@ -0,0 +1,48 @@ +# frame 11 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:2.6d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.626 0.2 +# Explosion--02_Particle1 +particle flash ^0.98 ^0.08 ^0.08 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^-0.53 ^0.71 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.53 ^-0.78 ^-0.29 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.5 ^0.1 ^-0.84 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.38 ^0.89 ^-0.18 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^0.5 ^0.78 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.38 ^-0.89 ^0.18 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^-0.5 ^-0.78 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^0.53 ^-0.71 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.53 ^0.78 ^0.29 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.5 ^-0.1 ^0.84 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.98 ^-0.08 ^-0.08 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.89 ^-0.41 ^-0.13 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.83 ^-0.26 ^0.46 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.56 ^-0.77 ^0.24 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.45 ^-0.02 ^0.87 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.78 ^0.34 ^0.5 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.87 ^0.11 ^-0.45 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.61 ^-0.4 ^-0.67 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.8 ^0.57 ^-0.06 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.52 ^0.58 ^-0.6 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^0.81 ^0.35 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-0.37 ^0.91 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^0.23 ^0.95 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^-0.98 ^-0.06 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-0.83 ^0.52 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^-0.23 ^-0.95 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.11 ^-0.75 ^-0.63 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^0.83 ^-0.52 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^0.37 ^-0.91 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.11 ^0.75 ^0.63 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^0.98 ^0.06 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.52 ^-0.58 ^0.6 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^-0.81 ^-0.35 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.45 ^0.02 ^-0.87 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.56 ^0.77 ^-0.24 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.61 ^0.4 ^0.67 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.8 ^-0.57 ^0.06 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.87 ^-0.11 ^0.45 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.78 ^-0.34 ^-0.5 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.83 ^0.26 ^-0.46 0.069 0.069 0.069 0.0 3 force @a[distance=..64] +particle flash ^-0.89 ^0.41 ^0.13 0.069 0.069 0.069 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_012.mcfunction new file mode 100644 index 000000000..ea5e1edee --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_012.mcfunction @@ -0,0 +1,48 @@ +# frame 12 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:2.81d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.639 0.2 +# Explosion--02_Particle1 +particle flash ^-0.35 ^-0.99 ^-0.51 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.84 ^-0.71 ^-0.39 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^-0.99 ^0.6 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.95 ^-0.51 ^0.45 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.98 ^0.06 ^-0.64 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.13 ^-0.06 ^-1.16 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.98 ^-0.06 ^0.64 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.13 ^0.06 ^1.16 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.84 ^0.71 ^0.39 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^0.99 ^-0.6 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.95 ^0.51 ^-0.45 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.35 ^0.99 ^0.51 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^-1.16 ^0.05 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.29 ^-1.0 ^-0.53 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.6 ^-1.0 ^0.12 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.57 ^-0.45 ^-0.91 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.13 ^-0.62 ^-0.98 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.76 ^-0.88 ^-0.04 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^-0.88 ^0.61 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.78 ^-0.55 ^-0.68 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-1.13 ^-0.27 ^-0.11 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.5 ^-0.0 ^-1.06 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^1.05 ^-0.11 ^-0.49 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.64 ^0.27 ^-0.94 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.68 ^-0.62 ^0.73 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^1.07 ^-0.45 ^0.14 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.64 ^-0.27 ^0.94 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.55 ^1.03 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-1.07 ^0.45 ^-0.14 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-1.05 ^0.11 ^0.49 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^0.55 ^-1.03 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.68 ^0.62 ^-0.73 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^1.13 ^0.27 ^0.11 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.5 ^0.0 ^1.06 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.57 ^0.45 ^0.91 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.6 ^1.0 ^-0.12 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^0.88 ^-0.61 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.78 ^0.55 ^0.68 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.76 ^0.88 ^0.04 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.13 ^0.62 ^0.98 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^-0.29 ^1.0 ^0.53 0.074 0.074 0.074 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^1.16 ^-0.05 0.074 0.074 0.074 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_013.mcfunction new file mode 100644 index 000000000..356408fef --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_013.mcfunction @@ -0,0 +1,48 @@ +# frame 13 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:3.0300000000000002d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.651 0.2 +# Explosion--02_Particle1 +particle flash ^0.38 ^1.08 ^0.74 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.72 ^0.24 ^1.14 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.63 ^-0.26 ^1.18 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^1.34 ^0.27 ^0.05 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^1.09 ^-0.69 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.84 ^1.08 ^-0.02 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^-1.09 ^0.69 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.84 ^-1.08 ^0.02 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.72 ^-0.24 ^-1.14 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.63 ^0.26 ^-1.18 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-1.34 ^-0.27 ^-0.05 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.38 ^-1.08 ^-0.74 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.59 ^0.48 ^1.13 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.2 ^0.78 ^1.1 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-0.01 ^1.36 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.91 ^0.78 ^0.65 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.27 ^1.27 ^0.42 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^1.01 ^0.79 ^0.47 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^1.15 ^0.0 ^0.73 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.48 ^1.28 ^0.03 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^1.04 ^0.8 ^-0.37 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^1.28 ^-0.42 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-1.21 ^-0.01 ^0.64 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-1.28 ^0.48 ^-0.05 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.11 ^-0.8 ^1.1 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.68 ^-0.5 ^1.07 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^1.28 ^-0.48 ^0.05 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.86 ^-0.79 ^0.71 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.68 ^0.5 ^-1.07 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^1.21 ^0.01 ^-0.64 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.86 ^0.79 ^-0.71 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.11 ^0.8 ^-1.1 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-1.04 ^-0.8 ^0.37 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^-1.28 ^0.42 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.91 ^-0.78 ^-0.65 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^0.01 ^-1.36 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-1.15 ^-0.0 ^-0.73 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.48 ^-1.28 ^-0.03 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-1.01 ^-0.79 ^-0.47 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.27 ^-1.27 ^-0.42 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^0.2 ^-0.78 ^-1.1 0.078 0.078 0.078 0.0 3 force @a[distance=..64] +particle flash ^-0.59 ^-0.48 ^-1.13 0.078 0.078 0.078 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_014.mcfunction new file mode 100644 index 000000000..6d5fe03b9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_014.mcfunction @@ -0,0 +1,48 @@ +# frame 14 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:3.26d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.664 0.2 +# Explosion--02_Particle1 +particle flash ^-0.37 ^-0.26 ^1.51 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.81 ^0.81 ^1.07 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.77 ^1.15 ^0.74 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.52 ^-0.26 ^0.32 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.4 ^-1.47 ^0.38 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.04 ^-0.81 ^0.85 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.4 ^1.47 ^-0.38 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.04 ^0.81 ^-0.85 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.81 ^-0.81 ^-1.07 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.77 ^-1.15 ^-0.74 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.52 ^0.26 ^-0.32 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.37 ^0.26 ^-1.51 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.67 ^0.52 ^1.32 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.26 ^0.32 ^1.52 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^1.15 ^1.07 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.09 ^0.0 ^1.13 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.4 ^-0.63 ^1.39 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.11 ^-0.31 ^1.07 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.34 ^0.52 ^0.62 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.45 ^-1.02 ^1.11 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.13 ^-1.02 ^0.41 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.38 ^-1.34 ^0.73 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.37 ^0.63 ^0.44 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.51 ^-0.32 ^0.31 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.22 ^1.54 ^0.21 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.71 ^1.34 ^0.41 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.51 ^0.32 ^-0.31 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.07 ^1.15 ^-0.06 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.71 ^-1.34 ^-0.41 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.37 ^-0.63 ^-0.44 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.07 ^-1.15 ^0.06 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.22 ^-1.54 ^-0.21 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.13 ^1.02 ^-0.41 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.38 ^1.34 ^-0.73 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-1.09 ^-0.0 ^-1.13 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-1.15 ^-1.07 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.34 ^-0.52 ^-0.62 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.45 ^1.02 ^-1.11 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^1.11 ^0.31 ^-1.07 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.4 ^0.63 ^-1.39 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^-0.26 ^-0.32 ^-1.52 0.083 0.083 0.083 0.0 3 force @a[distance=..64] +particle flash ^0.67 ^-0.52 ^-1.32 0.083 0.083 0.083 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_015.mcfunction new file mode 100644 index 000000000..c1f7839db --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_015.mcfunction @@ -0,0 +1,48 @@ +# frame 15 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:3.5d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.676 0.2 +# Explosion--02_Particle1 +particle flash ^-0.4 ^-1.12 ^-1.34 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.52 ^-0.93 ^0.17 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.35 ^0.48 ^-1.07 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^0.53 ^-1.65 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.37 ^-0.84 ^-0.78 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^-1.75 ^0.35 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.37 ^0.84 ^0.78 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^1.75 ^-0.35 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.52 ^0.93 ^-0.17 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.35 ^-0.48 ^1.07 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^-0.53 ^1.65 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.4 ^1.12 ^1.34 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.03 ^-0.38 ^-1.41 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.13 ^-1.21 ^-0.69 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.69 ^-0.26 ^-0.53 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.8 ^-1.57 ^0.3 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.14 ^-1.69 ^-0.58 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^-0.35 ^-1.76 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.54 ^0.6 ^-1.6 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.57 ^-1.16 ^-1.24 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.06 ^-0.18 ^-1.43 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.9 ^-1.52 ^-0.26 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.15 ^-0.86 ^1.07 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^-1.34 ^1.17 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.6 ^0.78 ^-0.17 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.7 ^-0.05 ^0.56 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^1.34 ^-1.17 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.89 ^1.31 ^-0.83 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.7 ^0.05 ^-0.56 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.15 ^0.86 ^-1.07 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.89 ^-1.31 ^0.83 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.6 ^-0.78 ^0.17 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-1.06 ^0.18 ^1.43 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.9 ^1.52 ^0.26 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.8 ^1.57 ^-0.3 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.69 ^0.26 ^0.53 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.54 ^-0.6 ^1.6 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.57 ^1.16 ^1.24 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^0.35 ^1.76 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^0.14 ^1.69 ^0.58 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.13 ^1.21 ^0.69 0.088 0.088 0.088 0.0 3 force @a[distance=..64] +particle flash ^1.03 ^0.38 ^1.41 0.088 0.088 0.088 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_016.mcfunction new file mode 100644 index 000000000..5100fcc24 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_016.mcfunction @@ -0,0 +1,48 @@ +# frame 16 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:3.76d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.689 0.2 +# Explosion--02_Particle1 +particle flash ^-1.67 ^0.09 ^-1.13 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^-1.13 ^-1.67 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.2 ^-1.62 ^0.03 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.75 ^0.19 ^0.99 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.92 ^1.8 ^-0.12 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.15 ^0.98 ^-1.76 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.92 ^-1.8 ^0.12 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.15 ^-0.98 ^1.76 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^1.13 ^1.67 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.2 ^1.62 ^-0.03 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.75 ^-0.19 ^-0.99 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.67 ^-0.09 ^1.13 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.69 ^-0.9 ^-0.65 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.99 ^-0.61 ^-1.65 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.72 ^-1.62 ^-0.97 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^-0.09 ^-2.02 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.89 ^0.63 ^-1.7 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-2.01 ^0.16 ^-0.09 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.73 ^-0.85 ^0.59 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.52 ^1.11 ^-0.73 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.57 ^1.16 ^0.51 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.45 ^1.63 ^-1.1 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.02 ^-0.78 ^-1.56 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.12 ^0.47 ^-1.61 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^-2.01 ^0.08 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.53 ^-1.72 ^-0.91 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.12 ^-0.47 ^1.61 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.8 ^-1.53 ^1.05 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.53 ^1.72 ^0.91 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-1.02 ^0.78 ^1.56 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.8 ^1.53 ^-1.05 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^2.01 ^-0.08 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.57 ^-1.16 ^-0.51 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.45 ^-1.63 ^1.1 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^0.09 ^2.02 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.72 ^1.62 ^0.97 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.73 ^0.85 ^-0.59 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.52 ^-1.11 ^0.73 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^2.01 ^-0.16 ^0.09 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.89 ^-0.63 ^1.7 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^0.99 ^0.61 ^1.65 0.093 0.093 0.093 0.0 3 force @a[distance=..64] +particle flash ^1.69 ^0.9 ^0.65 0.093 0.093 0.093 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_017.mcfunction new file mode 100644 index 000000000..a83585b3c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_017.mcfunction @@ -0,0 +1,48 @@ +# frame 17 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:4.029999999999999d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.702 0.2 +# Explosion--02_Particle1 +particle flash ^-0.91 ^-0.13 ^-2.06 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.03 ^1.85 ^-0.77 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.05 ^1.13 ^-1.65 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.12 ^-1.24 ^-1.52 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-0.92 ^-1.98 ^-0.57 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-2.25 ^-0.07 ^-0.1 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.92 ^1.98 ^0.57 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^2.25 ^0.07 ^0.1 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.03 ^-1.85 ^0.77 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.05 ^-1.13 ^1.65 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.12 ^1.24 ^1.52 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.91 ^0.13 ^2.06 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^0.59 ^-2.18 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.14 ^1.01 ^-1.66 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^1.76 ^-1.42 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.93 ^1.05 ^-0.51 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.86 ^-0.12 ^-1.27 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^-0.81 ^-2.11 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.28 ^-0.06 ^-1.86 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.08 ^-1.24 ^-1.55 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^-1.89 ^-1.23 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.87 ^-1.21 ^-0.4 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.27 ^1.82 ^0.44 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.98 ^0.69 ^0.83 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.16 ^1.83 ^-0.63 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-0.06 ^2.25 ^-0.12 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.98 ^-0.69 ^-0.83 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.94 ^0.71 ^-0.91 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^0.06 ^-2.25 ^0.12 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.27 ^-1.82 ^-0.44 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.94 ^-0.71 ^0.91 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.16 ^-1.83 ^0.63 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^1.89 ^1.23 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.87 ^1.21 ^0.4 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.93 ^-1.05 ^0.51 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-1.76 ^1.42 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-1.28 ^0.06 ^1.86 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.08 ^1.24 ^1.55 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^0.81 ^2.11 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.86 ^0.12 ^1.27 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^1.14 ^-1.01 ^1.66 0.098 0.098 0.098 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^-0.59 ^2.18 0.098 0.098 0.098 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_018.mcfunction new file mode 100644 index 000000000..4c7e4e6d9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_018.mcfunction @@ -0,0 +1,48 @@ +# frame 18 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:4.3d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.714 0.2 +# Explosion--02_Particle1 +particle flash ^-1.59 ^1.78 ^0.77 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.63 ^2.37 ^-0.52 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.33 ^1.15 ^-1.78 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-2.44 ^-0.56 ^-0.11 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.16 ^-0.4 ^2.18 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.74 ^1.41 ^1.93 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.16 ^0.4 ^-2.18 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.74 ^-1.41 ^-1.93 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.63 ^-2.37 ^0.52 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.33 ^-1.15 ^1.78 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^2.44 ^0.56 ^0.11 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.59 ^-1.78 ^-0.77 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.72 ^1.72 ^-0.6 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.56 ^2.44 ^0.15 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.41 ^2.07 ^-1.35 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.81 ^2.22 ^0.83 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.5 ^1.87 ^1.59 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-2.37 ^0.72 ^0.38 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-2.22 ^0.35 ^-1.11 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.62 ^0.81 ^1.73 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-2.11 ^-0.56 ^1.22 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.25 ^0.59 ^2.42 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.8 ^1.72 ^-0.24 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.87 ^1.16 ^1.2 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^0.91 ^-2.33 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.05 ^1.63 ^-1.59 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.87 ^-1.16 ^-1.2 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.22 ^-0.15 ^-2.18 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.05 ^-1.63 ^1.59 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-1.8 ^-1.72 ^0.24 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.22 ^0.15 ^2.18 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^-0.91 ^2.33 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^2.11 ^0.56 ^-1.22 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.25 ^-0.59 ^-2.42 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^-0.81 ^-2.22 ^-0.83 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.41 ^-2.07 ^1.35 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^2.22 ^-0.35 ^1.11 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.62 ^-0.81 ^-1.73 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^2.37 ^-0.72 ^-0.38 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.5 ^-1.87 ^-1.59 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^0.56 ^-2.44 ^-0.15 0.103 0.103 0.103 0.0 3 force @a[distance=..64] +particle flash ^1.72 ^-1.72 ^0.6 0.103 0.103 0.103 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_019.mcfunction new file mode 100644 index 000000000..bc4b1026e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_019.mcfunction @@ -0,0 +1,48 @@ +# frame 19 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:4.59d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.727 0.2 +# Explosion--02_Particle1 +particle flash ^1.52 ^0.89 ^-2.13 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^2.72 ^-0.16 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.55 ^0.89 ^0.59 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.09 ^-1.63 ^-0.79 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.32 ^-1.34 ^-2.39 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-1.34 ^1.34 ^-2.0 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.32 ^1.34 ^2.39 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^1.34 ^-1.34 ^2.0 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^-2.72 ^0.16 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.55 ^-0.89 ^-0.59 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.09 ^1.63 ^0.79 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-1.52 ^-0.89 ^2.13 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^1.04 ^-0.9 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^1.14 ^2.12 ^-1.34 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^1.75 ^2.12 ^0.25 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.54 ^2.39 ^-1.27 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^1.31 ^-2.43 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.12 ^-0.43 ^-1.71 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.72 ^-0.43 ^-0.12 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.71 ^-0.27 ^-2.65 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^1.04 ^-1.74 ^-1.87 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.98 ^0.0 ^-2.58 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.98 ^2.56 ^0.37 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.02 ^1.75 ^-0.71 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^1.68 ^1.31 ^1.75 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.44 ^2.39 ^1.31 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.02 ^-1.75 ^0.71 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^2.29 ^-0.27 ^1.52 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.44 ^-2.39 ^-1.31 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.98 ^-2.56 ^-0.37 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.29 ^0.27 ^-1.52 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-1.68 ^-1.31 ^-1.75 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-1.04 ^1.74 ^1.87 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.98 ^-0.0 ^2.58 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^0.54 ^-2.39 ^1.27 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-1.75 ^-2.12 ^-0.25 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.72 ^0.43 ^0.12 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.71 ^0.27 ^2.65 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.12 ^0.43 ^1.71 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^-1.31 ^2.43 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-1.14 ^-2.12 ^1.34 0.108 0.108 0.108 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^-1.04 ^0.9 0.108 0.108 0.108 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_020.mcfunction new file mode 100644 index 000000000..715c4b910 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_020.mcfunction @@ -0,0 +1,48 @@ +# frame 20 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:4.890000000000001d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.739 0.2 +# Explosion--02_Particle1 +particle flash ^1.74 ^-2.24 ^-1.04 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.45 ^-1.66 ^2.07 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.01 ^-2.82 ^0.43 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.0 ^-1.47 ^-2.45 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.47 ^0.52 ^-2.59 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^2.99 ^0.41 ^0.2 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.47 ^-0.52 ^2.59 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-2.99 ^-0.41 ^-0.2 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.45 ^1.66 ^-2.07 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.01 ^2.82 ^-0.43 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.0 ^1.47 ^2.45 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.74 ^2.24 ^1.04 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^-2.97 ^-0.36 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.88 ^-2.29 ^0.6 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^0.26 ^-2.63 ^1.47 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^2.61 ^-0.73 ^1.33 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^2.78 ^-1.08 ^-0.5 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^-2.18 ^-2.05 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.19 ^-2.52 ^-1.18 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.89 ^-1.01 ^-2.14 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^0.27 ^-0.55 ^-2.96 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^2.62 ^0.55 ^-1.4 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.44 ^-0.11 ^2.65 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^2.35 ^1.1 ^1.56 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.46 ^-1.96 ^1.78 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-1.28 ^2.74 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-2.35 ^-1.1 ^-1.56 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-2.35 ^-1.89 ^0.14 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^1.28 ^-2.74 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.44 ^0.11 ^-2.65 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^2.35 ^1.89 ^-0.14 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.46 ^1.96 ^-1.78 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-0.27 ^0.55 ^2.96 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-2.62 ^-0.55 ^1.4 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-2.61 ^0.73 ^-1.33 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-0.26 ^2.63 ^-1.47 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^1.19 ^2.52 ^1.18 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.89 ^1.01 ^2.14 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^2.18 ^2.05 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-2.78 ^1.08 ^0.5 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-1.88 ^2.29 ^-0.6 0.113 0.113 0.113 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^2.97 ^0.36 0.113 0.113 0.113 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_021.mcfunction new file mode 100644 index 000000000..2f753fc58 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_021.mcfunction @@ -0,0 +1,48 @@ +# frame 21 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:5.1899999999999995d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.752 0.2 +# Explosion--02_Particle1 +particle flash ^-1.78 ^-0.6 ^-2.71 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-0.12 ^-3.13 ^-1.03 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-2.85 ^-1.59 ^0.44 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-2.75 ^1.78 ^-0.37 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^2.32 ^-2.34 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.68 ^-0.71 ^-2.74 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-2.32 ^2.34 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.68 ^0.71 ^2.74 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^3.13 ^1.03 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^2.85 ^1.59 ^-0.44 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^2.75 ^-1.78 ^0.37 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.78 ^0.6 ^2.71 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-2.73 ^-1.28 ^-1.33 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.12 ^-2.19 ^-2.19 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.75 ^-2.77 ^-0.35 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^0.92 ^-2.26 ^-2.22 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-0.06 ^-0.77 ^-3.2 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-2.66 ^0.69 ^-1.81 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-3.29 ^0.11 ^0.04 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.02 ^1.01 ^-2.97 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.59 ^2.41 ^-1.6 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.02 ^0.94 ^-2.99 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.55 ^-2.88 ^-0.38 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^2.6 ^-1.46 ^-1.39 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.71 ^-2.3 ^1.63 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^-3.2 ^0.77 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-2.6 ^1.46 ^1.39 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-2.66 ^-0.51 ^1.87 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^3.2 ^-0.77 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.55 ^2.88 ^0.38 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^2.66 ^0.51 ^-1.87 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.71 ^2.3 ^-1.63 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.59 ^-2.41 ^1.6 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-1.02 ^-0.94 ^2.99 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^-0.92 ^2.26 ^2.22 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.75 ^2.77 ^0.35 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^3.29 ^-0.11 ^-0.04 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.02 ^-1.01 ^2.97 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^2.66 ^-0.69 ^1.81 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^0.06 ^0.77 ^3.2 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^1.12 ^2.19 ^2.19 0.117 0.117 0.117 0.0 3 force @a[distance=..64] +particle flash ^2.73 ^1.28 ^1.33 0.117 0.117 0.117 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_022.mcfunction new file mode 100644 index 000000000..d6ded8d58 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_022.mcfunction @@ -0,0 +1,48 @@ +# frame 22 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:5.5d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.765 0.2 +# Explosion--02_Particle1 +particle flash ^3.38 ^1.15 ^0.14 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.43 ^-2.34 ^1.18 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.25 ^-1.34 ^-2.43 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^1.05 ^2.21 ^-2.6 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^0.49 ^3.42 ^0.91 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^1.35 ^0.61 ^3.25 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-0.49 ^-3.42 ^-0.91 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-1.35 ^-0.61 ^-3.25 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.43 ^2.34 ^-1.18 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.25 ^1.34 ^2.43 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-1.05 ^-2.21 ^2.6 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-3.38 ^-1.15 ^-0.14 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^3.31 ^-0.12 ^-1.35 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^3.42 ^-0.7 ^0.78 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.75 ^-2.16 ^-0.73 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.22 ^-1.02 ^2.61 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.78 ^1.03 ^1.99 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.6 ^1.98 ^-1.45 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^1.93 ^0.51 ^-2.96 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^2.28 ^2.68 ^0.62 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^0.9 ^3.31 ^-0.99 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^1.08 ^2.37 ^2.45 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^0.81 ^-2.67 ^2.23 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^0.18 ^-0.94 ^3.44 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^1.03 ^-2.8 ^-1.97 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^1.14 ^-3.38 ^0.16 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-0.18 ^0.94 ^-3.44 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^0.53 ^-1.15 ^-3.34 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-1.14 ^3.38 ^-0.16 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-0.81 ^2.67 ^-2.23 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-0.53 ^1.15 ^3.34 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-1.03 ^2.8 ^1.97 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-0.9 ^-3.31 ^0.99 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-1.08 ^-2.37 ^-2.45 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.22 ^1.02 ^-2.61 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.75 ^2.16 ^0.73 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-1.93 ^-0.51 ^2.96 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.28 ^-2.68 ^-0.62 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.6 ^-1.98 ^1.45 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-2.78 ^-1.03 ^-1.99 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-3.42 ^0.7 ^-0.78 0.122 0.122 0.122 0.0 3 force @a[distance=..64] +particle flash ^-3.31 ^0.12 ^1.35 0.122 0.122 0.122 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_023.mcfunction new file mode 100644 index 000000000..29c4ee508 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_023.mcfunction @@ -0,0 +1,48 @@ +# frame 23 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:5.82d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.777 0.2 +# Explosion--02_Particle1 +particle flash ^2.5 ^2.93 ^-0.24 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-1.49 ^3.5 ^-0.64 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^0.06 ^2.47 ^2.97 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^3.07 ^-0.17 ^2.32 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^3.39 ^-0.76 ^-1.68 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^0.57 ^1.51 ^-3.51 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-3.39 ^0.76 ^1.68 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-0.57 ^-1.51 ^3.51 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^1.49 ^-3.5 ^0.64 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-0.06 ^-2.47 ^-2.97 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-3.07 ^0.17 ^-2.32 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-2.5 ^-2.93 ^0.24 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^1.51 ^3.17 ^1.6 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^0.6 ^3.78 ^-0.51 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-0.84 ^3.51 ^1.37 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-0.54 ^2.94 ^-2.44 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^1.81 ^2.6 ^-2.2 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^3.28 ^1.62 ^1.23 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^1.84 ^1.35 ^3.11 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^3.46 ^1.27 ^-1.12 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^3.8 ^-0.55 ^0.38 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^2.33 ^0.44 ^-3.05 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-2.68 ^2.16 ^-1.74 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-1.47 ^0.98 ^-3.43 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-1.96 ^1.9 ^2.73 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-2.87 ^2.51 ^0.61 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^1.47 ^-0.98 ^3.43 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-0.3 ^0.56 ^3.8 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^2.87 ^-2.51 ^-0.61 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^2.68 ^-2.16 ^1.74 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^0.3 ^-0.56 ^-3.8 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^1.96 ^-1.9 ^-2.73 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-3.8 ^0.55 ^-0.38 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-2.33 ^-0.44 ^3.05 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^0.54 ^-2.94 ^2.44 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^0.84 ^-3.51 ^-1.37 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-1.84 ^-1.35 ^-3.11 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-3.46 ^-1.27 ^1.12 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-3.28 ^-1.62 ^-1.23 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-1.81 ^-2.6 ^2.2 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-0.6 ^-3.78 ^0.51 0.127 0.127 0.127 0.0 3 force @a[distance=..64] +particle flash ^-1.51 ^-3.17 ^-1.6 0.127 0.127 0.127 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_024.mcfunction new file mode 100644 index 000000000..386d21e6a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_024.mcfunction @@ -0,0 +1,48 @@ +# frame 24 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:6.14d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.79 0.2 +# Explosion--02_Particle1 +particle flash ^3.06 ^0.76 ^2.7 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^3.77 ^0.68 ^-1.6 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^1.41 ^3.9 ^0.16 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-1.01 ^2.2 ^3.37 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-0.14 ^-2.07 ^3.59 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^2.81 ^-3.01 ^0.52 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^0.14 ^2.07 ^-3.59 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-2.81 ^3.01 ^-0.52 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-3.77 ^-0.68 ^1.6 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-1.41 ^-3.9 ^-0.16 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^1.01 ^-2.2 ^-3.37 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-3.06 ^-0.76 ^-2.7 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^2.62 ^2.74 ^1.68 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^4.01 ^0.85 ^0.65 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^3.04 ^2.69 ^-0.85 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^3.86 ^-1.37 ^-0.63 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^3.45 ^-1.32 ^1.89 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^1.2 ^1.74 ^3.57 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^3.59 ^2.07 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^1.71 ^-0.77 ^3.7 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-0.68 ^0.08 ^4.09 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^1.57 ^-2.99 ^2.42 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^2.81 ^-0.9 ^-2.92 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^2.24 ^-3.06 ^-1.67 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^0.91 ^3.51 ^-2.02 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^2.3 ^1.61 ^-3.05 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-2.24 ^3.06 ^1.67 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-0.82 ^4.06 ^-0.21 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-2.3 ^-1.61 ^3.05 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-2.81 ^0.9 ^2.92 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^0.82 ^-4.06 ^0.21 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-0.91 ^-3.51 ^2.02 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^0.68 ^-0.08 ^-4.09 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-1.57 ^2.99 ^-2.42 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-3.86 ^1.37 ^0.63 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-3.04 ^-2.69 ^0.85 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^-3.59 ^-2.07 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-1.71 ^0.77 ^-3.7 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-1.2 ^-1.74 ^-3.57 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-3.45 ^1.32 ^-1.89 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-4.01 ^-0.85 ^-0.65 0.132 0.132 0.132 0.0 3 force @a[distance=..64] +particle flash ^-2.62 ^-2.74 ^-1.68 0.132 0.132 0.132 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_025.mcfunction new file mode 100644 index 000000000..ced8bba81 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_025.mcfunction @@ -0,0 +1,48 @@ +# frame 25 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:6.48d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.803 0.2 +# Explosion--02_Particle1 +particle flash ^1.76 ^-4.01 ^-0.79 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.25 ^-3.5 ^1.57 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.09 ^-2.53 ^-3.0 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.04 ^-0.54 ^-3.91 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^4.44 ^-0.28 ^0.09 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^1.79 ^-2.11 ^3.48 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-4.44 ^0.28 ^-0.09 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-1.79 ^2.11 ^-3.48 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.25 ^3.5 ^-1.57 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.09 ^2.53 ^3.0 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.04 ^0.54 ^3.91 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-1.76 ^4.01 ^0.79 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-0.2 ^-3.84 ^-2.23 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-0.29 ^-4.41 ^0.46 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.55 ^-3.55 ^-0.84 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-0.27 ^-3.3 ^2.97 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.08 ^-3.59 ^1.58 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.23 ^-2.67 ^-2.76 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^-1.81 ^-4.06 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^3.64 ^-2.52 ^-0.41 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^3.81 ^-0.48 ^-2.25 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^3.66 ^-1.4 ^2.1 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.52 ^-1.74 ^3.23 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-0.15 ^-0.92 ^4.35 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-3.84 ^-1.32 ^-1.82 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-3.93 ^-1.89 ^0.87 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^0.15 ^0.92 ^-4.35 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.28 ^-0.25 ^-3.81 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^3.93 ^1.89 ^-0.87 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.52 ^1.74 ^-3.23 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.28 ^0.25 ^3.81 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^3.84 ^1.32 ^1.82 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-3.81 ^0.48 ^2.25 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-3.66 ^1.4 ^-2.1 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^0.27 ^3.3 ^-2.97 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^2.55 ^3.55 ^0.84 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^1.81 ^4.06 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-3.64 ^2.52 ^0.41 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.23 ^2.67 ^2.76 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^-2.08 ^3.59 ^-1.58 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^0.29 ^4.41 ^-0.46 0.137 0.137 0.137 0.0 3 force @a[distance=..64] +particle flash ^0.2 ^3.84 ^2.23 0.137 0.137 0.137 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_026.mcfunction new file mode 100644 index 000000000..533f01cf0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_026.mcfunction @@ -0,0 +1,48 @@ +# frame 26 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:6.82d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.815 0.2 +# Explosion--02_Particle1 +particle flash ^-4.64 ^-0.54 ^-0.87 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-2.89 ^3.33 ^1.76 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-1.94 ^3.0 ^-3.13 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-1.17 ^-1.81 ^-4.23 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-1.65 ^-4.45 ^-0.03 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-2.72 ^-1.28 ^3.68 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^1.65 ^4.45 ^0.03 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^2.72 ^1.28 ^-3.68 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^2.89 ^-3.33 ^-1.76 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^1.94 ^-3.0 ^3.13 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^1.17 ^1.81 ^4.23 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^4.64 ^0.54 ^0.87 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-3.86 ^1.45 ^-2.35 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-4.43 ^1.64 ^0.52 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-2.84 ^3.72 ^-0.8 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-3.3 ^1.21 ^3.2 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-4.32 ^-1.07 ^1.65 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-3.41 ^-1.38 ^-3.0 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-1.83 ^0.7 ^-4.33 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-3.7 ^-2.93 ^-0.53 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-1.66 ^-3.68 ^-2.5 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-2.57 ^-3.37 ^2.15 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-1.01 ^3.02 ^3.52 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-0.91 ^0.31 ^4.65 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^4.38 ^-1.82 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-0.73 ^4.57 ^1.05 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^0.91 ^-0.31 ^-4.65 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^2.52 ^-4.0 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^0.73 ^-4.57 ^-1.05 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^1.01 ^-3.02 ^-3.52 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^-2.52 ^4.0 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^-4.38 ^1.82 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^1.66 ^3.68 ^2.5 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^2.57 ^3.37 ^-2.15 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^3.3 ^-1.21 ^-3.2 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^2.84 ^-3.72 ^0.8 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^1.83 ^-0.7 ^4.33 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^3.7 ^2.93 ^0.53 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^3.41 ^1.38 ^3.0 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^4.32 ^1.07 ^-1.65 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^4.43 ^-1.64 ^-0.52 0.142 0.142 0.142 0.0 3 force @a[distance=..64] +particle flash ^3.86 ^-1.45 ^2.35 0.142 0.142 0.142 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_027.mcfunction new file mode 100644 index 000000000..25a0a1bfa --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_027.mcfunction @@ -0,0 +1,48 @@ +# frame 27 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:7.16d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.828 0.2 +# Explosion--02_Particle1 +particle flash ^-4.2 ^-1.85 ^2.12 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-2.64 ^3.17 ^2.93 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-4.39 ^1.67 ^-1.86 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-2.68 ^-3.27 ^-2.77 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^0.14 ^-4.84 ^1.45 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^0.17 ^-0.86 ^4.98 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-0.14 ^4.84 ^-1.45 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-0.17 ^0.86 ^-4.98 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^2.64 ^-3.17 ^-2.93 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^4.39 ^-1.67 ^1.86 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^2.68 ^3.27 ^2.77 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^4.2 ^1.85 ^-2.12 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-5.05 ^-0.1 ^0.15 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-4.02 ^0.77 ^2.97 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-4.13 ^2.84 ^0.63 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-1.45 ^1.35 ^4.65 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-2.37 ^-1.59 ^4.17 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-4.04 ^-3.01 ^-0.38 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-4.16 ^-0.94 ^-2.72 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^-3.93 ^2.1 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-1.49 ^-4.77 ^-0.77 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^0.18 ^-3.35 ^3.78 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^3.78 ^3.35 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^1.67 ^1.42 ^4.56 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-2.67 ^3.83 ^-1.95 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-1.63 ^4.71 ^0.87 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-1.67 ^-1.42 ^-4.56 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-2.68 ^1.49 ^-4.02 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^1.63 ^-4.71 ^-0.87 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^-3.78 ^-3.35 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^2.68 ^-1.49 ^4.02 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^2.67 ^-3.83 ^1.95 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^1.49 ^4.77 ^0.77 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^-0.18 ^3.35 ^-3.78 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^1.45 ^-1.35 ^-4.65 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^4.13 ^-2.84 ^-0.63 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^4.16 ^0.94 ^2.72 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^3.93 ^-2.1 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^4.04 ^3.01 ^0.38 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^2.37 ^1.59 ^-4.17 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^4.02 ^-0.77 ^-2.97 0.147 0.147 0.147 0.0 3 force @a[distance=..64] +particle flash ^5.05 ^0.1 ^-0.15 0.147 0.147 0.147 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_028.mcfunction new file mode 100644 index 000000000..5803063c3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_028.mcfunction @@ -0,0 +1,48 @@ +# frame 28 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:7.51d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.84 0.2 +# Explosion--02_Particle1 +particle flash ^3.06 ^-4.4 ^-0.29 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-2.57 ^-4.68 ^-0.55 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^0.34 ^-2.37 ^-4.8 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^4.67 ^0.49 ^-2.6 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^4.44 ^-0.04 ^3.02 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-0.04 ^-3.24 ^4.28 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-4.44 ^0.04 ^-3.02 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^0.04 ^3.24 ^-4.28 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^2.57 ^4.68 ^0.55 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-0.34 ^2.37 ^4.8 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-4.67 ^-0.49 ^2.6 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-3.06 ^4.4 ^0.29 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^2.0 ^-3.98 ^-3.0 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^0.29 ^-5.34 ^-0.5 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-1.31 ^-4.14 ^-3.15 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-1.54 ^-4.65 ^2.19 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^1.77 ^-4.49 ^2.34 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^4.54 ^-2.3 ^-1.7 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^2.95 ^-1.11 ^-4.35 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^4.41 ^-2.61 ^1.6 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^5.36 ^0.26 ^0.25 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^2.59 ^-1.93 ^4.29 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-4.26 ^-3.04 ^1.2 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-2.77 ^-2.19 ^4.04 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-2.41 ^-1.37 ^-4.6 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-4.12 ^-2.72 ^-2.1 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^2.77 ^2.19 ^-4.04 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^0.22 ^0.51 ^-5.34 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^4.12 ^2.72 ^2.1 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^4.26 ^3.04 ^-1.2 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-0.22 ^-0.51 ^5.34 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^2.41 ^1.37 ^4.6 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-5.36 ^-0.26 ^-0.25 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-2.59 ^1.93 ^-4.29 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^1.54 ^4.65 ^-2.19 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^1.31 ^4.14 ^3.15 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-2.95 ^1.11 ^4.35 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-4.41 ^2.61 ^-1.6 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-4.54 ^2.3 ^1.7 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-1.77 ^4.49 ^-2.34 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-0.29 ^5.34 ^0.5 0.152 0.152 0.152 0.0 3 force @a[distance=..64] +particle flash ^-2.0 ^3.98 ^3.0 0.152 0.152 0.152 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_029.mcfunction new file mode 100644 index 000000000..272cb3ed5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_029.mcfunction @@ -0,0 +1,48 @@ +# frame 29 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:7.86d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.853 0.2 +# Explosion--02_Particle1 +particle flash ^3.54 ^3.59 ^-2.63 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-2.26 ^3.29 ^-4.05 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-0.59 ^5.52 ^1.24 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^4.08 ^2.34 ^3.19 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^5.3 ^-1.85 ^-0.89 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^1.38 ^-1.27 ^-5.37 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-5.3 ^1.85 ^0.89 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-1.38 ^1.27 ^5.37 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^2.26 ^-3.29 ^4.05 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^0.59 ^-5.52 ^-1.24 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-4.08 ^-2.34 ^-3.19 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-3.54 ^-3.59 ^2.63 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^1.73 ^5.35 ^-0.82 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^0.75 ^4.04 ^-3.93 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-1.68 ^5.17 ^-1.65 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-0.52 ^1.19 ^-5.54 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^2.89 ^1.37 ^-4.7 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^4.48 ^3.49 ^0.33 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^2.05 ^4.62 ^2.6 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^5.2 ^1.02 ^-2.07 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^5.51 ^0.29 ^1.35 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^3.93 ^-1.83 ^-3.68 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-3.73 ^0.55 ^-4.26 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-1.58 ^-2.12 ^-5.03 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-3.47 ^4.33 ^1.25 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-4.45 ^3.02 ^-1.86 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^1.58 ^2.12 ^5.03 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-1.16 ^3.99 ^3.88 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^4.45 ^-3.02 ^1.86 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^3.73 ^-0.55 ^4.26 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^1.16 ^-3.99 ^-3.88 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^3.47 ^-4.33 ^-1.25 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-5.51 ^-0.29 ^-1.35 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-3.93 ^1.83 ^3.68 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^0.52 ^-1.19 ^5.54 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^1.68 ^-5.17 ^1.65 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-2.05 ^-4.62 ^-2.6 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-5.2 ^-1.02 ^2.07 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-4.48 ^-3.49 ^-0.33 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-2.89 ^-1.37 ^4.7 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-0.75 ^-4.04 ^3.93 0.156 0.156 0.156 0.0 3 force @a[distance=..64] +particle flash ^-1.73 ^-5.35 ^0.82 0.156 0.156 0.156 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_030.mcfunction new file mode 100644 index 000000000..4e903b0a5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_030.mcfunction @@ -0,0 +1,48 @@ +# frame 30 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:8.219999999999999d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.866 0.2 +# Explosion--02_Particle1 +particle flash ^1.4 ^5.42 ^2.18 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^3.56 ^3.43 ^-3.41 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-2.58 ^4.72 ^-2.68 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-4.29 ^2.84 ^3.1 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^0.79 ^0.38 ^5.94 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^5.64 ^0.75 ^1.91 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-0.79 ^-0.38 ^-5.94 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-5.64 ^-0.75 ^-1.91 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-3.56 ^-3.43 ^3.41 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^2.58 ^-4.72 ^2.68 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^4.29 ^-2.84 ^-3.1 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-1.4 ^-5.42 ^-2.18 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-0.69 ^5.96 ^-0.29 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^2.92 ^5.2 ^-0.72 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^0.58 ^4.79 ^-3.58 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^5.41 ^2.46 ^-0.88 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^4.14 ^3.63 ^2.41 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-1.7 ^4.85 ^3.11 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-4.04 ^4.44 ^0.25 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^1.29 ^3.41 ^4.77 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-2.05 ^1.89 ^5.32 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^3.78 ^0.67 ^4.62 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^4.61 ^0.35 ^-3.83 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^5.84 ^-1.23 ^-0.7 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-1.98 ^2.55 ^-5.07 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^1.63 ^1.79 ^-5.5 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-5.84 ^1.23 ^0.7 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-4.83 ^2.33 ^-2.7 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-1.63 ^-1.79 ^5.5 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-4.61 ^-0.35 ^3.83 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^4.83 ^-2.33 ^2.7 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^1.98 ^-2.55 ^5.07 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^2.05 ^-1.89 ^-5.32 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-3.78 ^-0.67 ^-4.62 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-5.41 ^-2.46 ^0.88 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-0.58 ^-4.79 ^3.58 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^4.04 ^-4.44 ^-0.25 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-1.29 ^-3.41 ^-4.77 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^1.7 ^-4.85 ^-3.11 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-4.14 ^-3.63 ^-2.41 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^-2.92 ^-5.2 ^0.72 0.161 0.161 0.161 0.0 3 force @a[distance=..64] +particle flash ^0.69 ^-5.96 ^0.29 0.161 0.161 0.161 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_031.mcfunction new file mode 100644 index 000000000..c0e17dafe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_031.mcfunction @@ -0,0 +1,48 @@ +# frame 31 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:8.59d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.878 0.2 +# Explosion--02_Particle1 +particle flash ^6.24 ^-0.87 ^0.62 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^2.9 ^-3.13 ^-4.67 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^3.73 ^3.41 ^-3.81 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^3.26 ^4.7 ^2.71 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^2.14 ^-1.05 ^5.87 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^1.92 ^-5.89 ^1.3 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-2.14 ^1.05 ^-5.87 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-1.92 ^5.89 ^-1.3 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-2.9 ^3.13 ^4.67 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-3.73 ^-3.41 ^3.81 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-3.26 ^-4.7 ^-2.71 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-6.24 ^0.87 ^-0.62 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^5.86 ^1.49 ^-1.87 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^5.37 ^-2.36 ^-2.38 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^3.9 ^0.16 ^-4.99 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^2.83 ^-5.31 ^-1.98 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^4.79 ^-3.98 ^1.13 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^5.58 ^2.25 ^1.96 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^4.11 ^4.77 ^-0.65 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^4.93 ^-1.13 ^3.81 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^3.18 ^2.15 ^5.04 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^-4.08 ^4.22 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-0.21 ^-4.61 ^-4.34 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-0.79 ^-6.23 ^-0.82 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^0.94 ^2.62 ^-5.69 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^0.45 ^-1.23 ^-6.2 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^0.79 ^6.23 ^0.82 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^1.07 ^5.47 ^-3.01 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-0.45 ^1.23 ^6.2 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^0.21 ^4.61 ^4.34 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-1.07 ^-5.47 ^3.01 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-0.94 ^-2.62 ^5.69 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-3.18 ^-2.15 ^-5.04 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^4.08 ^-4.22 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-2.83 ^5.31 ^1.98 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-3.9 ^-0.16 ^4.99 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-4.11 ^-4.77 ^0.65 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-4.93 ^1.13 ^-3.81 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-5.58 ^-2.25 ^-1.96 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-4.79 ^3.98 ^-1.13 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-5.37 ^2.36 ^2.38 0.166 0.166 0.166 0.0 3 force @a[distance=..64] +particle flash ^-5.86 ^-1.49 ^1.87 0.166 0.166 0.166 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_032.mcfunction new file mode 100644 index 000000000..1230f5fb6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_032.mcfunction @@ -0,0 +1,48 @@ +# frame 32 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:8.96d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.891 0.2 +# Explosion--02_Particle1 +particle flash ^5.74 ^-1.37 ^-3.08 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^4.17 ^5.11 ^-0.93 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^5.49 ^0.09 ^3.76 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^2.78 ^-5.9 ^1.35 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-0.23 ^-4.58 ^-4.83 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^0.63 ^2.23 ^-6.24 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^0.23 ^4.58 ^4.83 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-0.63 ^-2.23 ^6.24 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-4.17 ^-5.11 ^0.93 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-5.49 ^-0.09 ^-3.76 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-2.78 ^5.9 ^-1.35 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-5.74 ^1.37 ^3.08 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^6.61 ^-0.75 ^0.4 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^5.83 ^2.2 ^-2.36 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^5.68 ^3.05 ^1.66 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^2.82 ^4.31 ^-4.22 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^3.75 ^0.51 ^-5.48 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^5.01 ^-4.27 ^-1.02 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^4.86 ^-3.42 ^3.01 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^3.24 ^-3.49 ^-4.65 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^1.5 ^-6.16 ^-2.05 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^-1.38 ^-6.51 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^0.82 ^6.47 ^-1.34 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-1.26 ^4.78 ^-4.47 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^3.36 ^2.74 ^5.05 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^2.59 ^5.69 ^2.29 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^1.26 ^-4.78 ^4.47 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^2.86 ^-1.26 ^5.88 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-2.59 ^-5.69 ^-2.29 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-0.82 ^-6.47 ^1.34 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-2.86 ^1.26 ^-5.88 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-3.36 ^-2.74 ^-5.05 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-1.5 ^6.16 ^2.05 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^1.38 ^6.51 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-2.82 ^-4.31 ^4.22 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-5.68 ^-3.05 ^-1.66 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-4.86 ^3.42 ^-3.01 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-3.24 ^3.49 ^4.65 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-5.01 ^4.27 ^1.02 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-3.75 ^-0.51 ^5.48 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-5.83 ^-2.2 ^2.36 0.171 0.171 0.171 0.0 3 force @a[distance=..64] +particle flash ^-6.61 ^0.75 ^-0.4 0.171 0.171 0.171 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_033.mcfunction new file mode 100644 index 000000000..575e2acec --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_033.mcfunction @@ -0,0 +1,48 @@ +# frame 33 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:9.33d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.903 0.2 +# Explosion--02_Particle1 +particle flash ^2.45 ^-6.03 ^2.55 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-3.24 ^-2.55 ^5.65 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-3.99 ^-5.66 ^-0.97 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^2.29 ^-4.67 ^-4.67 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^6.92 ^-0.96 ^-0.34 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^3.5 ^0.36 ^6.04 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-6.92 ^0.96 ^0.34 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-3.5 ^-0.36 ^-6.04 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^3.24 ^2.55 ^-5.65 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^3.99 ^5.66 ^0.97 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-2.29 ^4.67 ^4.67 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-2.45 ^6.03 ^-2.55 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-0.9 ^-6.87 ^0.93 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^-5.04 ^4.82 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-4.25 ^-4.83 ^2.75 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^-1.29 ^6.87 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^3.5 ^-3.34 ^5.05 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^2.79 ^-6.29 ^-1.24 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-1.0 ^-6.07 ^-3.32 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^5.51 ^-4.11 ^1.3 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^5.41 ^-3.31 ^-2.94 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^6.13 ^-0.35 ^3.35 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-3.25 ^1.25 ^6.06 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^0.71 ^2.96 ^6.3 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-6.41 ^-2.76 ^-0.37 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-5.97 ^-0.94 ^3.52 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-0.71 ^-2.96 ^-6.3 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-4.4 ^-3.54 ^-4.12 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^5.97 ^0.94 ^-3.52 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^3.25 ^-1.25 ^-6.06 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^4.4 ^3.54 ^4.12 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^6.41 ^2.76 ^0.37 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-5.41 ^3.31 ^2.94 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-6.13 ^0.35 ^-3.35 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^1.29 ^-6.87 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^4.25 ^4.83 ^-2.75 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^1.0 ^6.07 ^3.32 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-5.51 ^4.11 ^-1.3 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-2.79 ^6.29 ^1.24 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^-3.5 ^3.34 ^-5.05 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^5.04 ^-4.82 0.176 0.176 0.176 0.0 3 force @a[distance=..64] +particle flash ^0.9 ^6.87 ^-0.93 0.176 0.176 0.176 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_034.mcfunction new file mode 100644 index 000000000..1ec10d175 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_034.mcfunction @@ -0,0 +1,48 @@ +# frame 34 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:9.7d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.916 0.2 +# Explosion--02_Particle1 +particle flash ^3.0 ^-6.58 ^1.17 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^5.79 ^-0.22 ^4.49 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-1.09 ^-2.97 ^6.61 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-4.61 ^-5.69 ^0.32 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^-4.61 ^-5.69 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^6.52 ^-1.23 ^-3.11 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^4.61 ^5.69 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-6.52 ^1.23 ^3.11 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-5.79 ^0.22 ^-4.49 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^1.09 ^2.97 ^-6.61 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^4.61 ^5.69 ^-0.32 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-3.0 ^6.58 ^-1.17 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^1.12 ^-5.62 ^4.57 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^5.16 ^-4.0 ^3.32 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^2.76 ^-1.87 ^6.52 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^7.23 ^-0.85 ^0.81 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^5.59 ^-4.6 ^-1.14 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-0.95 ^-7.21 ^0.87 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-3.35 ^-5.09 ^4.07 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^1.81 ^-6.58 ^-2.66 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-2.66 ^-6.06 ^-3.16 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^3.88 ^-3.44 ^-5.18 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^6.11 ^3.22 ^2.45 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^6.54 ^2.62 ^-2.02 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-0.69 ^0.97 ^7.23 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^3.35 ^2.58 ^5.98 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-6.54 ^-2.62 ^2.02 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-4.47 ^-1.02 ^5.72 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-3.35 ^-2.58 ^-5.98 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-6.11 ^-3.22 ^-2.45 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^4.47 ^1.02 ^-5.72 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^0.69 ^-0.97 ^-7.23 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^2.66 ^6.06 ^3.16 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-3.88 ^3.44 ^5.18 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-7.23 ^0.85 ^-0.81 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-2.76 ^1.87 ^-6.52 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^3.35 ^5.09 ^-4.07 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-1.81 ^6.58 ^2.66 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^0.95 ^7.21 ^-0.87 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-5.59 ^4.6 ^1.14 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-5.16 ^4.0 ^-3.32 0.181 0.181 0.181 0.0 3 force @a[distance=..64] +particle flash ^-1.12 ^5.62 ^-4.57 0.181 0.181 0.181 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_035.mcfunction new file mode 100644 index 000000000..cf70f911e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_035.mcfunction @@ -0,0 +1,48 @@ +# frame 35 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:10.08d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.929 0.2 +# Explosion--02_Particle1 +particle flash ^3.37 ^-4.82 ^4.91 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^2.08 ^7.38 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-4.63 ^-3.93 ^4.67 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-0.79 ^-7.48 ^-1.45 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^6.23 ^-3.68 ^-2.54 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^6.72 ^2.23 ^2.92 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-6.23 ^3.68 ^2.54 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-6.72 ^-2.23 ^-2.92 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-2.08 ^-7.38 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^4.63 ^3.93 ^-4.67 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^0.79 ^7.48 ^1.45 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-3.37 ^4.82 ^-4.91 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-0.74 ^-5.14 ^5.63 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^1.99 ^-1.61 ^7.22 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-2.72 ^-1.09 ^7.08 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^3.96 ^2.53 ^6.05 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^5.93 ^-1.52 ^4.61 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^1.52 ^-7.23 ^2.03 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-3.19 ^-6.71 ^1.89 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^5.64 ^-4.99 ^1.4 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^3.2 ^-6.56 ^-2.34 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^7.61 ^-0.85 ^0.23 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^0.47 ^5.62 ^5.19 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^4.42 ^5.71 ^2.57 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-6.39 ^-0.15 ^4.24 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-3.66 ^3.38 ^5.83 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-4.42 ^-5.71 ^-2.57 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-6.68 ^-3.62 ^1.03 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^3.66 ^-3.38 ^-5.83 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-0.47 ^-5.62 ^-5.19 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^6.68 ^3.62 ^-1.03 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^6.39 ^0.15 ^-4.24 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-3.2 ^6.56 ^2.34 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-7.61 ^0.85 ^-0.23 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-3.96 ^-2.53 ^-6.05 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^2.72 ^1.09 ^-7.08 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^3.19 ^6.71 ^-1.89 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-5.64 ^4.99 ^-1.4 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-1.52 ^7.23 ^-2.03 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-5.93 ^1.52 ^-4.61 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^-1.99 ^1.61 ^-7.22 0.186 0.186 0.186 0.0 3 force @a[distance=..64] +particle flash ^0.74 ^5.14 ^-5.63 0.186 0.186 0.186 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_036.mcfunction new file mode 100644 index 000000000..2a010689e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_036.mcfunction @@ -0,0 +1,48 @@ +# frame 36 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:10.46d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.941 0.2 +# Explosion--02_Particle1 +particle flash ^0.92 ^-6.95 ^-3.86 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^4.29 ^-5.63 ^3.74 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-4.06 ^-6.27 ^2.88 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-6.23 ^-2.54 ^-4.35 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^0.78 ^0.41 ^-7.96 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^7.28 ^-1.51 ^-2.96 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-0.78 ^-0.41 ^7.96 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-7.28 ^1.51 ^2.96 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-4.29 ^5.63 ^-3.74 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^4.06 ^6.27 ^-2.88 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^6.23 ^2.54 ^4.35 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-0.92 ^6.95 ^3.86 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-1.84 ^-7.77 ^-0.58 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^3.06 ^-7.4 ^-0.07 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^0.13 ^-6.99 ^3.89 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^6.8 ^-4.2 ^0.46 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^4.82 ^-4.97 ^-4.01 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-3.12 ^-5.58 ^-4.83 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-6.05 ^-5.17 ^-0.86 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^1.0 ^-3.85 ^-6.95 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-3.2 ^-1.25 ^-7.23 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^4.74 ^-0.65 ^-6.42 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^6.18 ^-1.82 ^4.75 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^7.94 ^0.6 ^0.81 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-2.85 ^-3.92 ^6.37 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^2.06 ^-3.55 ^6.87 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-7.94 ^-0.6 ^-0.81 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-6.67 ^-2.8 ^3.43 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-2.06 ^3.55 ^-6.87 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-6.18 ^1.82 ^-4.75 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^6.67 ^2.8 ^-3.43 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^2.85 ^3.92 ^-6.37 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^3.2 ^1.25 ^7.23 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-4.74 ^0.65 ^6.42 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-6.8 ^4.2 ^-0.46 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-0.13 ^6.99 ^-3.89 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^6.05 ^5.17 ^0.86 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-1.0 ^3.85 ^6.95 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^3.12 ^5.58 ^4.83 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-4.82 ^4.97 ^4.01 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^-3.06 ^7.4 ^0.07 0.191 0.191 0.191 0.0 3 force @a[distance=..64] +particle flash ^1.84 ^7.77 ^0.58 0.191 0.191 0.191 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_037.mcfunction new file mode 100644 index 000000000..2409b4c0b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_037.mcfunction @@ -0,0 +1,48 @@ +# frame 37 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:10.84d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.954 0.2 +# Explosion--02_Particle1 +particle flash ^4.72 ^-6.09 ^3.21 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^2.74 ^-5.8 ^-5.34 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^8.13 ^0.2 ^-1.88 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^5.2 ^2.16 ^6.16 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-2.0 ^-2.63 ^7.67 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-3.52 ^-7.55 ^0.56 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^2.0 ^2.63 ^-7.67 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^3.52 ^7.55 ^-0.56 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-2.74 ^5.8 ^5.34 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-8.13 ^-0.2 ^1.88 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-5.2 ^-2.16 ^-6.16 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-4.72 ^6.09 ^-3.21 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^7.56 ^-3.46 ^0.78 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^4.39 ^-6.99 ^-1.25 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^6.39 ^-3.29 ^-4.24 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-0.46 ^-7.85 ^-2.81 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^0.71 ^-8.02 ^2.21 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^5.84 ^-2.31 ^5.5 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^7.84 ^1.39 ^2.52 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^1.6 ^-5.13 ^6.39 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^1.89 ^-0.28 ^8.13 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-3.24 ^-5.98 ^4.84 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-1.45 ^-4.68 ^-6.76 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-5.13 ^-5.71 ^-3.29 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^5.95 ^1.66 ^-5.61 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^2.78 ^-1.87 ^-7.65 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^5.13 ^5.71 ^3.29 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^6.85 ^4.56 ^-1.43 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-2.78 ^1.87 ^7.65 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^1.45 ^4.68 ^6.76 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-6.85 ^-4.56 ^1.43 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-5.95 ^-1.66 ^5.61 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-1.89 ^0.28 ^-8.13 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^3.24 ^5.98 ^-4.84 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^0.46 ^7.85 ^2.81 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-6.39 ^3.29 ^4.24 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-7.84 ^-1.39 ^-2.52 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-1.6 ^5.13 ^-6.39 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-5.84 ^2.31 ^-5.5 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-0.71 ^8.02 ^-2.21 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-4.39 ^6.99 ^1.25 0.195 0.195 0.195 0.0 3 force @a[distance=..64] +particle flash ^-7.56 ^3.46 ^-0.78 0.195 0.195 0.195 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_038.mcfunction new file mode 100644 index 000000000..5d2f92ea8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_038.mcfunction @@ -0,0 +1,48 @@ +# frame 38 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:11.23d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.966 0.2 +# Explosion--02_Particle1 +particle flash ^2.28 ^7.5 ^-3.75 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^7.73 ^0.16 ^-3.97 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^0.18 ^-8.69 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-6.38 ^4.59 ^-3.72 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-2.43 ^7.29 ^4.07 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^6.29 ^4.55 ^3.92 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^2.43 ^-7.29 ^-4.07 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-6.29 ^-4.55 ^-3.92 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-7.73 ^-0.16 ^3.97 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^-0.18 ^8.69 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^6.38 ^-4.59 ^3.72 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-2.28 ^-7.5 ^3.75 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^1.29 ^4.52 ^-7.32 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^5.89 ^4.5 ^-4.54 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^4.49 ^0.2 ^-7.44 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^8.24 ^2.77 ^-0.03 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^5.04 ^7.08 ^0.09 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-2.41 ^7.1 ^-4.39 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-3.81 ^2.8 ^-7.29 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-0.09 ^8.69 ^0.19 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-5.18 ^6.98 ^0.21 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^2.26 ^6.96 ^4.69 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^8.29 ^-2.6 ^-0.15 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^7.44 ^-0.02 ^4.49 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^1.37 ^-4.17 ^-7.5 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^5.97 ^-4.19 ^-4.73 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-7.44 ^0.02 ^-4.49 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-3.75 ^-2.57 ^-7.41 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-5.97 ^4.19 ^4.73 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-8.29 ^2.6 ^0.15 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^3.75 ^2.57 ^7.41 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-1.37 ^4.17 ^7.5 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^5.18 ^-6.98 ^-0.21 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-2.26 ^-6.96 ^-4.69 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-8.24 ^-2.77 ^0.03 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-4.49 ^-0.2 ^7.44 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^3.81 ^-2.8 ^7.29 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^0.09 ^-8.69 ^-0.19 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^2.41 ^-7.1 ^4.39 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-5.04 ^-7.08 ^-0.09 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-5.89 ^-4.5 ^4.54 0.2 0.2 0.2 0.0 3 force @a[distance=..64] +particle flash ^-1.29 ^-4.52 ^7.32 0.2 0.2 0.2 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_039.mcfunction new file mode 100644 index 000000000..03269ba49 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_039.mcfunction @@ -0,0 +1,48 @@ +# frame 39 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:11.62d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.979 0.2 +# Explosion--02_Particle1 +particle flash ^2.53 ^-2.32 ^8.36 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^7.53 ^-4.96 ^0.71 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^7.29 ^4.18 ^3.32 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-1.45 ^6.11 ^6.51 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-6.63 ^-1.84 ^5.87 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-1.08 ^-8.68 ^2.29 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^6.63 ^1.84 ^-5.87 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^1.08 ^8.68 ^-2.29 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-7.53 ^4.96 ^-0.71 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-7.29 ^-4.18 ^-3.32 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^1.45 ^-6.11 ^-6.51 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-2.53 ^2.32 ^-8.36 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^5.78 ^1.09 ^6.87 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^5.91 ^-4.28 ^5.33 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^8.71 ^-0.46 ^2.37 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^3.79 ^-8.01 ^1.76 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^0.86 ^-6.47 ^6.26 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^0.64 ^2.22 ^8.74 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^3.43 ^6.05 ^5.78 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-2.41 ^-2.45 ^8.36 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-4.75 ^2.51 ^7.27 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-4.53 ^-6.18 ^4.79 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^5.28 ^-6.5 ^-3.4 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^0.22 ^-8.69 ^-2.48 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^8.18 ^3.54 ^-1.5 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^8.32 ^-1.83 ^-3.03 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-0.22 ^8.69 ^2.48 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^4.92 ^7.56 ^0.61 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-8.32 ^1.83 ^3.03 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-5.28 ^6.5 ^3.4 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-4.92 ^-7.56 ^-0.61 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-8.18 ^-3.54 ^1.5 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^4.75 ^-2.51 ^-7.27 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^4.53 ^6.18 ^-4.79 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-3.79 ^8.01 ^-1.76 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-8.71 ^0.46 ^-2.37 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-3.43 ^-6.05 ^-5.78 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^2.41 ^2.45 ^-8.36 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-0.64 ^-2.22 ^-8.74 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-0.86 ^6.47 ^-6.26 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-5.91 ^4.28 ^-5.33 0.205 0.205 0.205 0.0 3 force @a[distance=..64] +particle flash ^-5.78 ^-1.09 ^-6.87 0.205 0.205 0.205 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_040.mcfunction new file mode 100644 index 000000000..40621f6c9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_040.mcfunction @@ -0,0 +1,48 @@ +# frame 40 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:12.01d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 0.992 0.2 +# Explosion--02_Particle1 +particle flash ^7.28 ^-5.93 ^-0.08 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^8.07 ^3.22 ^3.55 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^2.64 ^-3.52 ^8.29 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-1.94 ^-9.06 ^1.53 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^0.66 ^-5.74 ^-7.4 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^6.85 ^1.85 ^-6.15 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-0.66 ^5.74 ^7.4 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-6.85 ^-1.85 ^6.15 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-8.07 ^-3.22 ^-3.55 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-2.64 ^3.52 ^-8.29 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^1.94 ^9.06 ^-1.53 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-7.28 ^5.93 ^0.08 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^5.83 ^-5.55 ^4.83 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^9.02 ^-1.59 ^2.04 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^6.3 ^-0.18 ^6.96 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^8.77 ^2.98 ^-1.53 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^8.3 ^-2.4 ^-3.66 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^3.14 ^-8.81 ^0.85 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^0.41 ^-7.39 ^5.77 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^4.66 ^-6.86 ^-4.4 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-0.76 ^-8.7 ^-3.45 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^4.41 ^-2.29 ^-7.96 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^5.89 ^7.21 ^1.19 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^5.17 ^6.41 ^-4.51 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^1.17 ^1.3 ^9.22 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^4.36 ^5.26 ^6.43 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-5.17 ^-6.41 ^4.51 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-2.47 ^-3.15 ^8.49 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-4.36 ^-5.26 ^-6.43 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-5.89 ^-7.21 ^-1.19 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^2.47 ^3.15 ^-8.49 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-1.17 ^-1.3 ^-9.22 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^0.76 ^8.7 ^3.45 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-4.41 ^2.29 ^7.96 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-8.77 ^-2.98 ^1.53 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-6.3 ^0.18 ^-6.96 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-0.41 ^7.39 ^-5.77 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-4.66 ^6.86 ^4.4 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-3.14 ^8.81 ^-0.85 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-8.3 ^2.4 ^3.66 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-9.02 ^1.59 ^-2.04 0.21 0.21 0.21 0.0 3 force @a[distance=..64] +particle flash ^-5.83 ^5.55 ^-4.83 0.21 0.21 0.21 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_041.mcfunction new file mode 100644 index 000000000..4b3a5af1d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_041.mcfunction @@ -0,0 +1,48 @@ +# frame 41 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:12.4d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.004 0.2 +# Explosion--02_Particle1 +particle flash ^0.36 ^-9.64 ^-1.36 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^7.05 ^-4.8 ^4.7 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-2.77 ^-5.56 ^7.5 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-8.54 ^-4.6 ^-0.91 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-2.28 ^-3.24 ^-8.9 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^7.35 ^-3.36 ^-5.43 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^2.28 ^3.24 ^8.9 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-7.35 ^3.36 ^5.43 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-7.05 ^4.8 ^-4.7 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^2.77 ^5.56 ^-7.5 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^8.54 ^4.6 ^0.91 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-0.36 ^9.64 ^1.36 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-1.41 ^-8.93 ^3.61 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^4.36 ^-8.48 ^1.97 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^2.52 ^-6.09 ^7.17 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^8.47 ^-4.79 ^-0.43 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^4.54 ^-7.64 ^-3.99 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-4.8 ^-8.37 ^-1.33 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-6.65 ^-5.97 ^3.87 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-1.13 ^-7.57 ^-6.03 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-6.36 ^-4.6 ^-5.76 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^2.98 ^-3.88 ^-8.42 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^9.16 ^-0.12 ^3.3 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^9.34 ^0.73 ^-2.66 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-0.29 ^-1.37 ^9.64 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^5.48 ^-0.92 ^7.99 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-9.34 ^-0.73 ^2.66 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-5.95 ^-1.29 ^7.6 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-5.48 ^0.92 ^-7.99 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-9.16 ^0.12 ^-3.3 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^5.95 ^1.29 ^-7.6 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^0.29 ^1.37 ^-9.64 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^6.36 ^4.6 ^5.76 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-2.98 ^3.88 ^8.42 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-8.47 ^4.79 ^0.43 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-2.52 ^6.09 ^-7.17 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^6.65 ^5.97 ^-3.87 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^1.13 ^7.57 ^6.03 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^4.8 ^8.37 ^1.33 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-4.54 ^7.64 ^3.99 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^-4.36 ^8.48 ^-1.97 0.215 0.215 0.215 0.0 3 force @a[distance=..64] +particle flash ^1.41 ^8.93 ^-3.61 0.215 0.215 0.215 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_042.mcfunction new file mode 100644 index 000000000..c180d9044 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_042.mcfunction @@ -0,0 +1,48 @@ +# frame 42 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:12.79d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.017 0.2 +# Explosion--02_Particle1 +particle flash ^-0.12 ^-8.74 ^5.04 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-7.56 ^-6.33 ^-2.13 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^-8.27 ^-5.26 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^8.96 ^-4.18 ^1.99 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^3.08 ^0.28 ^9.6 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-7.13 ^-1.04 ^7.06 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-3.08 ^-0.28 ^-9.6 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^7.13 ^1.04 ^-7.06 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^7.56 ^6.33 ^2.13 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^8.27 ^5.26 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-8.96 ^4.18 ^-1.99 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^0.12 ^8.74 ^-5.04 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^1.33 ^-10.0 ^-0.13 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-4.52 ^-8.86 ^1.71 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-3.04 ^-8.58 ^-4.34 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-8.64 ^-4.33 ^2.89 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-4.26 ^-5.75 ^7.11 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^5.2 ^-7.6 ^4.13 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^6.67 ^-7.32 ^-1.92 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^1.74 ^-4.97 ^8.6 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^7.08 ^-2.29 ^6.82 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^-0.45 ^9.79 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-9.71 ^-1.26 ^-2.42 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-9.46 ^1.85 ^2.98 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-0.41 ^-5.03 ^-8.74 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-6.25 ^-3.89 ^-6.9 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^9.46 ^-1.85 ^-2.98 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^5.6 ^-4.25 ^-7.24 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^6.25 ^3.89 ^6.9 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^9.71 ^1.26 ^2.42 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-5.6 ^4.25 ^7.24 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^0.41 ^5.03 ^8.74 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-7.08 ^2.29 ^-6.82 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^0.45 ^-9.79 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^8.64 ^4.33 ^-2.89 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^3.04 ^8.58 ^4.34 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-6.67 ^7.32 ^1.92 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-1.74 ^4.97 ^-8.6 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-5.2 ^7.6 ^-4.13 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^4.26 ^5.75 ^-7.11 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^4.52 ^8.86 ^-1.71 0.22 0.22 0.22 0.0 3 force @a[distance=..64] +particle flash ^-1.33 ^10.0 ^0.13 0.22 0.22 0.22 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_043.mcfunction new file mode 100644 index 000000000..bcd5dbbb6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_043.mcfunction @@ -0,0 +1,48 @@ +# frame 43 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:13.19d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.029 0.2 +# Explosion--02_Particle1 +particle flash ^-4.17 ^-8.84 ^3.67 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-1.95 ^-0.34 ^10.25 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-10.03 ^0.4 ^2.86 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-6.83 ^-4.87 ^-6.22 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^3.24 ^-8.88 ^-4.43 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^6.25 ^-6.08 ^5.74 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-3.24 ^8.88 ^4.43 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-6.25 ^6.08 ^-5.74 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^1.95 ^0.34 ^-10.25 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^10.03 ^-0.4 ^-2.86 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^6.83 ^4.87 ^6.22 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^4.17 ^8.84 ^-3.67 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-8.35 ^-4.96 ^3.84 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-3.6 ^-5.4 ^8.18 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-7.04 ^0.04 ^7.71 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^2.53 ^-3.77 ^9.4 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^1.22 ^-8.77 ^5.53 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-6.46 ^-8.06 ^-1.5 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-9.91 ^-2.63 ^-1.97 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-0.55 ^-10.42 ^-0.45 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-2.11 ^-8.09 ^-6.26 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^5.58 ^-8.79 ^0.77 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^2.87 ^2.67 ^9.68 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^7.69 ^-0.71 ^7.03 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-7.8 ^5.46 ^4.29 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-3.05 ^5.02 ^8.63 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-7.69 ^0.71 ^-7.03 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-9.57 ^3.81 ^-1.69 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^3.05 ^-5.02 ^-8.63 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-2.87 ^-2.67 ^-9.68 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^9.57 ^-3.81 ^1.69 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^7.8 ^-5.46 ^-4.29 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^2.11 ^8.09 ^6.26 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-5.58 ^8.79 ^-0.77 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-2.53 ^3.77 ^-9.4 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^7.04 ^-0.04 ^-7.71 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^9.91 ^2.63 ^1.97 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^0.55 ^10.42 ^0.45 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^6.46 ^8.06 ^1.5 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^-1.22 ^8.77 ^-5.53 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^3.6 ^5.4 ^-8.18 0.225 0.225 0.225 0.0 3 force @a[distance=..64] +particle flash ^8.35 ^4.96 ^-3.84 0.225 0.225 0.225 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_044.mcfunction new file mode 100644 index 000000000..558ac459b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_044.mcfunction @@ -0,0 +1,48 @@ +# frame 44 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:13.58d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.042 0.2 +# Explosion--02_Particle1 +particle flash ^-5.06 ^-8.66 ^3.99 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-6.07 ^-5.66 ^-6.9 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^3.82 ^-9.64 ^-3.01 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^5.3 ^-5.65 ^7.51 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-3.67 ^0.8 ^10.12 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-10.7 ^0.79 ^1.21 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^3.67 ^-0.8 ^-10.12 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^10.7 ^-0.79 ^-1.21 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^6.07 ^5.66 ^6.9 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-3.82 ^9.64 ^3.01 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-5.3 ^5.65 ^-7.51 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^5.06 ^8.66 ^-3.99 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-0.73 ^-10.75 ^0.58 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-6.54 ^-8.41 ^-1.71 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-1.32 ^-8.99 ^-5.83 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-9.85 ^-2.86 ^-3.35 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-9.26 ^-4.62 ^3.06 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^0.14 ^-8.41 ^6.76 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^5.36 ^-8.99 ^2.65 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-5.13 ^-4.62 ^8.3 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^0.96 ^-2.85 ^10.36 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-8.44 ^0.93 ^6.66 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-6.68 ^-0.0 ^-8.48 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-9.4 ^3.79 ^-3.71 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^4.4 ^-6.13 ^-7.72 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-1.41 ^-3.79 ^-10.01 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^9.4 ^-3.79 ^3.71 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^8.53 ^-6.13 ^-2.48 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^1.41 ^3.79 ^10.01 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^6.68 ^0.0 ^8.48 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-8.53 ^6.13 ^2.48 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-4.4 ^6.13 ^7.72 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-0.96 ^2.85 ^-10.36 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^8.44 ^-0.93 ^-6.66 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^9.85 ^2.86 ^3.35 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^1.32 ^8.99 ^5.83 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-5.36 ^8.99 ^-2.65 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^5.13 ^4.62 ^-8.3 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^-0.14 ^8.41 ^-6.76 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^9.26 ^4.62 ^-3.06 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^6.54 ^8.41 ^1.71 0.23 0.23 0.23 0.0 3 force @a[distance=..64] +particle flash ^0.73 ^10.75 ^-0.58 0.23 0.23 0.23 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_045.mcfunction new file mode 100644 index 000000000..b367e1f3a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_045.mcfunction @@ -0,0 +1,48 @@ +# frame 45 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:13.98d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.055 0.2 +# Explosion--02_Particle1 +particle flash ^7.74 ^8.0 ^-0.61 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^10.62 ^-3.28 ^0.8 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^6.05 ^0.38 ^-9.36 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-2.1 ^8.45 ^-6.96 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-2.56 ^9.79 ^4.68 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^5.3 ^2.54 ^9.47 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^2.56 ^-9.79 ^-4.68 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-5.3 ^-2.54 ^-9.47 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-10.62 ^3.28 ^-0.8 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-6.05 ^-0.38 ^9.36 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^2.1 ^-8.45 ^6.96 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-7.74 ^-8.0 ^0.61 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^8.11 ^4.92 ^-5.86 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^10.8 ^2.77 ^0.11 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^9.8 ^-1.7 ^-5.03 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^9.36 ^-0.44 ^6.03 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^7.67 ^6.19 ^5.21 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^3.32 ^9.67 ^-4.45 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^2.32 ^5.19 ^-9.59 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^3.05 ^10.45 ^2.39 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-2.74 ^10.72 ^-1.34 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^1.61 ^7.24 ^8.32 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^7.48 ^-6.9 ^4.56 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^4.35 ^-3.48 ^9.65 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^5.06 ^-5.53 ^-8.25 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^7.75 ^-7.68 ^-2.28 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-4.35 ^3.48 ^-9.65 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^0.44 ^-1.27 ^-11.07 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-7.75 ^7.68 ^2.28 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-7.48 ^6.9 ^-4.56 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-0.44 ^1.27 ^11.07 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-5.06 ^5.53 ^8.25 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^2.74 ^-10.72 ^1.34 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-1.61 ^-7.24 ^-8.32 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-9.36 ^0.44 ^-6.03 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-9.8 ^1.7 ^5.03 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-2.32 ^-5.19 ^9.59 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-3.05 ^-10.45 ^-2.39 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-3.32 ^-9.67 ^4.45 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-7.67 ^-6.19 ^-5.21 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-10.8 ^-2.77 ^-0.11 0.234 0.234 0.234 0.0 3 force @a[distance=..64] +particle flash ^-8.11 ^-4.92 ^5.86 0.234 0.234 0.234 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_046.mcfunction new file mode 100644 index 000000000..68d2f7dbc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_046.mcfunction @@ -0,0 +1,48 @@ +# frame 46 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:14.37d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.067 0.2 +# Explosion--02_Particle1 +particle flash ^7.67 ^-7.91 ^-3.32 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-3.93 ^-10.72 ^-1.36 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-0.89 ^-3.81 ^-10.81 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^8.12 ^3.48 ^-7.37 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^10.65 ^1.08 ^4.21 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^3.2 ^-7.7 ^7.92 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-10.65 ^-1.08 ^-4.21 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-3.2 ^7.7 ^-7.92 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^3.93 ^10.72 ^1.36 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^0.89 ^3.81 ^10.81 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-8.12 ^-3.48 ^7.37 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-7.67 ^7.91 ^3.32 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^3.98 ^-6.89 ^-8.3 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^2.2 ^-10.95 ^-2.75 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-2.84 ^-8.54 ^-7.16 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-0.43 ^-10.83 ^3.85 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^6.39 ^-9.17 ^2.71 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^9.28 ^-2.6 ^-6.28 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^4.25 ^-0.2 ^-10.69 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^10.76 ^-4.01 ^0.53 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^11.03 ^2.68 ^-1.86 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^8.14 ^-3.89 ^7.13 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-7.08 ^-8.35 ^3.53 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-2.89 ^-6.57 ^8.99 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-6.78 ^-2.87 ^-8.83 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-8.57 ^-6.94 ^-3.28 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^2.89 ^6.57 ^-8.99 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-2.41 ^2.28 ^-11.01 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^8.57 ^6.94 ^3.28 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^7.08 ^8.35 ^-3.53 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^2.41 ^-2.28 ^11.01 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^6.78 ^2.87 ^8.83 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-11.03 ^-2.68 ^1.86 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-8.14 ^3.89 ^-7.13 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^0.43 ^10.83 ^-3.85 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^2.84 ^8.54 ^7.16 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-4.25 ^0.2 ^10.69 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-10.76 ^4.01 ^-0.53 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-9.28 ^2.6 ^6.28 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-6.39 ^9.17 ^-2.71 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-2.2 ^10.95 ^2.75 0.239 0.239 0.239 0.0 3 force @a[distance=..64] +particle flash ^-3.98 ^6.89 ^8.3 0.239 0.239 0.239 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_047.mcfunction new file mode 100644 index 000000000..1f710dd41 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_047.mcfunction @@ -0,0 +1,48 @@ +# frame 47 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:14.77d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.08 0.2 +# Explosion--02_Particle1 +particle flash ^-6.12 ^10.15 ^-0.05 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^3.55 ^8.36 ^7.62 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^5.44 ^9.45 ^-4.66 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-3.97 ^3.75 ^-10.52 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-11.67 ^-0.86 ^-1.88 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-7.03 ^1.99 ^9.34 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^11.67 ^0.86 ^1.88 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^7.03 ^-1.99 ^-9.34 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-3.55 ^-8.36 ^-7.62 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-5.44 ^-9.45 ^4.66 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^3.97 ^-3.75 ^10.52 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^6.12 ^-10.15 ^0.05 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-0.4 ^11.52 ^-2.76 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-1.51 ^10.88 ^4.45 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^5.28 ^10.47 ^1.74 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-2.05 ^6.09 ^9.96 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-7.73 ^7.14 ^5.46 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-5.93 ^8.17 ^-6.21 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^0.86 ^7.76 ^-8.92 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-10.46 ^5.46 ^-1.13 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-9.19 ^1.7 ^-7.29 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-10.99 ^0.67 ^4.39 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^4.42 ^2.71 ^10.66 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-1.8 ^-1.03 ^11.67 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^10.06 ^6.06 ^-1.63 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^8.95 ^5.42 ^5.58 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^1.8 ^1.03 ^-11.67 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^7.33 ^4.38 ^-8.22 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-8.95 ^-5.42 ^-5.58 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-4.42 ^-2.71 ^-10.66 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-7.33 ^-4.38 ^8.22 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-10.06 ^-6.06 ^1.63 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^9.19 ^-1.7 ^7.29 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^10.99 ^-0.67 ^-4.39 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^2.05 ^-6.09 ^-9.96 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-5.28 ^-10.47 ^-1.74 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^-0.86 ^-7.76 ^8.92 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^10.46 ^-5.46 ^1.13 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^5.93 ^-8.17 ^6.21 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^7.73 ^-7.14 ^-5.46 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^1.51 ^-10.88 ^-4.45 0.244 0.244 0.244 0.0 3 force @a[distance=..64] +particle flash ^0.4 ^-11.52 ^2.76 0.244 0.244 0.244 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_048.mcfunction new file mode 100644 index 000000000..61543ac39 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_048.mcfunction @@ -0,0 +1,48 @@ +# frame 48 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:15.17d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.092 0.2 +# Explosion--02_Particle1 +particle flash ^4.98 ^10.86 ^2.52 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^1.65 ^2.64 ^11.8 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^11.52 ^-0.09 ^4.05 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^8.54 ^4.01 ^-7.74 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-3.16 ^9.28 ^-7.28 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-7.41 ^8.43 ^4.8 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^3.16 ^-9.28 ^7.28 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^7.41 ^-8.43 ^-4.8 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-1.65 ^-2.64 ^-11.8 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-11.52 ^0.09 ^-4.05 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-8.54 ^-4.01 ^7.74 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-4.98 ^-10.86 ^-2.52 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^9.7 ^6.33 ^3.86 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^3.9 ^7.93 ^8.42 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^7.74 ^1.5 ^9.32 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-3.38 ^6.51 ^9.76 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-1.43 ^11.34 ^4.3 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^7.95 ^8.74 ^-3.07 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^11.79 ^2.31 ^-2.17 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^1.07 ^11.84 ^-2.8 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^3.17 ^7.81 ^-8.83 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-6.21 ^10.41 ^-1.46 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-4.05 ^-0.81 ^11.49 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-9.38 ^2.59 ^7.37 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^8.62 ^-5.51 ^6.66 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^2.83 ^-3.9 ^11.22 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^9.38 ^-2.59 ^-7.37 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^11.13 ^-5.01 ^-0.44 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-2.83 ^3.9 ^-11.22 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^4.05 ^0.81 ^-11.49 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-11.13 ^5.01 ^0.44 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-8.62 ^5.51 ^-6.66 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-3.17 ^-7.81 ^8.83 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^6.21 ^-10.41 ^1.46 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^3.38 ^-6.51 ^-9.76 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-7.74 ^-1.5 ^-9.32 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-11.79 ^-2.31 ^2.17 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-1.07 ^-11.84 ^2.8 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-7.95 ^-8.74 ^3.07 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^1.43 ^-11.34 ^-4.3 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-3.9 ^-7.93 ^-8.42 0.249 0.249 0.249 0.0 3 force @a[distance=..64] +particle flash ^-9.7 ^-6.33 ^-3.86 0.249 0.249 0.249 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_049.mcfunction new file mode 100644 index 000000000..3793c38e1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_049.mcfunction @@ -0,0 +1,48 @@ +# frame 49 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:15.56d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.105 0.2 +# Explosion--02_Particle1 +particle flash ^2.92 ^10.5 ^-6.25 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-9.59 ^7.4 ^-3.34 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-1.21 ^10.81 ^6.29 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^10.64 ^5.77 ^3.37 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^9.6 ^-0.75 ^-8.07 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-2.9 ^0.26 ^-12.22 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-9.6 ^0.75 ^8.07 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^2.9 ^-0.26 ^12.22 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^9.59 ^-7.4 ^3.34 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^1.21 ^-10.81 ^-6.29 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-10.64 ^-5.77 ^-3.37 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-2.92 ^-10.5 ^6.25 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^1.0 ^12.52 ^0.03 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-3.92 ^10.52 ^-5.64 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-6.35 ^10.7 ^1.73 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-7.34 ^4.5 ^-9.15 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^6.32 ^-10.86 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^7.97 ^9.56 ^-1.69 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^5.54 ^9.74 ^5.68 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^7.36 ^5.73 ^-8.42 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^11.9 ^2.95 ^-2.77 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^3.93 ^-0.29 ^-11.93 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-11.89 ^0.96 ^-3.94 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-7.96 ^-3.24 ^-9.16 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-6.35 ^6.79 ^8.44 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-11.28 ^4.79 ^2.78 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^7.96 ^3.24 ^9.16 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^0.99 ^6.2 ^10.88 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^11.28 ^-4.79 ^-2.78 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^11.89 ^-0.96 ^3.94 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-0.99 ^-6.2 ^-10.88 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^6.35 ^-6.79 ^-8.44 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-11.9 ^-2.95 ^2.77 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-3.93 ^0.29 ^11.93 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^7.34 ^-4.5 ^9.15 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^6.35 ^-10.7 ^-1.73 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-5.54 ^-9.74 ^-5.68 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-7.36 ^-5.73 ^8.42 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-7.97 ^-9.56 ^1.69 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-6.32 ^10.86 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^3.92 ^-10.52 ^5.64 0.254 0.254 0.254 0.0 3 force @a[distance=..64] +particle flash ^-1.0 ^-12.52 ^-0.03 0.254 0.254 0.254 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_050.mcfunction new file mode 100644 index 000000000..bcde0568b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_050.mcfunction @@ -0,0 +1,48 @@ +# frame 50 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:15.96d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.118 0.2 +# Explosion--02_Particle1 +particle flash ^-7.43 ^-0.68 ^10.55 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-8.61 ^9.49 ^1.62 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-12.41 ^-3.08 ^-1.86 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-3.64 ^-11.81 ^3.74 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^5.56 ^-4.64 ^10.69 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^2.49 ^8.52 ^9.38 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-5.56 ^4.64 ^-10.69 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-2.49 ^-8.52 ^-9.38 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^8.61 ^-9.49 ^-1.62 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^12.41 ^3.08 ^1.86 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^3.64 ^11.81 ^-3.74 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^7.43 ^0.68 ^-10.55 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-11.66 ^-2.21 ^5.11 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-9.43 ^5.18 ^7.15 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-12.36 ^3.77 ^-0.14 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-3.6 ^10.59 ^6.47 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-2.9 ^4.61 ^11.71 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-6.51 ^-7.35 ^8.4 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-9.43 ^-8.75 ^1.11 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-1.1 ^-3.13 ^12.48 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^1.13 ^-9.67 ^8.49 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^4.74 ^2.28 ^11.8 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-2.92 ^12.52 ^-1.25 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^3.61 ^11.95 ^3.31 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-10.56 ^0.92 ^-7.38 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-8.33 ^8.31 ^-5.33 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-3.61 ^-11.95 ^-3.31 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-8.76 ^-6.82 ^-6.61 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^8.33 ^-8.31 ^5.33 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^2.92 ^-12.52 ^1.25 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^8.76 ^6.82 ^6.61 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^10.56 ^-0.92 ^7.38 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-1.13 ^9.67 ^-8.49 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^-4.74 ^-2.28 ^-11.8 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^3.6 ^-10.59 ^-6.47 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^12.36 ^-3.77 ^0.14 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^9.43 ^8.75 ^-1.11 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^1.1 ^3.13 ^-12.48 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^6.51 ^7.35 ^-8.4 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^2.9 ^-4.61 ^-11.71 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^9.43 ^-5.18 ^-7.15 0.259 0.259 0.259 0.0 3 force @a[distance=..64] +particle flash ^11.66 ^2.21 ^-5.11 0.259 0.259 0.259 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_051.mcfunction new file mode 100644 index 000000000..b68b7f804 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_051.mcfunction @@ -0,0 +1,48 @@ +# frame 51 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:16.36d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.13 0.2 +# Explosion--02_Particle1 +particle flash ^-3.99 ^12.11 ^3.68 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^7.73 ^10.16 ^-3.63 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-4.67 ^7.89 ^-9.6 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-13.09 ^2.2 ^-0.03 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-5.88 ^0.96 ^11.86 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^6.99 ^5.88 ^9.63 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^5.88 ^-0.96 ^-11.86 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-6.99 ^-5.88 ^-9.63 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-7.73 ^-10.16 ^3.63 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^4.67 ^-7.89 ^9.6 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^13.09 ^-2.2 ^0.03 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^3.99 ^-12.11 ^-3.68 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-5.09 ^11.75 ^-3.48 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^2.2 ^13.09 ^0.03 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^1.8 ^10.61 ^-7.77 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^8.65 ^9.42 ^3.53 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^1.76 ^10.57 ^7.83 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-10.04 ^8.41 ^2.15 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-10.44 ^5.93 ^-5.66 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-5.8 ^7.68 ^9.13 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-11.15 ^1.86 ^6.95 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^0.65 ^4.02 ^12.63 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^12.24 ^4.68 ^-2.11 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^11.8 ^2.16 ^5.68 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^0.71 ^4.07 ^-12.61 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^8.0 ^5.41 ^-9.1 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-11.8 ^-2.16 ^-5.68 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-6.85 ^1.18 ^-11.3 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-8.0 ^-5.41 ^9.1 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-12.24 ^-4.68 ^2.11 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^6.85 ^-1.18 ^11.3 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-0.71 ^-4.07 ^12.61 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^11.15 ^-1.86 ^-6.95 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-0.65 ^-4.02 ^-12.63 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-8.65 ^-9.42 ^-3.53 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-1.8 ^-10.61 ^7.77 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^10.44 ^-5.93 ^5.66 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^5.8 ^-7.68 ^-9.13 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^10.04 ^-8.41 ^-2.15 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-1.76 ^-10.57 ^-7.83 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^-2.2 ^-13.09 ^-0.03 0.264 0.264 0.264 0.0 3 force @a[distance=..64] +particle flash ^5.09 ^-11.75 ^3.48 0.264 0.264 0.264 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_052.mcfunction new file mode 100644 index 000000000..bf8e3fb6b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_052.mcfunction @@ -0,0 +1,48 @@ +# frame 52 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:16.75d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.143 0.2 +# Explosion--02_Particle1 +particle flash ^-0.0 ^-13.62 ^0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-9.86 ^-6.09 ^-7.16 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^3.77 ^-6.09 ^-11.59 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^12.19 ^-6.09 ^0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^3.77 ^-6.09 ^11.59 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-9.86 ^-6.09 ^7.16 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-3.77 ^6.09 ^-11.59 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^9.86 ^6.09 ^-7.16 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^9.86 ^6.09 ^7.16 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-3.77 ^6.09 ^11.59 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-12.19 ^6.09 ^-0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^0.0 ^13.62 ^0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^2.21 ^-11.59 ^-6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-5.79 ^-11.59 ^-4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-3.58 ^-7.16 ^-11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-11.59 ^-7.16 ^-0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-5.79 ^-11.59 ^4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^7.16 ^-11.59 ^0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^9.38 ^-7.16 ^-6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^2.21 ^-11.59 ^6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^9.38 ^-7.16 ^6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-3.58 ^-7.16 ^11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-12.96 ^0.0 ^-4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-12.96 ^0.0 ^4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^-13.62 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-8.01 ^0.0 ^-11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^12.96 ^-0.0 ^-4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^8.01 ^-0.0 ^-11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^8.01 ^-0.0 ^11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^12.96 ^-0.0 ^4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-8.01 ^0.0 ^11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-0.0 ^0.0 ^13.62 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-9.38 ^7.16 ^-6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^3.58 ^7.16 ^-11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^11.59 ^7.16 ^0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^3.58 ^7.16 ^11.02 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-9.38 ^7.16 ^6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-2.21 ^11.59 ^-6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-7.16 ^11.59 ^-0.0 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^5.79 ^11.59 ^-4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^5.79 ^11.59 ^4.21 0.269 0.269 0.269 0.0 3 force @a[distance=..64] +particle flash ^-2.21 ^11.59 ^6.81 0.269 0.269 0.269 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_053.mcfunction new file mode 100644 index 000000000..4f999d490 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_053.mcfunction @@ -0,0 +1,48 @@ +# frame 53 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:17.15d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.155 0.2 +# Explosion--02_Particle1 +particle flash ^-13.08 ^4.78 ^-1.2 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-2.5 ^12.73 ^5.2 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-2.08 ^10.24 ^-9.28 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-6.87 ^-3.44 ^-11.68 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-10.24 ^-9.42 ^1.32 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-7.55 ^0.58 ^11.75 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^10.24 ^9.42 ^-1.32 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^7.55 ^-0.58 ^-11.75 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^2.5 ^-12.73 ^-5.2 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^2.08 ^-10.24 ^9.28 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^6.87 ^3.44 ^11.68 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^13.08 ^-4.78 ^1.2 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-8.91 ^8.83 ^-6.16 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-9.16 ^10.29 ^2.35 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-2.7 ^13.5 ^-2.4 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-5.91 ^7.82 ^9.96 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-12.12 ^3.15 ^6.2 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-11.72 ^0.79 ^-7.57 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-5.26 ^4.0 ^-12.32 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-13.71 ^-2.72 ^0.07 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-10.06 ^-7.56 ^-6.09 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-10.46 ^-5.19 ^7.68 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^2.57 ^9.51 ^9.92 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-0.4 ^2.36 ^13.77 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^4.8 ^11.56 ^-6.23 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^4.55 ^13.02 ^2.28 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^0.4 ^-2.36 ^-13.77 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^3.21 ^5.68 ^-12.36 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-4.55 ^-13.02 ^-2.28 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-2.57 ^-9.51 ^-9.92 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-3.21 ^-5.68 ^12.36 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^-4.8 ^-11.56 ^6.23 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^10.06 ^7.56 ^6.09 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^10.46 ^5.19 ^-7.68 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^5.91 ^-7.82 ^-9.96 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^2.7 ^-13.5 ^2.4 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^5.26 ^-4.0 ^12.32 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^13.71 ^2.72 ^-0.07 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^11.72 ^-0.79 ^7.57 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^12.12 ^-3.15 ^-6.2 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^9.16 ^-10.29 ^-2.35 0.273 0.273 0.273 0.0 3 force @a[distance=..64] +particle flash ^8.91 ^-8.83 ^6.16 0.273 0.273 0.273 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_054.mcfunction new file mode 100644 index 000000000..b6b3b6e61 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_054.mcfunction @@ -0,0 +1,48 @@ +# frame 54 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:17.54d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.168 0.2 +# Explosion--02_Particle1 +particle flash ^-3.2 ^7.56 ^-11.74 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-9.37 ^10.72 ^1.64 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^5.29 ^13.3 ^-0.7 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^10.66 ^2.17 ^-9.33 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-0.69 ^-7.28 ^-12.32 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-13.06 ^-2.0 ^-5.54 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^0.69 ^7.28 ^12.32 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^13.06 ^2.0 ^5.54 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^9.37 ^-10.72 ^-1.64 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-5.29 ^-13.3 ^0.7 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-10.66 ^-2.17 ^9.33 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^3.2 ^-7.56 ^11.74 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^1.23 ^12.26 ^-7.32 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-7.39 ^10.74 ^-5.94 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^14.12 ^0.55 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-13.18 ^5.13 ^-2.3 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-9.56 ^3.27 ^-10.16 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^4.38 ^5.72 ^-12.39 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^9.38 ^9.09 ^-5.9 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-2.29 ^0.16 ^-14.14 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^5.86 ^-3.0 ^-12.73 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-8.08 ^-5.46 ^-10.5 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-11.77 ^5.03 ^6.44 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-13.94 ^-2.45 ^2.22 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^3.51 ^12.1 ^6.83 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-5.1 ^10.58 ^8.2 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^13.94 ^2.45 ^-2.22 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^10.79 ^8.99 ^2.85 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^5.1 ^-10.58 ^-8.2 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^11.77 ^-5.03 ^-6.44 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-10.79 ^-8.99 ^-2.85 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-3.51 ^-12.1 ^-6.83 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-5.86 ^3.0 ^12.73 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^8.08 ^5.46 ^10.5 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^13.18 ^-5.13 ^2.3 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^-14.12 ^-0.55 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-9.38 ^-9.09 ^5.9 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^2.29 ^-0.16 ^14.14 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-4.38 ^-5.72 ^12.39 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^9.56 ^-3.27 ^10.16 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^7.39 ^-10.74 ^5.94 0.278 0.278 0.278 0.0 3 force @a[distance=..64] +particle flash ^-1.23 ^-12.26 ^7.32 0.278 0.278 0.278 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_055.mcfunction new file mode 100644 index 000000000..408cc77a2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_055.mcfunction @@ -0,0 +1,48 @@ +# frame 55 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:17.93d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.181 0.2 +# Explosion--02_Particle1 +particle flash ^4.85 ^-12.69 ^-5.56 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^13.83 ^-0.15 ^-4.91 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^9.75 ^-7.41 ^8.09 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-4.81 ^-12.27 ^6.47 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-9.73 ^-8.02 ^-7.53 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^1.79 ^-0.53 ^-14.56 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^9.73 ^8.02 ^7.53 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-1.79 ^0.53 ^14.56 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-13.83 ^0.15 ^4.91 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-9.75 ^7.41 ^-8.09 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^4.81 ^12.27 ^-6.47 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-4.85 ^12.69 ^5.56 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^8.59 ^-11.81 ^1.49 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^10.98 ^-7.55 ^-6.15 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^13.86 ^-4.45 ^1.87 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^9.19 ^-0.4 ^-11.44 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^3.91 ^-7.77 ^-11.83 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^0.03 ^-14.67 ^0.54 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^2.91 ^-11.57 ^8.56 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-2.86 ^-12.17 ^-7.69 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-8.54 ^-11.92 ^-0.62 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-4.66 ^-5.02 ^-12.98 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^10.96 ^7.12 ^-6.69 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^3.88 ^6.9 ^-12.36 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^11.45 ^0.36 ^9.18 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^13.85 ^4.62 ^1.54 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-3.88 ^-6.9 ^12.36 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^4.68 ^-4.04 ^13.31 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-13.85 ^-4.62 ^-1.54 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-10.96 ^-7.12 ^6.69 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-4.68 ^4.04 ^-13.31 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-11.45 ^-0.36 ^-9.18 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^8.54 ^11.92 ^0.62 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^4.66 ^5.02 ^12.98 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-9.19 ^0.4 ^11.44 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-13.86 ^4.45 ^-1.87 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-2.91 ^11.57 ^-8.56 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^2.86 ^12.17 ^7.69 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-0.03 ^14.67 ^-0.54 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-3.91 ^7.77 ^11.83 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-10.98 ^7.55 ^6.15 0.283 0.283 0.283 0.0 3 force @a[distance=..64] +particle flash ^-8.59 ^11.81 ^-1.49 0.283 0.283 0.283 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_056.mcfunction new file mode 100644 index 000000000..9322547c4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_056.mcfunction @@ -0,0 +1,48 @@ +# frame 56 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:18.32d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.193 0.2 +# Explosion--02_Particle1 +particle flash ^6.12 ^-12.92 ^4.62 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-9.11 ^-9.58 ^7.15 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-3.97 ^-12.39 ^-7.53 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^10.45 ^-6.07 ^-8.94 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^14.21 ^0.65 ^4.86 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^2.12 ^-1.52 ^14.8 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-14.21 ^-0.65 ^-4.86 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-2.12 ^1.52 ^-14.8 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^9.11 ^9.58 ^-7.15 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^3.97 ^12.39 ^7.53 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-10.45 ^6.07 ^8.94 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-6.12 ^12.92 ^-4.62 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^1.27 ^-14.88 ^-1.71 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-1.76 ^-13.23 ^6.92 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-7.69 ^-12.91 ^-0.22 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-4.11 ^-6.52 ^12.9 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^4.84 ^-8.49 ^11.42 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^9.74 ^-11.16 ^-2.54 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^3.81 ^-10.85 ^-9.68 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^11.95 ^-7.21 ^5.57 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^14.49 ^-3.18 ^-2.4 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^9.6 ^-0.51 ^11.56 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-11.5 ^-2.06 ^9.46 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-4.9 ^2.67 ^13.96 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-10.68 ^-7.67 ^-7.28 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-13.71 ^-6.01 ^1.34 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^4.9 ^-2.67 ^-13.96 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-3.58 ^-6.39 ^-13.12 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^13.71 ^6.01 ^-1.34 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^11.5 ^2.06 ^-9.46 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^3.58 ^6.39 ^13.12 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^10.68 ^7.67 ^7.28 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-14.49 ^3.18 ^2.4 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-9.6 ^0.51 ^-11.56 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^4.11 ^6.52 ^-12.9 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^7.69 ^12.91 ^0.22 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-3.81 ^10.85 ^9.68 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-11.95 ^7.21 ^-5.57 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-9.74 ^11.16 ^2.54 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-4.84 ^8.49 ^-11.42 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^1.76 ^13.23 ^-6.92 0.288 0.288 0.288 0.0 3 force @a[distance=..64] +particle flash ^-1.27 ^14.88 ^1.71 0.288 0.288 0.288 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_057.mcfunction new file mode 100644 index 000000000..7d0c4ed64 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_057.mcfunction @@ -0,0 +1,48 @@ +# frame 57 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:18.71d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.206 0.2 +# Explosion--02_Particle1 +particle flash ^10.52 ^-10.91 ^-2.61 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-5.3 ^-14.23 ^-2.43 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^0.96 ^-5.33 ^-14.39 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^12.4 ^4.19 ^-8.07 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^13.2 ^1.18 ^7.79 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^2.27 ^-10.2 ^11.28 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-13.2 ^-1.18 ^-7.79 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-2.27 ^10.2 ^-11.28 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^5.3 ^14.23 ^2.43 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-0.96 ^5.33 ^14.39 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-12.4 ^-4.19 ^8.07 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-10.52 ^10.91 ^2.61 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^6.75 ^-9.54 ^-9.99 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^3.07 ^-14.77 ^-2.96 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-2.55 ^-11.5 ^-9.89 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-1.78 ^-14.36 ^5.2 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^7.52 ^-12.41 ^5.1 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^13.47 ^-3.94 ^-6.28 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^7.85 ^-0.67 ^-13.2 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^13.95 ^-5.72 ^3.05 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^15.05 ^3.16 ^-0.17 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^9.09 ^-5.3 ^11.21 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-10.4 ^-10.83 ^3.32 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-5.95 ^-8.46 ^11.37 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-7.2 ^-3.83 ^-13.04 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-10.88 ^-9.06 ^-6.01 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^5.95 ^8.46 ^-11.37 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-0.77 ^2.87 ^-15.09 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^10.88 ^9.06 ^6.01 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^10.4 ^10.83 ^-3.32 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^0.77 ^-2.87 ^15.09 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^7.2 ^3.83 ^13.04 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-15.05 ^-3.16 ^0.17 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-9.09 ^5.3 ^-11.21 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^1.78 ^14.36 ^-5.2 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^2.55 ^11.5 ^9.89 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-7.85 ^0.67 ^13.2 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-13.95 ^5.72 ^-3.05 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-13.47 ^3.94 ^6.28 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-7.52 ^12.41 ^-5.1 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-3.07 ^14.77 ^2.96 0.293 0.293 0.293 0.0 3 force @a[distance=..64] +particle flash ^-6.75 ^9.54 ^9.99 0.293 0.293 0.293 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_058.mcfunction new file mode 100644 index 000000000..7c06953b7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_058.mcfunction @@ -0,0 +1,48 @@ +# frame 58 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:19.1d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.218 0.2 +# Explosion--02_Particle1 +particle flash ^5.17 ^8.01 ^12.5 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^2.32 ^-8.26 ^13.18 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^14.95 ^-2.45 ^4.23 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^10.12 ^11.7 ^-2.84 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-5.5 ^14.63 ^1.75 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-10.31 ^2.29 ^11.64 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^5.5 ^-14.63 ^-1.75 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^10.31 ^-2.29 ^-11.64 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-2.32 ^8.26 ^-13.18 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-14.95 ^2.45 ^-4.23 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-10.12 ^-11.7 ^2.84 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-5.17 ^-8.01 ^-12.5 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^11.83 ^3.27 ^9.83 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^4.4 ^-0.15 ^15.09 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^10.15 ^-6.3 ^10.23 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-4.7 ^-3.51 ^14.59 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-3.02 ^6.05 ^14.19 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^8.99 ^11.58 ^5.68 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^14.73 ^5.44 ^0.82 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^13.3 ^8.38 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^2.72 ^15.47 ^-0.64 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-9.29 ^9.94 ^7.87 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-4.58 ^-11.73 ^9.41 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-12.01 ^-5.53 ^8.51 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^12.02 ^-10.04 ^1.46 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^4.59 ^-13.45 ^6.72 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^12.01 ^5.53 ^-8.51 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^14.85 ^-2.79 ^-4.36 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-4.59 ^13.45 ^-6.72 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^4.58 ^11.73 ^-9.41 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-14.85 ^2.79 ^4.36 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-12.02 ^10.04 ^-1.46 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-2.72 ^-15.47 ^0.64 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^9.29 ^-9.94 ^-7.87 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^4.7 ^3.51 ^-14.59 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-10.15 ^6.3 ^-10.23 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-14.73 ^-5.44 ^-0.82 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^-13.3 ^-8.38 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-8.99 ^-11.58 ^-5.68 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^3.02 ^-6.05 ^-14.19 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-4.4 ^0.15 ^-15.09 0.298 0.298 0.298 0.0 3 force @a[distance=..64] +particle flash ^-11.83 ^-3.27 ^-9.83 0.298 0.298 0.298 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_059.mcfunction new file mode 100644 index 000000000..9899dbe97 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_059.mcfunction @@ -0,0 +1,48 @@ +# frame 59 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:19.49d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.231 0.2 +# Explosion--02_Particle1 +particle flash ^11.18 ^-8.87 ^7.4 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^12.01 ^8.01 ^7.07 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^0.32 ^16.07 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-5.13 ^-13.29 ^7.43 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^3.78 ^-14.01 ^-6.9 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^14.38 ^-0.85 ^-7.13 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-3.78 ^14.01 ^6.9 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-14.38 ^0.85 ^7.13 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-12.01 ^-8.01 ^-7.07 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^-0.32 ^-16.07 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^5.13 ^13.29 ^-7.43 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-11.18 ^8.87 ^-7.4 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^6.54 ^-5.03 ^13.79 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^13.63 ^-0.51 ^8.5 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^7.03 ^4.89 ^13.6 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^15.51 ^4.21 ^-0.04 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^15.02 ^-5.71 ^0.16 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^3.55 ^-13.02 ^8.72 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-3.04 ^-7.63 ^13.81 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^8.79 ^-13.45 ^0.29 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-0.79 ^-16.05 ^0.31 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^10.67 ^-8.73 ^-8.24 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^10.07 ^12.52 ^-0.22 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^11.47 ^7.31 ^-8.56 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-2.25 ^8.42 ^13.5 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^4.83 ^12.94 ^8.21 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-11.47 ^-7.31 ^8.56 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-8.48 ^0.69 ^13.63 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-4.83 ^-12.94 ^-8.21 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-10.07 ^-12.52 ^0.22 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^8.48 ^-0.69 ^-13.63 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^2.25 ^-8.42 ^-13.5 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^0.79 ^16.05 ^-0.31 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-10.67 ^8.73 ^8.24 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-15.51 ^-4.21 ^0.04 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-7.03 ^-4.89 ^-13.6 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^3.04 ^7.63 ^-13.81 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-8.79 ^13.45 ^-0.29 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-3.55 ^13.02 ^-8.72 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-15.02 ^5.71 ^-0.16 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-13.63 ^0.51 ^-8.5 0.303 0.303 0.303 0.0 3 force @a[distance=..64] +particle flash ^-6.54 ^5.03 ^-13.79 0.303 0.303 0.303 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_060.mcfunction new file mode 100644 index 000000000..ffb3f8973 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_01/fc_060.mcfunction @@ -0,0 +1,48 @@ +# frame 60 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:19.87d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.244 0.2 +# Explosion--02_Particle1 +particle flash ^9.66 ^10.27 ^-8.4 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^16.07 ^-3.34 ^0.06 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^6.36 ^-5.71 ^-14.01 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-6.17 ^6.16 ^-13.91 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-4.2 ^15.87 ^0.22 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^9.55 ^9.99 ^8.85 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^4.2 ^-15.87 ^-0.22 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-9.55 ^-9.99 ^-8.85 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-16.07 ^3.34 ^-0.06 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-6.36 ^5.71 ^14.01 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^6.17 ^-6.16 ^13.91 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-9.66 ^-10.27 ^8.4 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^9.42 ^2.68 ^-13.17 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^15.12 ^4.07 ^-4.91 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^13.18 ^-5.32 ^-8.2 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^15.06 ^3.91 ^5.24 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^11.29 ^11.91 ^0.27 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^2.05 ^9.65 ^-13.11 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^0.11 ^0.26 ^-16.41 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^3.21 ^15.36 ^-4.81 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-6.09 ^12.94 ^-8.04 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^3.14 ^15.2 ^5.33 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^13.07 ^-5.58 ^8.21 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^9.24 ^2.25 ^13.38 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^6.2 ^-12.68 ^-8.37 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^11.91 ^-11.29 ^-0.1 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-9.24 ^-2.25 ^-13.38 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-1.87 ^-9.23 ^-13.44 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-11.91 ^11.29 ^0.1 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-13.07 ^5.58 ^-8.21 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^1.87 ^9.23 ^13.44 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-6.2 ^12.68 ^8.37 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^6.09 ^-12.94 ^8.04 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-3.14 ^-15.2 ^-5.33 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-15.06 ^-3.91 ^-5.24 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-13.18 ^5.32 ^8.2 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-0.11 ^-0.26 ^16.41 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-3.21 ^-15.36 ^4.81 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-2.05 ^-9.65 ^13.11 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-11.29 ^-11.91 ^-0.27 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-15.12 ^-4.07 ^4.91 0.308 0.308 0.308 0.0 3 force @a[distance=..64] +particle flash ^-9.42 ^-2.68 ^13.17 0.308 0.308 0.308 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_001.mcfunction new file mode 100644 index 000000000..0510b9d79 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_001.mcfunction @@ -0,0 +1,48 @@ +# frame 61 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:20.25d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.256 0.2 +# Explosion--02_Particle1 +particle flash ^1.89 ^-9.62 ^13.59 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-13.63 ^-8.12 ^5.39 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-0.31 ^-16.57 ^-2.44 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^14.61 ^-8.07 ^1.49 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^10.51 ^5.64 ^11.77 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-6.94 ^5.61 ^14.18 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-10.51 ^-5.64 ^-11.77 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^6.94 ^-5.61 ^-14.18 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^13.63 ^8.12 ^-5.39 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^0.31 ^16.57 ^2.44 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-14.61 ^8.07 ^-1.49 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-1.89 ^9.62 ^-13.59 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^0.93 ^-15.39 ^6.55 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-6.9 ^-10.42 ^11.16 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-8.19 ^-14.51 ^1.73 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-12.09 ^-1.47 ^11.5 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-2.97 ^-2.35 ^16.32 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^9.7 ^-10.39 ^8.87 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^8.4 ^-14.48 ^-0.56 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^7.29 ^-2.33 ^14.9 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^14.76 ^-1.42 ^7.79 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^2.09 ^6.62 ^15.25 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-16.6 ^-0.03 ^2.29 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-12.67 ^8.04 ^7.45 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-6.36 ^-13.06 ^-8.35 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-14.19 ^-8.09 ^-3.75 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^12.67 ^-8.04 ^-7.45 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^3.9 ^-13.04 ^-9.77 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^14.19 ^8.09 ^3.75 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^16.6 ^0.03 ^-2.29 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-3.9 ^13.04 ^9.77 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^6.36 ^13.06 ^8.35 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-14.76 ^1.42 ^-7.79 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-2.09 ^-6.62 ^-15.25 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^12.09 ^1.47 ^-11.5 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^8.19 ^14.51 ^-1.73 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-8.4 ^14.48 ^0.56 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-7.29 ^2.33 ^-14.9 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-9.7 ^10.39 ^-8.87 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^2.97 ^2.35 ^-16.32 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^6.9 ^10.42 ^-11.16 0.312 0.312 0.312 0.0 3 force @a[distance=..64] +particle flash ^-0.93 ^15.39 ^-6.55 0.312 0.312 0.312 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_002.mcfunction new file mode 100644 index 000000000..b4dec5165 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_002.mcfunction @@ -0,0 +1,48 @@ +# frame 62 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:20.63d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.269 0.2 +# Explosion--02_Particle1 +particle flash ^4.39 ^15.51 ^-5.69 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-6.48 ^4.71 ^-15.1 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-12.18 ^11.99 ^0.31 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^1.66 ^12.28 ^11.77 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^15.92 ^5.19 ^3.45 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^10.89 ^0.51 ^-13.16 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-15.92 ^-5.19 ^-3.45 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-10.89 ^-0.51 ^13.16 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^6.48 ^-4.71 ^15.1 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^12.18 ^-11.99 ^-0.31 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-1.66 ^-12.28 ^-11.77 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-4.39 ^-15.51 ^5.69 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-4.58 ^16.16 ^-3.16 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-1.23 ^11.89 ^-12.22 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-10.97 ^9.82 ^-8.69 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^2.6 ^3.07 ^-16.61 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^8.98 ^9.42 ^-11.08 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^3.55 ^16.33 ^3.57 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-6.19 ^14.26 ^7.1 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^11.94 ^12.16 ^-1.32 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^10.33 ^10.27 ^8.95 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^15.76 ^3.35 ^-5.71 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-4.78 ^-4.45 ^-15.8 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^5.43 ^-6.92 ^-14.66 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-16.52 ^4.0 ^-1.84 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-13.16 ^-0.28 ^-10.9 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-5.43 ^6.92 ^14.66 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-13.56 ^6.75 ^7.92 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^13.16 ^0.28 ^10.9 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^4.78 ^4.45 ^15.8 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^13.56 ^-6.75 ^-7.92 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^16.52 ^-4.0 ^1.84 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-10.33 ^-10.27 ^-8.95 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-15.76 ^-3.35 ^5.71 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-2.6 ^-3.07 ^16.61 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^10.97 ^-9.82 ^8.69 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^6.19 ^-14.26 ^-7.1 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-11.94 ^-12.16 ^1.32 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-3.55 ^-16.33 ^-3.57 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^-8.98 ^-9.42 ^11.08 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^1.23 ^-11.89 ^12.22 0.317 0.317 0.317 0.0 3 force @a[distance=..64] +particle flash ^4.58 ^-16.16 ^3.16 0.317 0.317 0.317 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_003.mcfunction new file mode 100644 index 000000000..64d95306b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_003.mcfunction @@ -0,0 +1,48 @@ +# frame 63 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:21.01d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.282 0.2 +# Explosion--02_Particle1 +particle flash ^-13.61 ^-5.88 ^9.17 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-9.14 ^11.89 ^8.88 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-15.83 ^3.87 ^-6.19 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-9.05 ^-13.13 ^-7.03 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^1.83 ^-15.63 ^7.51 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^1.77 ^-0.16 ^17.34 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-1.83 ^15.63 ^-7.51 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-1.77 ^0.16 ^-17.34 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^9.14 ^-11.89 ^-8.88 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^15.83 ^-3.87 ^6.19 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^9.05 ^13.13 ^7.03 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^13.61 ^5.88 ^-9.17 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-17.3 ^-1.18 ^1.76 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-13.37 ^3.53 ^10.61 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-14.68 ^9.27 ^1.58 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-4.33 ^6.9 ^15.41 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-6.96 ^-3.55 ^15.58 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-13.32 ^-11.18 ^1.26 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-14.62 ^-5.44 ^-7.77 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-6.92 ^-12.64 ^9.8 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-4.25 ^-16.9 ^0.28 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^2.11 ^-9.28 ^14.6 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^14.71 ^9.35 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^6.36 ^7.63 ^14.33 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-10.38 ^11.46 ^-8.05 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-6.45 ^16.17 ^0.81 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-6.36 ^-7.63 ^-14.33 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-10.34 ^2.37 ^-13.83 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^6.45 ^-16.17 ^-0.81 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^-14.71 ^-9.35 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^10.34 ^-2.37 ^13.83 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^10.38 ^-11.46 ^8.05 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^4.25 ^16.9 ^-0.28 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^-2.11 ^9.28 ^-14.6 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^4.33 ^-6.9 ^-15.41 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^14.68 ^-9.27 ^-1.58 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^14.62 ^5.44 ^7.77 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^6.92 ^12.64 ^-9.8 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^13.32 ^11.18 ^-1.26 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^6.96 ^3.55 ^-15.58 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^13.37 ^-3.53 ^-10.61 0.322 0.322 0.322 0.0 3 force @a[distance=..64] +particle flash ^17.3 ^1.18 ^-1.76 0.322 0.322 0.322 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_004.mcfunction new file mode 100644 index 000000000..b69ef7c59 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_004.mcfunction @@ -0,0 +1,48 @@ +# frame 64 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:21.39d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.294 0.2 +# Explosion--02_Particle1 +particle flash ^13.27 ^-10.59 ^5.24 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^13.68 ^-1.73 ^-11.2 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^15.16 ^7.99 ^4.69 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^3.89 ^0.12 ^17.33 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-4.56 ^-14.46 ^9.27 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^1.5 ^-15.6 ^-8.37 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^4.56 ^14.46 ^-9.27 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-1.5 ^15.6 ^8.37 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-13.68 ^1.73 ^11.2 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-15.16 ^-7.99 ^-4.69 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-3.89 ^-0.12 ^-17.33 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-13.27 ^10.59 ^-5.24 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^16.71 ^-1.53 ^5.83 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^15.84 ^-7.24 ^-3.5 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^16.95 ^3.68 ^-3.83 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^8.92 ^-10.19 ^-11.5 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^8.68 ^-15.39 ^-1.84 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^10.09 ^-6.15 ^13.27 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^11.2 ^4.77 ^12.94 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^5.12 ^-14.72 ^8.53 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-0.39 ^-8.42 ^15.64 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-1.8 ^-17.67 ^0.53 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^5.76 ^-1.09 ^-16.77 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-1.41 ^-9.24 ^-15.11 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^11.59 ^13.19 ^-2.69 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^10.72 ^7.48 ^-12.03 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^1.41 ^9.24 ^15.11 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^8.03 ^13.87 ^7.67 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-10.72 ^-7.48 ^12.03 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-5.76 ^1.09 ^16.77 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-8.03 ^-13.87 ^-7.67 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-11.59 ^-13.19 ^2.69 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^0.39 ^8.42 ^-15.64 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^1.8 ^17.67 ^-0.53 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-8.92 ^10.19 ^11.5 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-16.95 ^-3.68 ^3.83 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-11.2 ^-4.77 ^-12.94 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-5.12 ^14.72 ^-8.53 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-10.09 ^6.15 ^-13.27 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-8.68 ^15.39 ^1.84 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-15.84 ^7.24 ^3.5 0.327 0.327 0.327 0.0 3 force @a[distance=..64] +particle flash ^-16.71 ^1.53 ^-5.83 0.327 0.327 0.327 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_005.mcfunction new file mode 100644 index 000000000..239adf4e0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_005.mcfunction @@ -0,0 +1,48 @@ +# frame 65 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:21.76d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.307 0.2 +# Explosion--02_Particle1 +particle flash ^-17.86 ^-0.75 ^-2.85 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-6.02 ^-13.78 ^-10.07 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-9.04 ^-13.04 ^8.7 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-10.6 ^5.26 ^13.69 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-8.55 ^15.83 ^-2.0 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-5.71 ^4.07 ^-16.68 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^8.55 ^-15.83 ^2.0 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^5.71 ^-4.07 ^16.68 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^6.02 ^13.78 ^10.07 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^9.04 ^13.04 ^-8.7 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^10.6 ^-5.26 ^-13.69 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^17.86 ^0.75 ^2.85 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-15.81 ^-8.1 ^3.44 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-14.04 ^-8.54 ^-7.59 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-8.86 ^-15.76 ^-0.81 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-6.9 ^-5.71 ^-15.73 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-13.86 ^1.95 ^-11.48 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-16.73 ^2.65 ^6.38 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-11.55 ^-4.58 ^13.16 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-15.52 ^8.87 ^-2.85 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-11.26 ^12.39 ^6.87 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-8.38 ^11.69 ^-10.98 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^2.69 ^-11.19 ^-13.97 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^2.87 ^-0.7 ^-17.86 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-0.29 ^-16.97 ^6.29 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^1.48 ^-17.4 ^-4.75 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-2.87 ^0.7 ^17.86 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-1.96 ^-10.05 ^14.92 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-1.48 ^17.4 ^4.75 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^-2.69 ^11.19 ^13.97 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^1.96 ^10.05 ^-14.92 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^0.29 ^16.97 ^-6.29 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^11.26 ^-12.39 ^-6.87 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^8.38 ^-11.69 ^10.98 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^6.9 ^5.71 ^15.73 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^8.86 ^15.76 ^0.81 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^11.55 ^4.58 ^-13.16 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^15.52 ^-8.87 ^2.85 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^16.73 ^-2.65 ^-6.38 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^13.86 ^-1.95 ^11.48 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^14.04 ^8.54 ^7.59 0.332 0.332 0.332 0.0 3 force @a[distance=..64] +particle flash ^15.81 ^8.1 ^-3.44 0.332 0.332 0.332 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_006.mcfunction new file mode 100644 index 000000000..e70c574e9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_006.mcfunction @@ -0,0 +1,48 @@ +# frame 66 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:22.13d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.319 0.2 +# Explosion--02_Particle1 +particle flash ^-1.65 ^18.3 ^-1.4 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-16.7 ^7.05 ^3.31 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-2.04 ^9.32 ^15.77 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^14.43 ^10.02 ^5.57 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^9.94 ^8.19 ^-13.19 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-9.3 ^6.35 ^-14.59 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-9.94 ^-8.19 ^13.19 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^9.3 ^-6.35 ^14.59 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^16.7 ^-7.05 ^-3.31 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^2.04 ^-9.32 ^-15.77 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-14.43 ^-10.02 ^-5.57 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^1.65 ^-18.3 ^1.4 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-2.17 ^16.24 ^8.45 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-10.79 ^14.9 ^1.12 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-11.02 ^9.62 ^11.21 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-15.29 ^7.87 ^-6.63 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-6.44 ^14.49 ^-9.4 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^7.51 ^16.65 ^2.45 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^7.28 ^11.37 ^12.54 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^4.87 ^15.57 ^-8.57 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^14.32 ^10.7 ^-4.48 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^0.37 ^8.54 ^-16.33 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-18.3 ^-1.75 ^-1.33 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-13.95 ^-2.16 ^-11.85 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-7.04 ^0.67 ^17.02 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-15.66 ^-0.67 ^9.7 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^13.95 ^2.16 ^11.85 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^4.27 ^1.75 ^17.84 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^15.66 ^0.67 ^-9.7 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^18.3 ^1.75 ^1.33 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-4.27 ^-1.75 ^-17.84 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^7.04 ^-0.67 ^-17.02 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-14.32 ^-10.7 ^4.48 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-0.37 ^-8.54 ^16.33 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^15.29 ^-7.87 ^6.63 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^11.02 ^-9.62 ^-11.21 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-7.28 ^-11.37 ^-12.54 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-4.87 ^-15.57 ^8.57 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^-7.51 ^-16.65 ^-2.45 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^6.44 ^-14.49 ^9.4 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^10.79 ^-14.9 ^-1.12 0.337 0.337 0.337 0.0 3 force @a[distance=..64] +particle flash ^2.17 ^-16.24 ^-8.45 0.337 0.337 0.337 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_007.mcfunction new file mode 100644 index 000000000..b0e072b7e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_007.mcfunction @@ -0,0 +1,48 @@ +# frame 67 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:22.5d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.332 0.2 +# Explosion--02_Particle1 +particle flash ^-14.85 ^4.74 ^10.43 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-6.12 ^-12.85 ^12.21 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^3.26 ^3.45 ^18.15 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-1.04 ^17.92 ^5.45 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-13.08 ^10.55 ^-8.33 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-16.22 ^-8.46 ^-4.15 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^13.08 ^-10.55 ^8.33 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^16.22 ^8.46 ^4.15 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^6.12 ^12.85 ^-12.21 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-3.26 ^-3.45 ^-18.15 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^1.04 ^-17.92 ^-5.45 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^14.85 ^-4.74 ^-10.43 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-6.81 ^4.82 ^16.8 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-12.32 ^-4.77 ^13.31 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-1.68 ^-5.53 ^17.84 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-13.13 ^-12.53 ^4.74 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-18.26 ^-2.19 ^3.69 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-9.34 ^13.32 ^9.34 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^1.3 ^12.56 ^13.87 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-16.41 ^8.99 ^1.24 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-8.3 ^16.74 ^-1.69 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-17.22 ^1.23 ^-7.33 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-2.98 ^-18.09 ^3.97 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-8.92 ^-15.5 ^-5.64 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^9.6 ^-4.18 ^15.56 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^4.09 ^-13.76 ^12.07 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^8.92 ^15.5 ^5.64 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^11.45 ^7.0 ^13.11 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-4.09 ^13.76 ^-12.07 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^2.98 ^18.09 ^-3.97 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-11.45 ^-7.0 ^-13.11 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-9.6 ^4.18 ^-15.56 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^8.3 ^-16.74 ^1.69 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^17.22 ^-1.23 ^7.33 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^13.13 ^12.53 ^-4.74 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^1.68 ^5.53 ^-17.84 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^-1.3 ^-12.56 ^-13.87 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^16.41 ^-8.99 ^-1.24 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^9.34 ^-13.32 ^-9.34 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^18.26 ^2.19 ^-3.69 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^12.32 ^4.77 ^-13.31 0.342 0.342 0.342 0.0 3 force @a[distance=..64] +particle flash ^6.81 ^-4.82 ^-16.8 0.342 0.342 0.342 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_008.mcfunction new file mode 100644 index 000000000..2bd7aa5a9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_008.mcfunction @@ -0,0 +1,48 @@ +# frame 68 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:22.86d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.345 0.2 +# Explosion--02_Particle1 +particle flash ^17.18 ^6.22 ^5.49 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^9.91 ^-11.46 ^11.6 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^15.1 ^-8.84 ^-7.6 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^10.04 ^9.84 ^-12.9 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^1.72 ^18.76 ^3.03 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^1.64 ^5.6 ^18.17 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-1.72 ^-18.76 ^-3.03 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-1.64 ^-5.6 ^-18.17 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-9.91 ^11.46 ^-11.6 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-15.1 ^8.84 ^7.6 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-10.04 ^-9.84 ^12.9 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-17.18 ^-6.22 ^-5.49 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^18.98 ^-1.54 ^-1.24 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^15.93 ^-3.08 ^10.05 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^14.7 ^-11.93 ^2.35 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^6.79 ^-3.45 ^17.5 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^11.07 ^6.94 ^13.91 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^16.0 ^9.44 ^-4.35 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^14.78 ^0.59 ^-12.05 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^11.11 ^14.68 ^5.01 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^6.92 ^16.81 ^-5.81 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^1.98 ^14.32 ^12.46 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-0.08 ^-12.52 ^14.4 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-4.94 ^-2.49 ^18.26 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^7.87 ^-16.22 ^-6.25 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^4.81 ^-17.76 ^5.04 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^4.94 ^2.49 ^-18.26 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^7.91 ^-8.49 ^-15.15 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-4.81 ^17.76 ^-5.04 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^0.08 ^12.52 ^-14.4 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-7.91 ^8.49 ^15.15 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-7.87 ^16.22 ^6.25 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-6.92 ^-16.81 ^5.81 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-1.98 ^-14.32 ^-12.46 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-6.79 ^3.45 ^-17.5 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-14.7 ^11.93 ^-2.35 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-14.78 ^-0.59 ^12.05 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-11.11 ^-14.68 ^-5.01 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-16.0 ^-9.44 ^4.35 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-11.07 ^-6.94 ^-13.91 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-15.93 ^3.08 ^-10.05 0.347 0.347 0.347 0.0 3 force @a[distance=..64] +particle flash ^-18.98 ^1.54 ^1.24 0.347 0.347 0.347 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_009.mcfunction new file mode 100644 index 000000000..b54035d86 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_009.mcfunction @@ -0,0 +1,48 @@ +# frame 69 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:23.22d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.357 0.2 +# Explosion--02_Particle1 +particle flash ^10.16 ^-12.27 ^-11.08 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^19.19 ^-0.41 ^2.85 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^7.13 ^-15.76 ^8.79 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-8.5 ^-16.91 ^-4.27 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-6.11 ^-2.28 ^-18.28 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^11.0 ^7.93 ^-13.88 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^6.11 ^2.28 ^18.28 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-11.0 ^-7.93 ^13.88 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-19.19 ^0.41 ^-2.85 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-7.13 ^15.76 ^-8.79 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^8.5 ^16.91 ^4.27 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-10.16 ^12.27 ^11.08 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^10.17 ^-16.47 ^-1.35 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^17.25 ^-7.45 ^-4.84 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^15.47 ^-9.5 ^6.84 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^17.75 ^4.42 ^-6.48 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^12.44 ^-2.55 ^-14.67 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^0.98 ^-17.15 ^-9.02 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-0.8 ^-19.2 ^2.66 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^2.38 ^-8.55 ^-17.26 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-8.59 ^-11.28 ^-13.25 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^2.88 ^3.32 ^-18.9 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^16.28 ^9.7 ^4.18 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^11.46 ^14.6 ^-5.65 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^7.78 ^-7.93 ^15.91 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^14.87 ^1.1 ^12.42 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-11.46 ^-14.6 ^5.65 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-2.27 ^-13.92 ^13.32 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-14.87 ^-1.1 ^-12.42 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-16.28 ^-9.7 ^-4.18 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^2.27 ^13.92 ^-13.32 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-7.78 ^7.93 ^-15.91 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^8.59 ^11.28 ^13.25 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-2.88 ^-3.32 ^18.9 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-17.75 ^-4.42 ^6.48 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-15.47 ^9.5 ^-6.84 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^0.8 ^19.2 ^-2.66 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-2.38 ^8.55 ^17.26 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-0.98 ^17.15 ^9.02 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-12.44 ^2.55 ^14.67 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-17.25 ^7.45 ^4.84 0.351 0.351 0.351 0.0 3 force @a[distance=..64] +particle flash ^-10.17 ^16.47 ^1.35 0.351 0.351 0.351 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_010.mcfunction new file mode 100644 index 000000000..42e68c77d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_010.mcfunction @@ -0,0 +1,48 @@ +# frame 70 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:23.58d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.37 0.2 +# Explosion--02_Particle1 +particle flash ^-13.2 ^6.48 ^-13.14 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-2.54 ^-11.06 ^-16.13 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-16.91 ^-10.07 ^-1.21 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-16.07 ^8.84 ^7.26 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-1.18 ^19.54 ^-2.42 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^7.18 ^7.24 ^-16.88 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^1.18 ^-19.54 ^2.42 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-7.18 ^-7.24 ^16.88 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^2.54 ^11.06 ^16.13 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^16.91 ^10.07 ^1.21 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^16.07 ^-8.84 ^-7.26 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^13.2 ^-6.48 ^13.14 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-17.7 ^-2.11 ^-8.44 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-9.26 ^-2.69 ^-17.21 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-11.44 ^-12.42 ^-10.19 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^2.73 ^-2.24 ^-19.4 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-3.54 ^8.06 ^-17.65 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-17.2 ^9.0 ^-3.46 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-19.39 ^-0.73 ^3.56 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-8.45 ^15.29 ^-9.15 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-10.14 ^16.68 ^2.84 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^3.53 ^15.74 ^-11.35 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^7.95 ^-11.69 ^-13.75 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^13.67 ^-0.94 ^-14.19 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-9.25 ^-17.4 ^0.71 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-0.8 ^-17.98 ^-8.06 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-13.67 ^0.94 ^14.19 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-14.16 ^-10.18 ^9.21 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^0.8 ^17.98 ^8.06 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-7.95 ^11.69 ^13.75 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^14.16 ^10.18 ^-9.21 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^9.25 ^17.4 ^-0.71 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^10.14 ^-16.68 ^-2.84 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-3.53 ^-15.74 ^11.35 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^-2.73 ^2.24 ^19.4 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^11.44 ^12.42 ^10.19 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^19.39 ^0.73 ^-3.56 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^8.45 ^-15.29 ^9.15 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^17.2 ^-9.0 ^3.46 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^3.54 ^-8.06 ^17.65 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^9.26 ^2.69 ^17.21 0.356 0.356 0.356 0.0 3 force @a[distance=..64] +particle flash ^17.7 ^2.11 ^8.44 0.356 0.356 0.356 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_011.mcfunction new file mode 100644 index 000000000..44e9f6292 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_011.mcfunction @@ -0,0 +1,48 @@ +# frame 71 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:23.93d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.382 0.2 +# Explosion--02_Particle1 +particle flash ^-16.56 ^7.78 ^-8.17 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-0.39 ^19.91 ^-2.22 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^1.66 ^6.96 ^-18.72 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-8.82 ^-10.8 ^-14.39 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-17.35 ^-8.82 ^4.77 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-12.14 ^10.15 ^12.29 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^17.35 ^8.82 ^-4.77 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^12.14 ^-10.15 ^-12.29 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^0.39 ^-19.91 ^2.22 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-1.66 ^-6.96 ^18.72 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^8.82 ^10.8 ^14.39 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^16.56 ^-7.78 ^8.17 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-8.76 ^8.67 ^-15.8 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-9.96 ^16.28 ^-6.11 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^0.75 ^15.79 ^-12.31 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-7.36 ^17.67 ^5.92 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-16.87 ^10.54 ^2.42 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-14.92 ^-1.77 ^-13.26 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-4.21 ^-2.25 ^-19.46 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-19.93 ^-0.61 ^-2.0 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-15.38 ^-11.53 ^-5.66 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-17.33 ^0.78 ^10.03 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^4.95 ^18.05 ^7.15 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-1.95 ^12.31 ^15.69 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^11.17 ^9.28 ^-13.81 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^9.97 ^16.89 ^-4.11 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^1.95 ^-12.31 ^-15.69 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^8.11 ^-1.88 ^-18.23 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-9.97 ^-16.89 ^4.11 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-4.95 ^-18.05 ^-7.15 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-8.11 ^1.88 ^18.23 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-11.17 ^-9.28 ^13.81 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^15.38 ^11.53 ^5.66 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^17.33 ^-0.78 ^-10.03 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^7.36 ^-17.67 ^-5.92 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^-0.75 ^-15.79 ^12.31 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^4.21 ^2.25 ^19.46 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^19.93 ^0.61 ^2.0 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^14.92 ^1.77 ^13.26 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^16.87 ^-10.54 ^-2.42 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^9.96 ^-16.28 ^6.11 0.361 0.361 0.361 0.0 3 force @a[distance=..64] +particle flash ^8.76 ^-8.67 ^15.8 0.361 0.361 0.361 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_012.mcfunction new file mode 100644 index 000000000..1e8f7e2a2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_012.mcfunction @@ -0,0 +1,48 @@ +# frame 72 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:24.28d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.395 0.2 +# Explosion--02_Particle1 +particle flash ^-7.76 ^17.06 ^7.93 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-7.59 ^13.53 ^-13.18 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-20.26 ^1.86 ^-0.48 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-9.73 ^-1.83 ^17.78 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^9.45 ^7.55 ^16.36 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^10.77 ^17.04 ^-2.77 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-9.45 ^-7.55 ^-16.36 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-10.77 ^-17.04 ^2.77 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^7.59 ^-13.53 ^13.18 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^20.26 ^-1.86 ^0.48 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^9.73 ^1.83 ^-17.78 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^7.76 ^-17.06 ^-7.93 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-16.47 ^11.12 ^4.38 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-9.02 ^17.98 ^-3.09 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-16.37 ^9.05 ^-8.02 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^1.87 ^17.97 ^-9.37 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^1.77 ^20.04 ^3.03 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-10.28 ^8.95 ^15.11 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-17.63 ^0.02 ^10.17 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^0.99 ^14.47 ^14.28 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-0.16 ^3.36 ^20.07 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^11.89 ^14.45 ^7.99 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^1.26 ^9.03 ^-18.2 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^12.05 ^11.09 ^-12.08 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-17.46 ^-3.34 ^-9.9 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-10.02 ^3.51 ^-17.36 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-12.05 ^-11.09 ^12.08 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-18.24 ^-8.92 ^1.35 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^10.02 ^-3.51 ^17.36 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-1.26 ^-9.03 ^18.2 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^18.24 ^8.92 ^-1.35 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^17.46 ^3.34 ^9.9 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^0.16 ^-3.36 ^-20.07 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-11.89 ^-14.45 ^-7.99 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-1.87 ^-17.97 ^9.37 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^16.37 ^-9.05 ^8.02 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^17.63 ^-0.02 ^-10.17 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-0.99 ^-14.47 ^-14.28 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^10.28 ^-8.95 ^-15.11 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^-1.77 ^-20.04 ^-3.03 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^9.02 ^-17.98 ^3.09 0.366 0.366 0.366 0.0 3 force @a[distance=..64] +particle flash ^16.47 ^-11.12 ^-4.38 0.366 0.366 0.366 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_013.mcfunction new file mode 100644 index 000000000..ca4955a95 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_013.mcfunction @@ -0,0 +1,48 @@ +# frame 73 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:24.63d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.408 0.2 +# Explosion--02_Particle1 +particle flash ^-17.05 ^-3.1 ^11.25 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-8.56 ^16.72 ^8.6 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-17.8 ^6.53 ^-8.21 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-12.98 ^-14.6 ^-6.72 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-0.75 ^-17.47 ^11.01 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^1.97 ^1.89 ^20.48 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^0.75 ^17.47 ^-11.01 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-1.97 ^-1.89 ^-20.48 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^8.56 ^-16.72 ^-8.6 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^17.8 ^-6.53 ^8.21 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^12.98 ^14.6 ^6.72 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^17.05 ^3.1 ^-11.25 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-20.48 ^2.01 ^1.79 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-15.05 ^8.0 ^11.67 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-15.49 ^13.66 ^0.23 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-3.87 ^10.94 ^17.09 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-8.86 ^-0.71 ^18.65 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-17.65 ^-10.41 ^2.66 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-18.09 ^-4.75 ^-8.77 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-10.46 ^-12.09 ^13.08 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-8.07 ^-18.85 ^2.52 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^0.72 ^-9.16 ^18.51 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^2.6 ^18.41 ^9.01 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^8.79 ^9.69 ^15.99 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-10.02 ^14.1 ^-11.29 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-4.59 ^20.09 ^-1.41 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-8.79 ^-9.69 ^-15.99 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-11.62 ^2.72 ^-16.86 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^4.59 ^-20.09 ^1.41 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-2.6 ^-18.41 ^-9.01 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^11.62 ^-2.72 ^16.86 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^10.02 ^-14.1 ^11.29 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^8.07 ^18.85 ^-2.52 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^-0.72 ^9.16 ^-18.51 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^3.87 ^-10.94 ^-17.09 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^15.49 ^-13.66 ^-0.23 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^18.09 ^4.75 ^8.77 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^10.46 ^12.09 ^-13.08 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^17.65 ^10.41 ^-2.66 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^8.86 ^0.71 ^-18.65 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^15.05 ^-8.0 ^-11.67 0.371 0.371 0.371 0.0 3 force @a[distance=..64] +particle flash ^20.48 ^-2.01 ^-1.79 0.371 0.371 0.371 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_014.mcfunction new file mode 100644 index 000000000..e3829003d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_014.mcfunction @@ -0,0 +1,48 @@ +# frame 74 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:24.97d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.42 0.2 +# Explosion--02_Particle1 +particle flash ^-3.87 ^-19.77 ^5.79 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^11.93 ^-14.84 ^-8.77 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^14.26 ^-9.1 ^12.38 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-5.51 ^-3.0 ^20.0 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-20.05 ^-4.97 ^3.56 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-9.28 ^-12.29 ^-14.22 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^20.05 ^4.97 ^-3.56 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^9.28 ^12.29 ^14.22 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-11.93 ^14.84 ^8.77 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-14.26 ^9.1 ^-12.38 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^5.51 ^3.0 ^-20.0 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^3.87 ^19.77 ^-5.79 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^6.11 ^-16.97 ^10.68 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^4.74 ^-20.35 ^-1.75 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^15.39 ^-14.07 ^2.12 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^1.56 ^-15.95 ^-13.52 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-7.73 ^-18.85 ^-4.96 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-5.51 ^-13.39 ^15.16 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^5.14 ^-7.12 ^19.04 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-14.06 ^-14.55 ^5.5 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-15.02 ^-4.69 ^13.85 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-17.24 ^-10.15 ^-6.27 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^10.25 ^-6.96 ^-16.91 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-2.22 ^-5.46 ^-20.12 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^20.17 ^-2.43 ^5.19 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^18.8 ^-5.8 ^-7.25 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^2.22 ^5.46 ^20.12 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^13.83 ^1.87 ^15.64 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-18.8 ^5.8 ^7.25 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-10.25 ^6.96 ^16.91 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-13.83 ^-1.87 ^-15.64 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-20.17 ^2.43 ^-5.19 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^15.02 ^4.69 ^-13.85 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^17.24 ^10.15 ^6.27 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-1.56 ^15.95 ^13.52 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-15.39 ^14.07 ^-2.12 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-5.14 ^7.12 ^-19.04 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^14.06 ^14.55 ^-5.5 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^5.51 ^13.39 ^-15.16 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^7.73 ^18.85 ^4.96 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-4.74 ^20.35 ^1.75 0.376 0.376 0.376 0.0 3 force @a[distance=..64] +particle flash ^-6.11 ^16.97 ^-10.68 0.376 0.376 0.376 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_015.mcfunction new file mode 100644 index 000000000..79ce89c90 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_015.mcfunction @@ -0,0 +1,48 @@ +# frame 75 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:25.31d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.433 0.2 +# Explosion--02_Particle1 +particle flash ^-16.87 ^-0.2 ^-12.94 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-7.38 ^-19.11 ^-5.7 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-18.51 ^-6.0 ^8.59 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-14.48 ^15.28 ^3.01 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-0.87 ^15.31 ^-14.73 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^3.51 ^-5.94 ^-20.11 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^0.87 ^-15.31 ^14.73 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-3.51 ^5.94 ^20.11 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^7.38 ^19.11 ^5.7 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^18.51 ^6.0 ^-8.59 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^14.48 ^-15.28 ^-3.01 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^16.87 ^0.2 ^12.94 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-20.79 ^-3.64 ^-2.56 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-14.26 ^-11.35 ^-10.96 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-15.22 ^-14.76 ^1.7 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-2.27 ^-14.73 ^-15.17 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-7.85 ^-3.61 ^-19.43 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-18.43 ^8.86 ^-5.84 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-19.39 ^5.46 ^6.82 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-10.43 ^8.88 ^-16.27 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-9.03 ^17.98 ^-6.89 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^1.55 ^5.51 ^-20.48 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^4.17 ^-20.21 ^-5.12 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^10.58 ^-12.47 ^-13.59 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-10.36 ^-12.53 ^13.71 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-3.83 ^-20.23 ^5.31 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-10.58 ^12.47 ^13.59 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-12.94 ^-0.03 ^16.87 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^3.83 ^20.23 ^-5.31 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-4.17 ^20.21 ^5.12 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^12.94 ^0.03 ^-16.87 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^10.36 ^12.53 ^-13.71 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^9.03 ^-17.98 ^6.89 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^-1.55 ^-5.51 ^20.48 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^2.27 ^14.73 ^15.17 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^15.22 ^14.76 ^-1.7 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^19.39 ^-5.46 ^-6.82 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^10.43 ^-8.88 ^16.27 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^18.43 ^-8.86 ^5.84 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^7.85 ^3.61 ^19.43 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^14.26 ^11.35 ^10.96 0.381 0.381 0.381 0.0 3 force @a[distance=..64] +particle flash ^20.79 ^3.64 ^2.56 0.381 0.381 0.381 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_016.mcfunction new file mode 100644 index 000000000..d4c4c30fb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_016.mcfunction @@ -0,0 +1,48 @@ +# frame 76 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:25.64d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.445 0.2 +# Explosion--02_Particle1 +particle flash ^6.24 ^12.04 ^16.77 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^19.55 ^-4.15 ^8.1 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^15.34 ^14.66 ^-3.83 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-6.21 ^20.65 ^-0.11 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-15.32 ^5.54 ^14.13 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^0.6 ^-9.79 ^19.2 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^15.32 ^-5.54 ^-14.13 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-0.6 ^9.79 ^-19.2 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-19.55 ^4.15 ^-8.1 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-15.34 ^-14.66 ^3.83 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^6.21 ^-20.65 ^0.11 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-6.24 ^-12.04 ^-16.77 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^12.68 ^15.69 ^7.6 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^15.16 ^4.64 ^14.62 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^20.51 ^6.18 ^2.51 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^11.84 ^-8.19 ^16.05 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^4.02 ^1.32 ^21.14 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^0.02 ^19.21 ^9.79 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^5.37 ^20.76 ^-2.32 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-5.34 ^10.33 ^18.16 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-12.66 ^15.39 ^8.24 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-8.65 ^-2.5 ^19.59 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^15.14 ^-14.58 ^4.83 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^4.0 ^-17.89 ^11.35 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^18.02 ^5.36 ^-10.56 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^20.5 ^-5.69 ^-3.54 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-4.0 ^17.89 ^-11.35 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^8.66 ^14.37 ^-13.54 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-20.5 ^5.69 ^3.54 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-15.14 ^14.58 ^-4.83 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-8.66 ^-14.37 ^13.54 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-18.02 ^-5.36 ^10.56 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^12.66 ^-15.39 ^-8.24 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^8.65 ^2.5 ^-19.59 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-11.84 ^8.19 ^-16.05 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-20.51 ^-6.18 ^-2.51 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-5.37 ^-20.76 ^2.32 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^5.34 ^-10.33 ^-18.16 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-0.02 ^-19.21 ^-9.79 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-4.02 ^-1.32 ^-21.14 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-15.16 ^-4.64 ^-14.62 0.386 0.386 0.386 0.0 3 force @a[distance=..64] +particle flash ^-12.68 ^-15.69 ^-7.6 0.386 0.386 0.386 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_017.mcfunction new file mode 100644 index 000000000..94b4face6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_017.mcfunction @@ -0,0 +1,48 @@ +# frame 77 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:25.97d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.458 0.2 +# Explosion--02_Particle1 +particle flash ^5.4 ^-18.63 ^10.08 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-15.68 ^-9.64 ^11.79 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-8.51 ^-18.38 ^-8.22 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^13.76 ^-13.24 ^-10.64 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^20.35 ^-1.31 ^7.88 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^2.15 ^0.91 ^21.73 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-20.35 ^1.31 ^-7.88 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-2.15 ^-0.91 ^-21.73 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^15.68 ^9.64 ^-11.79 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^8.51 ^18.38 ^8.22 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-13.76 ^13.24 ^10.64 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-5.4 ^18.63 ^-10.08 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-1.83 ^-21.75 ^1.09 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-6.05 ^-16.61 ^12.85 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-14.22 ^-16.47 ^2.1 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-7.96 ^-5.13 ^19.7 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^4.43 ^-10.41 ^18.7 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^11.26 ^-18.73 ^-0.33 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^3.09 ^-18.58 ^-11.08 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^15.13 ^-11.72 ^10.55 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^20.05 ^-8.55 ^-1.62 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^13.22 ^-0.24 ^17.4 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-17.31 ^2.12 ^13.18 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-6.83 ^8.32 ^19.03 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-16.96 ^-10.03 ^-9.46 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-21.18 ^-4.89 ^2.3 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^6.83 ^-8.32 ^-19.03 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-6.26 ^-11.34 ^-17.61 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^21.18 ^4.89 ^-2.3 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^17.31 ^-2.12 ^-13.18 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^6.26 ^11.34 ^17.61 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^16.96 ^10.03 ^9.46 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-20.05 ^8.55 ^1.62 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-13.22 ^0.24 ^-17.4 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^7.96 ^5.13 ^-19.7 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^14.22 ^16.47 ^-2.1 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-3.09 ^18.58 ^11.08 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-15.13 ^11.72 ^-10.55 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-11.26 ^18.73 ^0.33 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^-4.43 ^10.41 ^-18.7 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^6.05 ^16.61 ^-12.85 0.39 0.39 0.39 0.0 3 force @a[distance=..64] +particle flash ^1.83 ^21.75 ^-1.09 0.39 0.39 0.39 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_018.mcfunction new file mode 100644 index 000000000..35922aad8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_018.mcfunction @@ -0,0 +1,48 @@ +# frame 78 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:26.29d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.471 0.2 +# Explosion--02_Particle1 +particle flash ^14.92 ^12.85 ^10.14 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^13.55 ^-10.01 ^14.37 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^21.09 ^-2.43 ^-6.31 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^8.7 ^16.45 ^-12.01 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-6.49 ^20.54 ^5.16 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-3.49 ^4.18 ^21.47 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^6.49 ^-20.54 ^-5.16 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^3.49 ^-4.18 ^-21.47 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-13.55 ^10.01 ^-14.37 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-21.09 ^2.43 ^6.31 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-8.7 ^-16.45 ^12.01 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-14.92 ^-12.85 ^-10.14 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^21.16 ^6.12 ^2.25 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^16.74 ^1.67 ^14.41 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^20.36 ^-7.31 ^4.74 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^5.91 ^-3.43 ^21.07 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^6.72 ^10.01 ^18.58 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^13.88 ^17.22 ^-1.1 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^17.51 ^8.24 ^-10.77 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^4.95 ^19.62 ^9.0 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^1.3 ^21.74 ^-4.02 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-5.87 ^14.53 ^15.65 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^2.85 ^-15.55 ^15.51 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-7.17 ^-7.21 ^19.68 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^16.21 ^-13.5 ^-6.75 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^11.78 ^-17.96 ^5.41 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^7.17 ^7.21 ^-19.68 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^14.45 ^-3.89 ^-16.33 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-11.78 ^17.96 ^-5.41 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-2.85 ^15.55 ^-15.51 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-14.45 ^3.89 ^16.33 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-16.21 ^13.5 ^6.75 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-1.3 ^-21.74 ^4.02 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^5.87 ^-14.53 ^-15.65 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-5.91 ^3.43 ^-21.07 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-20.36 ^7.31 ^-4.74 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-17.51 ^-8.24 ^10.77 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-4.95 ^-19.62 ^-9.0 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-13.88 ^-17.22 ^1.1 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-6.72 ^-10.01 ^-18.58 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-16.74 ^-1.67 ^-14.41 0.395 0.395 0.395 0.0 3 force @a[distance=..64] +particle flash ^-21.16 ^-6.12 ^-2.25 0.395 0.395 0.395 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_019.mcfunction new file mode 100644 index 000000000..88c47c764 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_019.mcfunction @@ -0,0 +1,48 @@ +# frame 79 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:26.61d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.483 0.2 +# Explosion--02_Particle1 +particle flash ^-0.74 ^-20.83 ^8.31 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-15.39 ^-13.76 ^-8.77 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^7.61 ^-16.38 ^-13.3 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^19.64 ^-9.23 ^5.69 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^4.07 ^-2.19 ^21.95 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-17.58 ^-4.99 ^13.02 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-4.07 ^2.19 ^-21.95 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^17.58 ^4.99 ^-13.02 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^15.39 ^13.76 ^8.77 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-7.61 ^16.38 ^13.3 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-19.64 ^9.23 ^-5.69 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^0.74 ^20.83 ^-8.31 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^4.04 ^-21.87 ^-2.93 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-9.48 ^-20.33 ^-0.27 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-4.58 ^-17.72 ^-12.97 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-19.38 ^-11.02 ^2.49 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-10.76 ^-15.18 ^12.53 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^11.11 ^-17.67 ^8.23 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^16.02 ^-15.06 ^-4.48 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^1.96 ^-13.53 ^17.79 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^13.94 ^-6.72 ^16.25 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-7.94 ^-4.22 ^20.55 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-20.59 ^-2.66 ^-8.5 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-21.87 ^2.49 ^4.31 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^2.08 ^-8.34 ^-20.72 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-11.44 ^-6.8 ^-18.06 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^21.87 ^-2.49 ^-4.31 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^14.8 ^-6.7 ^-15.47 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^11.44 ^6.8 ^18.06 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^20.59 ^2.66 ^8.5 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-14.8 ^6.7 ^15.47 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-2.08 ^8.34 ^20.72 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-13.94 ^6.72 ^-16.25 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^7.94 ^4.22 ^-20.55 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^19.38 ^11.02 ^-2.49 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^4.58 ^17.72 ^12.97 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-16.02 ^15.06 ^4.48 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-1.96 ^13.53 ^-17.79 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-11.11 ^17.67 ^-8.23 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^10.76 ^15.18 ^-12.53 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^9.48 ^20.33 ^0.27 0.4 0.4 0.4 0.0 3 force @a[distance=..64] +particle flash ^-4.04 ^21.87 ^2.93 0.4 0.4 0.4 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_020.mcfunction new file mode 100644 index 000000000..410a2e7d0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_020.mcfunction @@ -0,0 +1,48 @@ +# frame 80 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:26.93d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.496 0.2 +# Explosion--02_Particle1 +particle flash ^-21.34 ^-2.92 ^-7.21 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-16.5 ^5.4 ^14.65 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-11.85 ^18.84 ^-4.54 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-4.02 ^4.44 ^-21.91 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-3.82 ^-17.89 ^-13.46 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-11.53 ^-17.31 ^9.13 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^3.82 ^17.89 ^13.46 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^11.53 ^17.31 ^-9.13 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^16.5 ^-5.4 ^-14.65 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^11.85 ^-18.84 ^4.54 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^4.02 ^-4.44 ^21.91 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^21.34 ^2.92 ^7.21 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-19.51 ^9.36 ^-6.91 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-22.24 ^1.46 ^4.37 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-16.67 ^14.24 ^5.94 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-16.48 ^-7.0 ^13.98 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-19.32 ^-11.89 ^1.13 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-14.9 ^0.9 ^-17.12 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-9.33 ^13.69 ^-15.55 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-14.79 ^-12.23 ^-12.15 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-4.6 ^-7.91 ^-20.79 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-9.02 ^-20.69 ^-2.54 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-7.34 ^0.56 ^21.49 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-4.42 ^-12.78 ^18.25 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-4.72 ^21.59 ^5.25 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-7.45 ^13.69 ^16.52 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^4.42 ^12.78 ^-18.25 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^21.25 ^-8.04 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^7.45 ^-13.69 ^-16.52 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^7.34 ^-0.56 ^-21.49 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^-21.25 ^8.04 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^4.72 ^-21.59 ^-5.25 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^4.6 ^7.91 ^20.79 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^9.02 ^20.69 ^2.54 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^16.48 ^7.0 ^-13.98 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^16.67 ^-14.24 ^-5.94 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^9.33 ^-13.69 ^15.55 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^14.79 ^12.23 ^12.15 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^14.9 ^-0.9 ^17.12 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^19.32 ^11.89 ^-1.13 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^22.24 ^-1.46 ^-4.37 0.405 0.405 0.405 0.0 3 force @a[distance=..64] +particle flash ^19.51 ^-9.36 ^6.91 0.405 0.405 0.405 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_021.mcfunction new file mode 100644 index 000000000..7fbe4c9b5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_021.mcfunction @@ -0,0 +1,48 @@ +# frame 81 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:27.24d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.508 0.2 +# Explosion--02_Particle1 +particle flash ^-8.35 ^21.37 ^-1.42 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-22.81 ^2.27 ^1.83 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-7.88 ^9.27 ^19.51 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^12.77 ^16.67 ^9.35 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^10.61 ^14.24 ^-14.6 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-11.38 ^5.34 ^-19.25 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-10.61 ^-14.24 ^14.6 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^11.38 ^-5.34 ^19.25 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^22.81 ^-2.27 ^-1.83 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^7.88 ^-9.27 ^-19.51 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-12.77 ^-16.67 ^-9.35 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^8.35 ^-21.37 ^1.42 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-9.54 ^18.01 ^10.63 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-18.32 ^13.9 ^0.24 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-18.04 ^6.78 ^12.54 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-20.09 ^4.47 ^-10.24 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-11.6 ^15.7 ^-12.15 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^2.6 ^22.36 ^4.67 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^2.88 ^15.25 ^16.96 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^1.33 ^20.93 ^-9.42 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^13.75 ^18.17 ^-3.09 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-0.45 ^11.51 ^-19.9 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-20.91 ^-8.47 ^-4.42 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-14.2 ^-6.66 ^-16.81 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-10.87 ^-2.92 ^20.05 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-19.64 ^-7.04 ^9.66 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^14.2 ^6.66 ^16.81 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^2.06 ^2.31 ^22.78 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^19.64 ^7.04 ^-9.66 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^20.91 ^8.47 ^4.42 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-2.06 ^-2.31 ^-22.78 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^10.87 ^2.92 ^-20.05 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-13.75 ^-18.17 ^3.09 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^0.45 ^-11.51 ^19.9 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^20.09 ^-4.47 ^10.24 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^18.04 ^-6.78 ^-12.54 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-2.88 ^-15.25 ^-16.96 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-1.33 ^-20.93 ^9.42 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^-2.6 ^-22.36 ^-4.67 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^11.6 ^-15.7 ^12.15 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^18.32 ^-13.9 ^-0.24 0.41 0.41 0.41 0.0 3 force @a[distance=..64] +particle flash ^9.54 ^-18.01 ^-10.63 0.41 0.41 0.41 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_022.mcfunction new file mode 100644 index 000000000..41415ddd1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_022.mcfunction @@ -0,0 +1,48 @@ +# frame 82 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:27.54d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.521 0.2 +# Explosion--02_Particle1 +particle flash ^-8.59 ^-16.5 ^13.97 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^10.61 ^-20.69 ^-0.59 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^12.85 ^-5.64 ^18.56 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-7.98 ^7.01 ^20.7 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-23.09 ^-0.23 ^2.87 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-11.59 ^-17.35 ^-10.29 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^23.09 ^0.23 ^-2.87 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^11.59 ^17.35 ^10.29 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-10.61 ^20.69 ^0.59 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-12.85 ^5.64 ^-18.56 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^7.98 ^-7.01 ^-20.7 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^8.59 ^16.5 ^-13.97 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^2.5 ^-13.01 ^19.12 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^1.19 ^-21.86 ^7.87 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^13.79 ^-15.48 ^10.56 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-0.57 ^-22.36 ^-6.39 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-11.86 ^-19.9 ^2.17 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-9.74 ^-5.58 ^20.38 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^2.86 ^0.81 ^23.07 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-18.62 ^-9.83 ^9.9 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-18.26 ^3.99 ^13.85 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-20.38 ^-10.33 ^-4.36 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^10.93 ^-16.29 ^-12.51 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-2.12 ^-14.32 ^-18.21 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^21.12 ^-3.18 ^9.22 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^19.81 ^-12.03 ^-2.03 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^2.12 ^14.32 ^18.21 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^14.36 ^6.88 ^16.96 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-19.81 ^12.03 ^2.03 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-10.93 ^16.29 ^12.51 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-14.36 ^-6.88 ^-16.96 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-21.12 ^3.18 ^-9.22 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^18.26 ^-3.99 ^-13.85 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^20.38 ^10.33 ^4.36 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^0.57 ^22.36 ^6.39 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-13.79 ^15.48 ^-10.56 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-2.86 ^-0.81 ^-23.07 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^18.62 ^9.83 ^-9.9 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^9.74 ^5.58 ^-20.38 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^11.86 ^19.9 ^-2.17 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-1.19 ^21.86 ^-7.87 0.415 0.415 0.415 0.0 3 force @a[distance=..64] +particle flash ^-2.5 ^13.01 ^-19.12 0.415 0.415 0.415 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_023.mcfunction new file mode 100644 index 000000000..7331d755c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_023.mcfunction @@ -0,0 +1,48 @@ +# frame 83 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:27.84d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.534 0.2 +# Explosion--02_Particle1 +particle flash ^-22.24 ^-1.08 ^-7.6 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-12.16 ^-19.32 ^5.73 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-16.82 ^2.59 ^16.26 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-11.98 ^20.25 ^-0.38 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-4.34 ^9.26 ^-21.19 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-4.44 ^-15.19 ^-17.41 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^4.34 ^-9.26 ^21.19 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^4.44 ^15.19 ^17.41 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^12.16 ^19.32 ^-5.73 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^16.82 ^-2.59 ^-16.26 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^11.98 ^-20.25 ^0.38 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^22.24 ^1.08 ^7.6 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-22.96 ^0.89 ^5.09 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-20.22 ^-11.99 ^-1.1 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-17.03 ^-9.83 ^12.92 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-9.76 ^-20.28 ^-6.87 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-15.69 ^-9.56 ^-14.71 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-20.12 ^11.27 ^-4.7 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-16.93 ^13.42 ^9.33 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-15.62 ^4.81 ^-16.93 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-9.59 ^17.35 ^-12.68 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-5.16 ^-3.49 ^-22.69 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-0.1 ^-23.26 ^3.59 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^4.43 ^-20.83 ^-10.01 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-7.34 ^-3.92 ^22.01 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-4.6 ^-16.8 ^15.83 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-4.43 ^20.83 ^10.01 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^-7.27 ^10.45 ^19.79 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^4.6 ^16.8 ^-15.83 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^0.1 ^23.26 ^-3.59 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^7.27 ^-10.45 ^-19.79 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^7.34 ^3.92 ^-22.01 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^9.59 ^-17.35 ^12.68 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^5.16 ^3.49 ^22.69 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^9.76 ^20.28 ^6.87 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^17.03 ^9.83 ^-12.92 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^16.93 ^-13.42 ^-9.33 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^15.62 ^-4.81 ^16.93 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^20.12 ^-11.27 ^4.7 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^15.69 ^9.56 ^14.71 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^20.22 ^11.99 ^1.1 0.42 0.42 0.42 0.0 3 force @a[distance=..64] +particle flash ^22.96 ^-0.89 ^-5.09 0.42 0.42 0.42 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_024.mcfunction new file mode 100644 index 000000000..ae46eedbb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_024.mcfunction @@ -0,0 +1,48 @@ +# frame 84 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:28.14d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.546 0.2 +# Explosion--02_Particle1 +particle flash ^-8.26 ^15.28 ^16.26 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^14.55 ^5.17 ^18.1 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^9.64 ^21.76 ^0.02 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-13.7 ^17.72 ^-8.03 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-23.21 ^-1.36 ^5.06 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-5.75 ^-9.12 ^21.22 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^23.21 ^1.36 ^-5.06 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^5.75 ^9.12 ^-21.22 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-14.55 ^-5.17 ^-18.1 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-9.64 ^-21.76 ^-0.02 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^13.7 ^-17.72 ^8.03 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^8.26 ^-15.28 ^-16.26 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^0.81 ^21.77 ^9.57 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^3.7 ^12.02 ^20.2 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^14.22 ^15.83 ^10.65 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^5.18 ^-2.32 ^23.11 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-8.23 ^3.62 ^22.03 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-12.91 ^19.4 ^4.84 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^23.2 ^-4.71 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-18.5 ^8.18 ^12.54 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-21.7 ^9.61 ^-1.75 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-17.02 ^-6.16 ^15.45 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^16.61 ^-7.37 ^15.36 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^4.68 ^-15.77 ^17.19 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^19.31 ^13.59 ^-2.96 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^22.2 ^3.84 ^7.66 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-4.68 ^15.77 ^-17.19 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^9.04 ^18.15 ^-12.46 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-22.2 ^-3.84 ^-7.66 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-16.61 ^7.37 ^-15.36 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-9.04 ^-18.15 ^12.46 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-19.31 ^-13.59 ^2.96 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^21.7 ^-9.61 ^1.75 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^17.02 ^6.16 ^-15.45 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-5.18 ^2.32 ^-23.11 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-14.22 ^-15.83 ^-10.65 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^-23.2 ^4.71 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^18.5 ^-8.18 ^-12.54 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^12.91 ^-19.4 ^-4.84 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^8.23 ^-3.62 ^-22.03 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-3.7 ^-12.02 ^-20.2 0.425 0.425 0.425 0.0 3 force @a[distance=..64] +particle flash ^-0.81 ^-21.77 ^-9.57 0.425 0.425 0.425 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_025.mcfunction new file mode 100644 index 000000000..f974e739b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_025.mcfunction @@ -0,0 +1,48 @@ +# frame 85 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:28.43d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.559 0.2 +# Explosion--02_Particle1 +particle flash ^2.18 ^20.85 ^-11.79 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^4.45 ^19.5 ^13.36 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^22.16 ^9.25 ^-1.5 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^10.59 ^-0.9 ^-21.58 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-14.26 ^3.08 ^-19.12 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-18.06 ^15.69 ^2.47 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^14.26 ^-3.08 ^19.12 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^18.06 ^-15.69 ^-2.47 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-4.45 ^-19.5 ^-13.36 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-22.16 ^-9.25 ^1.5 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-10.59 ^0.9 ^21.58 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-2.18 ^-20.85 ^11.79 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^14.3 ^17.69 ^-7.81 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^3.89 ^23.72 ^0.92 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^15.64 ^16.9 ^6.97 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-8.0 ^20.69 ^9.31 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-9.34 ^21.48 ^-5.48 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^7.51 ^11.73 ^-19.62 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^19.25 ^4.91 ^-13.57 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-7.1 ^14.07 ^-18.17 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-2.16 ^1.28 ^-23.92 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-19.0 ^11.04 ^-9.79 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-3.61 ^11.99 ^20.54 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-16.84 ^9.75 ^14.14 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^21.41 ^3.62 ^10.36 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^11.0 ^9.65 ^19.09 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^16.84 ^-9.75 ^-14.14 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^23.64 ^-3.79 ^-2.34 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-11.0 ^-9.65 ^-19.09 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^3.61 ^-11.99 ^-20.54 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-23.64 ^3.79 ^2.34 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-21.41 ^-3.62 ^-10.36 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^2.16 ^-1.28 ^23.92 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^19.0 ^-11.04 ^9.79 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^8.0 ^-20.69 ^-9.31 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-15.64 ^-16.9 ^-6.97 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-19.25 ^-4.91 ^13.57 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^7.1 ^-14.07 ^18.17 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-7.51 ^-11.73 ^19.62 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^9.34 ^-21.48 ^5.48 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-3.89 ^-23.72 ^-0.92 0.429 0.429 0.429 0.0 3 force @a[distance=..64] +particle flash ^-14.3 ^-17.69 ^7.81 0.429 0.429 0.429 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_026.mcfunction new file mode 100644 index 000000000..8106b335c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_026.mcfunction @@ -0,0 +1,48 @@ +# frame 86 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:28.71d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.571 0.2 +# Explosion--02_Particle1 +particle flash ^-22.4 ^-6.46 ^6.87 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-1.87 ^-20.22 ^13.36 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-5.44 ^2.97 ^23.5 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-15.34 ^18.06 ^5.41 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-17.89 ^4.2 ^-15.91 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-9.56 ^-19.46 ^-11.0 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^17.89 ^-4.2 ^15.91 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^9.56 ^19.46 ^11.0 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^1.87 ^20.22 ^-13.36 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^5.44 ^-2.97 ^-23.5 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^15.34 ^-18.06 ^-5.41 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^22.4 ^6.46 ^-6.87 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-16.37 ^-2.05 ^17.86 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-14.27 ^-15.68 ^11.89 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-4.29 ^-10.14 ^21.67 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-6.72 ^-23.32 ^1.39 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-18.79 ^-15.23 ^-2.43 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-22.19 ^6.82 ^7.22 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-12.22 ^12.36 ^17.0 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-23.68 ^-1.33 ^-5.31 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-19.53 ^13.09 ^-6.17 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-16.13 ^-8.97 ^-15.82 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^7.92 ^-22.5 ^4.67 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^3.4 ^-22.05 ^-9.65 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^7.32 ^-0.73 ^23.17 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^9.42 ^-14.36 ^17.21 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-3.4 ^22.05 ^9.65 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^2.42 ^13.18 ^20.28 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-9.42 ^14.36 ^-17.21 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-7.92 ^22.5 ^-4.67 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-2.42 ^-13.18 ^-20.28 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^-7.32 ^0.73 ^-23.17 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^19.53 ^-13.09 ^6.17 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^16.13 ^8.97 ^15.82 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^6.72 ^23.32 ^-1.39 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^4.29 ^10.14 ^-21.67 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^12.22 ^-12.36 ^-17.0 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^23.68 ^1.33 ^5.31 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^22.19 ^-6.82 ^-7.22 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^18.79 ^15.23 ^2.43 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^14.27 ^15.68 ^-11.89 0.434 0.434 0.434 0.0 3 force @a[distance=..64] +particle flash ^16.37 ^2.05 ^-17.86 0.434 0.434 0.434 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_027.mcfunction new file mode 100644 index 000000000..e94ee66b6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_027.mcfunction @@ -0,0 +1,48 @@ +# frame 87 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:28.99d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.584 0.2 +# Explosion--02_Particle1 +particle flash ^7.19 ^-21.91 ^8.43 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-12.23 ^-8.87 ^19.36 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-15.09 ^-18.9 ^-4.26 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^7.35 ^-16.35 ^-16.78 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^24.08 ^-4.75 ^-0.9 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^11.98 ^-0.12 ^21.44 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-24.08 ^4.75 ^0.9 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-11.98 ^0.12 ^-21.44 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^12.23 ^8.87 ^-19.36 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^15.09 ^18.9 ^4.26 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-7.35 ^16.35 ^16.78 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-7.19 ^21.91 ^-8.43 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-4.64 ^-23.99 ^2.46 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-2.96 ^-18.09 ^16.34 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-16.06 ^-16.32 ^8.88 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-0.14 ^-5.29 ^23.98 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^11.27 ^-12.95 ^17.56 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^8.55 ^-22.49 ^-4.91 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-4.55 ^-20.72 ^-12.36 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^18.38 ^-15.67 ^4.43 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^18.47 ^-12.41 ^-10.39 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^21.19 ^-2.87 ^12.07 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-11.5 ^4.4 ^21.24 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^2.72 ^9.54 ^22.46 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-23.02 ^-8.32 ^-1.97 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-21.34 ^-2.42 ^11.91 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-2.72 ^-9.54 ^-22.46 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-15.91 ^-11.04 ^-15.1 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^21.34 ^2.42 ^-11.91 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^11.5 ^-4.4 ^-21.24 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^15.91 ^11.04 ^15.1 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^23.02 ^8.32 ^1.97 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-18.47 ^12.41 ^10.39 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-21.19 ^2.87 ^-12.07 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^0.14 ^5.29 ^-23.98 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^16.06 ^16.32 ^-8.88 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^4.55 ^20.72 ^12.36 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-18.38 ^15.67 ^-4.43 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-8.55 ^22.49 ^4.91 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^-11.27 ^12.95 ^-17.56 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^2.96 ^18.09 ^-16.34 0.439 0.439 0.439 0.0 3 force @a[distance=..64] +particle flash ^4.64 ^23.99 ^-2.46 0.439 0.439 0.439 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_028.mcfunction new file mode 100644 index 000000000..98433490e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_028.mcfunction @@ -0,0 +1,48 @@ +# frame 88 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:29.26d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.597 0.2 +# Explosion--02_Particle1 +particle flash ^-4.75 ^24.2 ^2.61 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-7.75 ^12.02 ^-20.26 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-23.86 ^6.73 ^-0.45 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-9.93 ^7.09 ^21.59 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^14.79 ^12.61 ^15.4 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^16.14 ^15.66 ^-10.46 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-14.79 ^-12.61 ^-15.4 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-16.14 ^-15.66 ^10.46 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^7.75 ^-12.02 ^20.26 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^23.86 ^-6.73 ^0.45 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^9.93 ^-7.09 ^-21.59 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^4.75 ^-24.2 ^-2.61 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-16.82 ^18.18 ^1.27 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-7.35 ^21.29 ^-10.37 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-18.58 ^11.02 ^-12.17 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^4.93 ^16.27 ^-18.06 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^6.7 ^23.43 ^-4.62 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-8.63 ^18.39 ^14.22 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-19.86 ^8.13 ^12.43 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^5.91 ^21.64 ^10.58 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^2.86 ^11.58 ^21.74 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^18.18 ^16.61 ^2.9 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^1.28 ^2.9 ^-24.6 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^15.32 ^5.03 ^-18.84 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-22.72 ^-3.45 ^-9.31 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-13.25 ^-0.34 ^-20.96 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-15.32 ^-5.03 ^18.84 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-23.51 ^-5.25 ^5.89 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^13.25 ^0.34 ^20.96 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-1.28 ^-2.9 ^24.6 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^23.51 ^5.25 ^-5.89 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^22.72 ^3.45 ^9.31 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-2.86 ^-11.58 ^-21.74 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-18.18 ^-16.61 ^-2.9 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-4.93 ^-16.27 ^18.06 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^18.58 ^-11.02 ^12.17 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^19.86 ^-8.13 ^-12.43 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-5.91 ^-21.64 ^-10.58 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^8.63 ^-18.39 ^-14.22 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^-6.7 ^-23.43 ^4.62 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^7.35 ^-21.29 ^10.37 0.444 0.444 0.444 0.0 3 force @a[distance=..64] +particle flash ^16.82 ^-18.18 ^-1.27 0.444 0.444 0.444 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_029.mcfunction new file mode 100644 index 000000000..214d837be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_029.mcfunction @@ -0,0 +1,48 @@ +# frame 89 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:29.53d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.609 0.2 +# Explosion--02_Particle1 +particle flash ^-7.36 ^-16.94 ^-16.91 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^17.58 ^-15.63 ^-8.58 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-1.36 ^-23.75 ^7.8 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-22.97 ^-9.52 ^2.95 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-17.38 ^7.4 ^-16.43 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^7.68 ^3.63 ^-23.55 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^17.38 ^-7.4 ^16.43 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-7.68 ^-3.63 ^23.55 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-17.58 ^15.63 ^8.58 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^1.36 ^23.75 ^-7.8 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^22.97 ^9.52 ^-2.95 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^7.36 ^16.94 ^16.91 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-5.13 ^-23.91 ^-5.35 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^6.01 ^-19.14 ^-14.98 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^9.53 ^-23.15 ^-0.46 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^14.84 ^-7.05 ^-18.89 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^0.19 ^-7.82 ^-23.78 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-17.83 ^-15.55 ^-8.2 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-14.3 ^-19.56 ^6.32 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-14.54 ^-5.6 ^-19.59 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-23.72 ^-1.24 ^-7.92 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-5.71 ^6.48 ^-23.5 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^23.83 ^-3.59 ^-6.78 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^18.01 ^7.73 ^-15.58 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^9.42 ^-18.31 ^14.24 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^20.55 ^-13.54 ^4.61 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-18.01 ^-7.73 ^15.58 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-5.31 ^-16.09 ^18.43 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-20.55 ^13.54 ^-4.61 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-23.83 ^3.59 ^6.78 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^5.31 ^16.09 ^-18.43 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-9.42 ^18.31 ^-14.24 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^23.72 ^1.24 ^7.92 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^5.71 ^-6.48 ^23.5 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-14.84 ^7.05 ^18.89 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-9.53 ^23.15 ^0.46 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^14.3 ^19.56 ^-6.32 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^14.54 ^5.6 ^19.59 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^17.83 ^15.55 ^8.2 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-0.19 ^7.82 ^23.78 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^-6.01 ^19.14 ^14.98 0.449 0.449 0.449 0.0 3 force @a[distance=..64] +particle flash ^5.13 ^23.91 ^5.35 0.449 0.449 0.449 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_030.mcfunction new file mode 100644 index 000000000..306c43443 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_030.mcfunction @@ -0,0 +1,48 @@ +# frame 90 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:29.79d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.622 0.2 +# Explosion--02_Particle1 +particle flash ^-10.52 ^21.61 ^7.8 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^13.06 ^13.46 ^16.94 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^10.61 ^21.38 ^-8.3 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-13.0 ^13.11 ^-17.25 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-25.15 ^0.08 ^2.46 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-9.04 ^0.29 ^23.59 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^25.15 ^-0.08 ^-2.46 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^9.04 ^-0.29 ^-23.59 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-13.06 ^-13.46 ^-16.94 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-10.61 ^-21.38 ^8.3 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^13.0 ^-13.11 ^17.25 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^10.52 ^-21.61 ^-7.8 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^25.27 ^-0.29 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^1.49 ^20.61 ^14.54 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^13.91 ^20.48 ^5.08 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^2.36 ^8.08 ^23.83 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-11.5 ^12.87 ^18.45 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-13.83 ^20.41 ^-5.55 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-1.41 ^20.27 ^-15.02 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-20.97 ^12.75 ^6.03 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-22.42 ^7.75 ^-8.69 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-20.1 ^0.22 ^15.31 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^15.32 ^0.2 ^20.1 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^2.33 ^-7.54 ^24.01 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^21.02 ^12.52 ^-6.33 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^22.46 ^7.86 ^8.51 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-2.33 ^7.54 ^-24.01 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^11.55 ^12.39 ^-18.75 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-22.46 ^-7.86 ^-8.51 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-15.32 ^-0.2 ^-20.1 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-11.55 ^-12.39 ^18.75 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-21.02 ^-12.52 ^6.33 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^22.42 ^-7.75 ^8.69 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^20.1 ^-0.22 ^-15.31 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-2.36 ^-8.08 ^-23.83 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-13.91 ^-20.48 ^-5.08 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^1.41 ^-20.27 ^15.02 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^20.97 ^-12.75 ^-6.03 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^13.83 ^-20.41 ^5.55 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^11.5 ^-12.87 ^-18.45 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-1.49 ^-20.61 ^-14.54 0.454 0.454 0.454 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^-25.27 ^0.29 0.454 0.454 0.454 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_031.mcfunction new file mode 100644 index 000000000..a5e0a3a9c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_031.mcfunction @@ -0,0 +1,48 @@ +# frame 91 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:30.04d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.634 0.2 +# Explosion--02_Particle1 +particle flash ^-3.27 ^21.81 ^-12.79 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-23.09 ^3.97 ^-10.05 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-14.43 ^17.76 ^11.24 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^12.15 ^20.49 ^9.1 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^19.92 ^8.38 ^-13.53 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-1.86 ^-1.83 ^-25.36 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-19.92 ^-8.38 ^13.53 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^1.86 ^1.83 ^25.36 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^23.09 ^-3.97 ^10.05 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^14.43 ^-17.76 ^-11.24 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-12.15 ^-20.49 ^-9.1 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^3.27 ^-21.81 ^12.79 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-10.4 ^23.26 ^-0.91 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-15.49 ^15.15 ^-13.43 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-22.05 ^12.77 ^0.7 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-14.67 ^1.26 ^-20.82 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-3.02 ^11.75 ^-22.43 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^5.22 ^24.86 ^-2.17 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-1.34 ^22.48 ^11.95 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^9.79 ^17.75 ^-15.47 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^18.85 ^16.97 ^-2.6 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^10.61 ^3.85 ^-22.86 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-20.71 ^-9.71 ^-11.26 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-8.24 ^-13.11 ^-20.25 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-20.19 ^5.51 ^14.56 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-25.28 ^-2.59 ^2.04 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^8.24 ^13.11 ^20.25 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-7.39 ^11.51 ^21.52 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^25.28 ^2.59 ^-2.04 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^20.71 ^9.71 ^11.26 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^7.39 ^-11.51 ^-21.52 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^20.19 ^-5.51 ^-14.56 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-18.85 ^-16.97 ^2.6 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-10.61 ^-3.85 ^22.86 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^14.67 ^-1.26 ^20.82 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^22.05 ^-12.77 ^-0.7 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^1.34 ^-22.48 ^-11.95 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-9.79 ^-17.75 ^15.47 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^-5.22 ^-24.86 ^2.17 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^3.02 ^-11.75 ^22.43 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^15.49 ^-15.15 ^13.43 0.459 0.459 0.459 0.0 3 force @a[distance=..64] +particle flash ^10.4 ^-23.26 ^0.91 0.459 0.459 0.459 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_032.mcfunction new file mode 100644 index 000000000..86161f40e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_032.mcfunction @@ -0,0 +1,48 @@ +# frame 92 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:30.29d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.647 0.2 +# Explosion--02_Particle1 +particle flash ^-2.6 ^-2.84 ^-25.43 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-9.0 ^20.29 ^-12.98 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^16.86 ^12.61 ^-14.76 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^17.82 ^-14.26 ^-11.86 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-7.46 ^-23.18 ^-8.28 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-24.03 ^-1.82 ^-8.97 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^7.46 ^23.18 ^8.28 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^24.03 ^1.82 ^8.97 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^9.0 ^-20.29 ^12.98 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-16.86 ^-12.61 ^14.76 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-17.82 ^14.26 ^11.86 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^2.6 ^2.84 ^25.43 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^8.39 ^5.74 ^-23.62 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-6.82 ^10.26 ^-22.58 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^4.62 ^19.34 ^-16.31 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-19.42 ^10.86 ^-12.9 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-15.65 ^-2.74 ^-20.22 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^8.95 ^-10.05 ^-21.92 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^20.38 ^-0.97 ^-15.65 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-5.91 ^-15.29 ^-19.81 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^6.09 ^-22.0 ^-11.84 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-18.51 ^-14.7 ^-10.14 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-15.76 ^20.31 ^-0.66 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-24.6 ^7.31 ^1.7 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^14.29 ^21.04 ^-3.81 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-0.91 ^25.55 ^-2.76 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^24.6 ^-7.31 ^-1.7 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^24.04 ^8.48 ^-3.4 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^0.91 ^-25.55 ^2.76 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^15.76 ^-20.31 ^0.66 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-24.04 ^-8.48 ^3.4 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-14.29 ^-21.04 ^3.81 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-6.09 ^22.0 ^11.84 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^18.51 ^14.7 ^10.14 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^19.42 ^-10.86 ^12.9 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-4.62 ^-19.34 ^16.31 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-20.38 ^0.97 ^15.65 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^5.91 ^15.29 ^19.81 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-8.95 ^10.05 ^21.92 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^15.65 ^2.74 ^20.22 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^6.82 ^-10.26 ^22.58 0.464 0.464 0.464 0.0 3 force @a[distance=..64] +particle flash ^-8.39 ^-5.74 ^23.62 0.464 0.464 0.464 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_033.mcfunction new file mode 100644 index 000000000..939c97d2c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_033.mcfunction @@ -0,0 +1,48 @@ +# frame 93 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:30.53d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.66 0.2 +# Explosion--02_Particle1 +particle flash ^2.58 ^-19.09 ^17.35 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-17.51 ^-0.75 ^19.11 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-17.52 ^-19.09 ^-1.07 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^8.28 ^-22.85 ^-9.04 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^24.23 ^-6.83 ^6.2 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^8.29 ^6.82 ^23.6 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-24.23 ^6.83 ^-6.2 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-8.29 ^-6.82 ^-23.6 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^17.51 ^0.75 ^-19.11 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^17.52 ^19.09 ^1.07 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-8.28 ^22.85 ^9.04 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-2.58 ^19.09 ^-17.35 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-8.78 ^-22.44 ^9.57 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-8.78 ^-11.66 ^21.43 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-20.59 ^-11.66 ^10.61 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-5.42 ^3.57 ^25.11 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^6.39 ^-7.21 ^24.07 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^6.38 ^-24.65 ^4.89 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-5.43 ^-24.65 ^-5.94 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^15.76 ^-15.24 ^13.85 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^19.11 ^-17.45 ^-1.67 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^19.12 ^-0.01 ^17.52 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-15.16 ^12.99 ^16.55 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^0.01 ^17.44 ^19.19 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-24.54 ^-7.2 ^-4.27 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-24.54 ^3.58 ^7.59 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-0.01 ^-17.44 ^-19.19 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-15.17 ^-15.23 ^-14.5 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^24.54 ^-3.58 ^-7.59 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^15.16 ^-12.99 ^-16.55 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^15.17 ^15.23 ^14.5 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^24.54 ^7.2 ^4.27 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-19.11 ^17.45 ^1.67 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-19.12 ^0.01 ^-17.52 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^5.42 ^-3.57 ^-25.11 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^20.59 ^11.66 ^-10.61 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^5.43 ^24.65 ^5.94 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-15.76 ^15.24 ^-13.85 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-6.38 ^24.65 ^-4.89 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^-6.39 ^7.21 ^-24.07 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^8.78 ^11.66 ^-21.43 0.468 0.468 0.468 0.0 3 force @a[distance=..64] +particle flash ^8.78 ^22.44 ^-9.57 0.468 0.468 0.468 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_034.mcfunction new file mode 100644 index 000000000..483044128 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_034.mcfunction @@ -0,0 +1,48 @@ +# frame 94 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:30.76d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.672 0.2 +# Explosion--02_Particle1 +particle flash ^8.37 ^16.79 ^18.2 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-9.31 ^24.38 ^-1.42 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-17.31 ^6.99 ^18.3 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^3.79 ^-9.69 ^23.98 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^24.82 ^-2.6 ^7.77 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^16.73 ^18.46 ^-7.93 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-24.82 ^2.6 ^-7.77 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-16.73 ^-18.46 ^7.93 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^9.31 ^-24.38 ^1.42 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^17.31 ^-6.99 ^-18.3 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-3.79 ^9.69 ^-23.98 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-8.37 ^-16.79 ^-18.2 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-5.25 ^13.97 ^21.46 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-0.55 ^24.2 ^9.87 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-15.65 ^18.44 ^9.92 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^4.36 ^25.18 ^-5.49 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^14.75 ^20.72 ^6.04 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^7.15 ^4.17 ^24.8 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-7.95 ^-1.59 ^24.85 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^19.51 ^8.34 ^15.27 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^16.82 ^-7.22 ^18.66 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^24.42 ^9.32 ^-0.09 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-7.7 ^20.03 ^-14.93 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^7.6 ^16.55 ^-18.75 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-24.76 ^5.63 ^6.19 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-20.06 ^15.86 ^-5.4 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-7.6 ^-16.55 ^18.75 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-20.01 ^-6.74 ^15.42 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^20.06 ^-15.86 ^5.4 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^7.7 ^-20.03 ^14.93 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^20.01 ^6.74 ^-15.42 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^24.76 ^-5.63 ^-6.19 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-16.82 ^7.22 ^-18.66 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-24.42 ^-9.32 ^0.09 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-4.36 ^-25.18 ^5.49 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^15.65 ^-18.44 ^-9.92 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^7.95 ^1.59 ^-24.85 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-19.51 ^-8.34 ^-15.27 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-7.15 ^-4.17 ^-24.8 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^-14.75 ^-20.72 ^-6.04 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^0.55 ^-24.2 ^-9.87 0.473 0.473 0.473 0.0 3 force @a[distance=..64] +particle flash ^5.25 ^-13.97 ^-21.46 0.473 0.473 0.473 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_035.mcfunction new file mode 100644 index 000000000..ebccf07be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_035.mcfunction @@ -0,0 +1,48 @@ +# frame 95 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:30.99d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.685 0.2 +# Explosion--02_Particle1 +particle flash ^-15.1 ^13.87 ^16.54 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^0.82 ^-6.99 ^25.38 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^12.48 ^16.45 ^16.36 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-2.44 ^25.74 ^-5.06 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-23.32 ^8.03 ^-9.26 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-21.3 ^-12.2 ^9.55 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^23.32 ^-8.03 ^9.26 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^21.3 ^12.2 ^-9.55 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-0.82 ^6.99 ^-25.38 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-12.48 ^-16.45 ^-16.36 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^2.44 ^-25.74 ^5.06 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^15.1 ^-13.87 ^-16.54 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-1.54 ^17.83 ^19.33 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-8.39 ^4.04 ^24.64 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^7.82 ^5.56 ^24.53 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-12.04 ^-11.28 ^20.54 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-21.4 ^0.98 ^15.34 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-10.31 ^23.28 ^6.75 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^5.9 ^24.8 ^6.64 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-22.58 ^12.87 ^4.28 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-15.14 ^19.85 ^-8.41 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-26.23 ^-2.46 ^0.17 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^1.92 ^-19.24 ^17.89 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-11.08 ^-22.3 ^8.59 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^21.04 ^4.95 ^15.06 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^14.19 ^-8.83 ^20.36 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^11.08 ^22.3 ^-8.59 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^19.86 ^16.84 ^4.0 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-14.19 ^8.83 ^-20.36 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-1.92 ^19.24 ^-17.89 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-19.86 ^-16.84 ^-4.0 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-21.04 ^-4.95 ^-15.06 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^15.14 ^-19.85 ^8.41 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^26.23 ^2.46 ^-0.17 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^12.04 ^11.28 ^-20.54 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-7.82 ^-5.56 ^-24.53 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^-5.9 ^-24.8 ^-6.64 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^22.58 ^-12.87 ^-4.28 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^10.31 ^-23.28 ^-6.75 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^21.4 ^-0.98 ^-15.34 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^8.39 ^-4.04 ^-24.64 0.478 0.478 0.478 0.0 3 force @a[distance=..64] +particle flash ^1.54 ^-17.83 ^-19.33 0.478 0.478 0.478 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_036.mcfunction new file mode 100644 index 000000000..8199740a9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_036.mcfunction @@ -0,0 +1,48 @@ +# frame 96 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:31.21d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.697 0.2 +# Explosion--02_Particle1 +particle flash ^2.2 ^13.63 ^22.67 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-13.63 ^22.72 ^1.55 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-21.23 ^0.04 ^15.93 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^1.86 ^-14.27 ^22.3 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^23.74 ^-0.44 ^11.86 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^14.16 ^22.42 ^-0.96 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-23.74 ^0.44 ^-11.86 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-14.16 ^-22.42 ^0.96 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^13.63 ^-22.72 ^-1.55 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^21.23 ^-0.04 ^-15.93 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-1.86 ^14.27 ^-22.3 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-2.2 ^-13.63 ^-22.67 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-11.19 ^8.04 ^22.69 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-6.72 ^21.37 ^14.24 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-20.49 ^13.38 ^10.28 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^0.32 ^26.54 ^0.35 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^9.62 ^21.19 ^12.76 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^2.39 ^-0.38 ^26.43 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-11.38 ^-8.36 ^22.47 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^15.24 ^7.75 ^20.29 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^15.05 ^-8.65 ^20.08 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^22.28 ^12.92 ^6.41 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-9.11 ^21.74 ^-12.19 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^7.23 ^21.57 ^-13.67 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-26.43 ^0.28 ^2.39 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-21.96 ^13.61 ^-6.06 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-7.23 ^-21.57 ^13.67 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-20.8 ^-13.16 ^9.93 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^21.96 ^-13.61 ^6.06 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^9.11 ^-21.74 ^12.19 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^20.8 ^13.16 ^-9.93 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^26.43 ^-0.28 ^-2.39 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-15.05 ^8.65 ^-20.08 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-22.28 ^-12.92 ^-6.41 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-0.32 ^-26.54 ^-0.35 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^20.49 ^-13.38 ^-10.28 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^11.38 ^8.36 ^-22.47 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-15.24 ^-7.75 ^-20.29 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-2.39 ^0.38 ^-26.43 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^-9.62 ^-21.19 ^-12.76 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^6.72 ^-21.37 ^-14.24 0.483 0.483 0.483 0.0 3 force @a[distance=..64] +particle flash ^11.19 ^-8.04 ^-22.69 0.483 0.483 0.483 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_037.mcfunction new file mode 100644 index 000000000..09ab2b31e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_037.mcfunction @@ -0,0 +1,48 @@ +# frame 97 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:31.42d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.71 0.2 +# Explosion--02_Particle1 +particle flash ^21.96 ^-14.85 ^-3.43 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^9.04 ^-2.37 ^-25.04 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^22.52 ^13.14 ^-5.87 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^18.45 ^1.32 ^19.29 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^2.45 ^-21.51 ^15.68 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-3.36 ^-23.79 ^-11.72 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-2.45 ^21.51 ^-15.68 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^3.36 ^23.79 ^11.72 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-9.04 ^2.37 ^25.04 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-22.52 ^-13.14 ^5.87 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-18.45 ^-1.32 ^-19.29 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-21.96 ^14.85 ^3.43 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^26.15 ^-1.01 ^-5.47 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^18.22 ^-10.12 ^-16.73 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^18.55 ^6.33 ^-18.17 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^3.34 ^-15.38 ^-21.61 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^10.93 ^-22.71 ^-8.9 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^23.75 ^-7.96 ^9.33 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^24.08 ^8.5 ^7.89 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^14.35 ^-21.37 ^7.2 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^12.29 ^-11.87 ^20.56 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-0.54 ^-26.62 ^2.33 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-5.53 ^-2.17 ^-26.06 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-12.82 ^-14.75 ^-18.23 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^11.8 ^20.37 ^-12.67 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^3.87 ^11.25 ^-23.94 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^12.82 ^14.75 ^18.23 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^15.22 ^21.71 ^3.44 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-3.87 ^-11.25 ^23.94 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^5.53 ^2.17 ^26.06 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-15.22 ^-21.71 ^-3.44 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-11.8 ^-20.37 ^12.67 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-12.29 ^11.87 ^-20.56 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^0.54 ^26.62 ^-2.33 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-3.34 ^15.38 ^21.61 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-18.55 ^-6.33 ^18.17 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-24.08 ^-8.5 ^-7.89 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-14.35 ^21.37 ^-7.2 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-23.75 ^7.96 ^-9.33 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-10.93 ^22.71 ^8.9 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-18.22 ^10.12 ^16.73 0.488 0.488 0.488 0.0 3 force @a[distance=..64] +particle flash ^-26.15 ^1.01 ^5.47 0.488 0.488 0.488 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_038.mcfunction new file mode 100644 index 000000000..02c037fd1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_038.mcfunction @@ -0,0 +1,48 @@ +# frame 98 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:31.63d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.723 0.2 +# Explosion--02_Particle1 +particle flash ^8.78 ^-5.36 ^24.87 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-11.98 ^-20.38 ^12.86 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^14.49 ^-22.47 ^3.07 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^26.36 ^3.18 ^4.41 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^7.23 ^21.12 ^15.03 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-16.47 ^6.56 ^20.25 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-7.23 ^-21.12 ^-15.03 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^16.47 ^-6.56 ^-20.25 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^11.98 ^20.38 ^-12.86 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-14.49 ^22.47 ^-3.07 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-26.36 ^-3.18 ^-4.41 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-8.78 ^5.36 ^-24.87 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^13.68 ^-16.36 ^16.42 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-1.88 ^-15.13 ^22.18 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^1.47 ^-25.19 ^9.36 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-16.72 ^-8.13 ^19.46 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-4.52 ^0.7 ^26.52 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^20.65 ^-1.28 ^17.21 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^24.01 ^-11.34 ^4.39 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^9.41 ^9.26 ^23.45 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^19.74 ^14.29 ^11.43 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-5.43 ^16.27 ^20.74 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-22.53 ^-13.85 ^4.97 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-25.17 ^1.99 ^9.31 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^4.27 ^-25.63 ^-7.03 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-11.29 ^-24.4 ^-1.28 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^25.17 ^-1.99 ^-9.31 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^18.2 ^-17.06 ^-10.1 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^11.29 ^24.4 ^1.28 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^22.53 ^13.85 ^-4.97 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-18.2 ^17.06 ^10.1 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-4.27 ^25.63 ^7.03 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-19.74 ^-14.29 ^-11.43 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^5.43 ^-16.27 ^-20.74 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^16.72 ^8.13 ^-19.46 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-1.47 ^25.19 ^-9.36 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-24.01 ^11.34 ^-4.39 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-9.41 ^-9.26 ^-23.45 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-20.65 ^1.28 ^-17.21 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^4.52 ^-0.7 ^-26.52 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^1.88 ^15.13 ^-22.18 0.493 0.493 0.493 0.0 3 force @a[distance=..64] +particle flash ^-13.68 ^16.36 ^-16.42 0.493 0.493 0.493 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_039.mcfunction new file mode 100644 index 000000000..42c306ddf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_039.mcfunction @@ -0,0 +1,48 @@ +# frame 99 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:31.83d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.735 0.2 +# Explosion--02_Particle1 +particle flash ^-4.92 ^23.89 ^11.78 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^15.33 ^6.33 ^21.42 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^18.57 ^19.38 ^-3.69 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-6.89 ^20.41 ^-16.42 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-25.87 ^8.0 ^0.82 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-12.13 ^-0.7 ^24.21 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^25.87 ^-8.0 ^-0.82 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^12.13 ^0.7 ^-24.21 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-15.33 ^-6.33 ^-21.42 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-18.57 ^-19.38 ^3.69 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^6.89 ^-20.41 ^16.42 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^4.92 ^-23.89 ^-11.78 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^8.02 ^25.44 ^4.75 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^6.12 ^17.77 ^19.51 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^19.92 ^15.11 ^10.42 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^1.88 ^3.31 ^26.82 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-10.02 ^13.63 ^21.15 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-6.94 ^26.04 ^-2.73 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^6.86 ^23.39 ^-11.82 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-18.1 ^18.75 ^7.41 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-19.26 ^16.7 ^-9.17 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-22.34 ^4.29 ^14.71 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^13.06 ^-8.28 ^22.24 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-3.08 ^-12.41 ^23.88 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^26.12 ^6.69 ^-2.65 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^24.21 ^-0.98 ^12.11 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^3.08 ^12.41 ^-23.88 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^18.04 ^11.8 ^-16.4 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-24.21 ^0.98 ^-12.11 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-13.06 ^8.28 ^-22.24 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-18.04 ^-11.8 ^16.4 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-26.12 ^-6.69 ^2.65 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^19.26 ^-16.7 ^9.17 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^22.34 ^-4.29 ^-14.71 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-1.88 ^-3.31 ^-26.82 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-19.92 ^-15.11 ^-10.42 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-6.86 ^-23.39 ^11.82 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^18.1 ^-18.75 ^-7.41 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^6.94 ^-26.04 ^2.73 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^10.02 ^-13.63 ^-21.15 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-6.12 ^-17.77 ^-19.51 0.498 0.498 0.498 0.0 3 force @a[distance=..64] +particle flash ^-8.02 ^-25.44 ^-4.75 0.498 0.498 0.498 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_040.mcfunction new file mode 100644 index 000000000..34c6aa95e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_040.mcfunction @@ -0,0 +1,48 @@ +# frame 100 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.019999999999996d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.748 0.2 +# Explosion--02_Particle1 +particle flash ^-24.57 ^9.71 ^6.71 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-5.03 ^3.11 ^26.61 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-0.86 ^25.6 ^9.34 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-10.69 ^18.72 ^-16.69 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-20.93 ^-8.03 ^-15.51 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-17.44 ^-17.68 ^11.26 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^20.93 ^8.03 ^15.51 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^17.44 ^17.68 ^-11.26 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^5.03 ^-3.11 ^-26.61 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^0.86 ^-25.6 ^-9.34 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^10.69 ^-18.72 ^16.69 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^24.57 ^-9.71 ^-6.71 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-14.95 ^20.75 ^9.43 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-17.4 ^7.53 ^19.59 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-3.46 ^16.87 ^21.13 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-13.2 ^-8.56 ^22.26 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-24.69 ^-4.68 ^10.56 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-20.73 ^16.71 ^-5.87 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-6.79 ^26.05 ^-4.32 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-26.75 ^0.99 ^-5.17 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-18.59 ^6.28 ^-18.93 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-22.55 ^-15.11 ^-2.5 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^3.33 ^-9.18 ^25.45 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-3.97 ^-21.39 ^16.43 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^11.8 ^19.76 ^14.6 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^9.35 ^6.54 ^24.76 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^3.97 ^21.39 ^-16.43 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^9.74 ^25.43 ^-1.13 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-9.35 ^-6.54 ^-24.76 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-3.33 ^9.18 ^-25.45 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-9.74 ^-25.43 ^1.13 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^-11.8 ^-19.76 ^-14.6 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^18.59 ^-6.28 ^18.93 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^22.55 ^15.11 ^2.5 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^13.2 ^8.56 ^-22.26 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^3.46 ^-16.87 ^-21.13 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^6.79 ^-26.05 ^4.32 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^26.75 ^-0.99 ^5.17 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^20.73 ^-16.71 ^5.87 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^24.69 ^4.68 ^-10.56 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^17.4 ^-7.53 ^-19.59 0.503 0.503 0.503 0.0 3 force @a[distance=..64] +particle flash ^14.95 ^-20.75 ^-9.43 0.503 0.503 0.503 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_041.mcfunction new file mode 100644 index 000000000..650ea93fd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_041.mcfunction @@ -0,0 +1,48 @@ +# frame 101 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.2d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.761 0.2 +# Explosion--02_Particle1 +particle flash ^-6.66 ^-26.52 ^-2.13 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^5.99 ^-12.28 ^-23.78 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^20.76 ^-17.92 ^0.34 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^2.72 ^-15.19 ^22.67 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-23.19 ^-7.86 ^12.36 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-21.17 ^-6.06 ^-16.35 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^23.19 ^7.86 ^-12.36 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^21.17 ^6.06 ^16.35 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-5.99 ^12.28 ^23.78 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-20.76 ^17.92 ^-0.34 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-2.72 ^15.19 ^-22.67 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^6.66 ^26.52 ^2.13 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^8.29 ^-26.12 ^-1.05 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-0.39 ^-22.8 ^-15.23 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^15.72 ^-17.75 ^-13.78 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-8.92 ^-10.78 ^-23.59 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-16.35 ^-19.15 ^-10.86 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-2.31 ^-24.51 ^12.07 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^13.8 ^-19.46 ^13.53 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-17.54 ^-20.21 ^6.01 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-12.03 ^-13.54 ^20.59 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-26.07 ^-8.18 ^-2.35 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^1.92 ^1.71 ^-27.3 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-14.04 ^5.37 ^-22.94 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^25.83 ^-5.92 ^-7.06 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^17.15 ^-2.6 ^-21.24 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^14.04 ^-5.37 ^22.94 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^24.64 ^-6.97 ^9.81 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-17.15 ^2.6 ^21.24 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-1.92 ^-1.71 ^27.3 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-24.64 ^6.97 ^-9.81 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-25.83 ^5.92 ^7.06 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^12.03 ^13.54 ^-20.59 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^26.07 ^8.18 ^2.35 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^8.92 ^10.78 ^23.59 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-15.72 ^17.75 ^13.78 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-13.8 ^19.46 ^-13.53 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^17.54 ^20.21 ^-6.01 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^2.31 ^24.51 ^-12.07 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^16.35 ^19.15 ^10.86 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^0.39 ^22.8 ^15.23 0.507 0.507 0.507 0.0 3 force @a[distance=..64] +particle flash ^-8.29 ^26.12 ^1.05 0.507 0.507 0.507 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_042.mcfunction new file mode 100644 index 000000000..319c2881a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_042.mcfunction @@ -0,0 +1,48 @@ +# frame 102 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.370000000000005d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.773 0.2 +# Explosion--02_Particle1 +particle flash ^21.78 ^-13.74 ^9.87 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-5.19 ^-24.12 ^12.33 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^7.49 ^-22.73 ^-13.71 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^23.28 ^1.58 ^-14.71 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^20.36 ^15.21 ^10.72 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^2.76 ^-0.67 ^27.43 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-20.36 ^-15.21 ^-10.72 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-2.76 ^0.67 ^-27.43 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^5.19 ^24.12 ^-12.33 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-7.49 ^22.73 ^13.71 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-23.28 ^-1.58 ^14.71 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-21.78 ^13.74 ^-9.87 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^17.21 ^-21.44 ^-2.26 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^9.75 ^-22.25 ^13.05 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^1.35 ^-27.54 ^-0.81 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-1.42 ^-14.57 ^23.37 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^14.43 ^-8.47 ^21.93 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^26.48 ^-7.15 ^-2.84 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^18.09 ^-12.43 ^-16.7 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^24.77 ^0.86 ^12.1 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^25.65 ^9.87 ^-2.34 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^13.59 ^8.54 ^22.43 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-16.73 ^-15.1 ^15.89 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-12.06 ^-1.32 ^24.77 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-7.56 ^-22.3 ^-14.36 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-15.02 ^-23.12 ^0.95 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^12.06 ^1.32 ^-24.77 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^2.78 ^-12.96 ^-24.18 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^15.02 ^23.12 ^-0.95 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^16.73 ^15.1 ^-15.89 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-2.78 ^12.96 ^24.18 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^7.56 ^22.3 ^14.36 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-25.65 ^-9.87 ^2.34 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-13.59 ^-8.54 ^-22.43 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^1.42 ^14.57 ^-23.37 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-1.35 ^27.54 ^0.81 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-18.09 ^12.43 ^16.7 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-24.77 ^-0.86 ^-12.1 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-26.48 ^7.15 ^2.84 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-14.43 ^8.47 ^-21.93 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-9.75 ^22.25 ^-13.05 0.512 0.512 0.512 0.0 3 force @a[distance=..64] +particle flash ^-17.21 ^21.44 ^2.26 0.512 0.512 0.512 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_043.mcfunction new file mode 100644 index 000000000..8bccf2274 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_043.mcfunction @@ -0,0 +1,48 @@ +# frame 103 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.54d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.786 0.2 +# Explosion--02_Particle1 +particle flash ^-11.47 ^-2.97 ^25.07 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-2.08 ^22.91 ^15.48 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-25.47 ^10.47 ^3.3 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-20.75 ^-18.28 ^2.06 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^5.55 ^-23.6 ^13.46 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^17.09 ^1.86 ^21.76 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-5.55 ^23.6 ^-13.46 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-17.09 ^-1.86 ^-21.76 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^2.08 ^-22.91 ^-15.48 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^25.47 ^-10.47 ^-3.3 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^20.75 ^18.28 ^-2.06 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^11.47 ^2.97 ^-25.07 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-21.71 ^4.41 ^16.68 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-7.97 ^11.72 ^23.83 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-16.19 ^19.62 ^11.04 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^8.82 ^14.56 ^21.89 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^3.3 ^-0.65 ^27.52 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-18.94 ^-12.49 ^15.94 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-27.16 ^-4.59 ^3.15 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-3.48 ^-15.61 ^22.65 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-8.93 ^-24.61 ^9.12 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^13.31 ^-12.78 ^20.7 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^10.97 ^24.21 ^7.89 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^22.24 ^11.84 ^11.58 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-18.23 ^20.02 ^-5.97 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-4.49 ^27.34 ^1.18 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-22.24 ^-11.84 ^-11.58 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-25.01 ^5.06 ^-10.85 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^4.49 ^-27.34 ^-1.18 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-10.97 ^-24.21 ^-7.89 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^25.01 ^-5.06 ^10.85 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^18.23 ^-20.02 ^5.97 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^8.93 ^24.61 ^-9.12 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-13.31 ^12.78 ^-20.7 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-8.82 ^-14.56 ^-21.89 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^16.19 ^-19.62 ^-11.04 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^27.16 ^4.59 ^-3.15 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^3.48 ^15.61 ^-22.65 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^18.94 ^12.49 ^-15.94 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^-3.3 ^0.65 ^-27.52 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^7.97 ^-11.72 ^-23.83 0.517 0.517 0.517 0.0 3 force @a[distance=..64] +particle flash ^21.71 ^-4.41 ^-16.68 0.517 0.517 0.517 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_044.mcfunction new file mode 100644 index 000000000..4b13700b6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_044.mcfunction @@ -0,0 +1,48 @@ +# frame 104 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.7d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.798 0.2 +# Explosion--02_Particle1 +particle flash ^-17.88 ^16.67 ^13.4 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-20.4 ^-12.52 ^14.28 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^2.02 ^0.67 ^27.79 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^10.6 ^23.23 ^11.17 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-6.52 ^23.99 ^-12.6 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-25.67 ^1.9 ^-10.68 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^6.52 ^-23.99 ^12.6 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^25.67 ^-1.9 ^10.68 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^20.4 ^12.52 ^-14.28 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-2.02 ^-0.67 ^-27.79 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-10.6 ^-23.23 ^-11.17 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^17.88 ^-16.67 ^-13.4 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-9.32 ^10.19 ^24.21 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-22.5 ^2.44 ^16.27 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-10.8 ^-6.97 ^24.73 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-27.08 ^-6.24 ^2.12 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-25.6 ^10.91 ^1.6 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-4.28 ^23.45 ^14.44 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^7.42 ^14.05 ^22.9 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-14.34 ^23.9 ^0.47 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^2.4 ^27.76 ^-0.84 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-18.92 ^15.22 ^-13.69 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-18.22 ^-21.01 ^1.83 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-21.32 ^-12.54 ^-12.85 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^5.02 ^-13.71 ^23.74 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-8.16 ^-21.46 ^15.8 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^21.32 ^12.54 ^12.85 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^16.28 ^-0.72 ^22.61 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^8.16 ^21.46 ^-15.8 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^18.22 ^21.01 ^-1.83 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-16.28 ^0.72 ^-22.61 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-5.02 ^13.71 ^-23.74 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-2.4 ^-27.76 ^0.84 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^18.92 ^-15.22 ^13.69 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^27.08 ^6.24 ^-2.12 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^10.8 ^6.97 ^-24.73 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^-7.42 ^-14.05 ^-22.9 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^14.34 ^-23.9 ^-0.47 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^4.28 ^-23.45 ^-14.44 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^25.6 ^-10.91 ^-1.6 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^22.5 ^-2.44 ^-16.27 0.522 0.522 0.522 0.0 3 force @a[distance=..64] +particle flash ^9.32 ^-10.19 ^-24.21 0.522 0.522 0.522 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_045.mcfunction new file mode 100644 index 000000000..22cc29310 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_045.mcfunction @@ -0,0 +1,48 @@ +# frame 105 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.85d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.811 0.2 +# Explosion--02_Particle1 +particle flash ^-1.92 ^23.17 ^-15.62 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-20.31 ^18.05 ^6.8 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^8.06 ^23.95 ^12.08 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^24.1 ^11.07 ^-8.99 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^5.66 ^-2.78 ^-27.29 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-21.79 ^1.53 ^-17.53 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-5.66 ^2.78 ^27.29 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^21.79 ^-1.53 ^17.53 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^20.31 ^-18.05 ^-6.8 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-8.06 ^-23.95 ^-12.08 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-24.1 ^-11.07 ^8.99 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^1.92 ^-23.17 ^15.62 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^3.61 ^27.69 ^-2.08 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-13.06 ^24.23 ^-5.18 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-7.2 ^24.68 ^11.1 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-24.74 ^11.5 ^-6.3 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-13.93 ^14.52 ^-19.48 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^13.04 ^20.13 ^-14.46 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^18.9 ^20.58 ^1.82 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^2.2 ^11.98 ^-25.22 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^17.49 ^4.87 ^-21.32 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-9.48 ^-0.74 ^-26.34 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-26.1 ^4.1 ^9.28 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-26.98 ^-5.61 ^-5.02 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^1.41 ^15.71 ^23.14 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-15.26 ^12.24 ^20.04 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^26.98 ^5.61 ^5.02 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^17.54 ^13.18 ^17.4 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^15.26 ^-12.24 ^-20.04 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^26.1 ^-4.1 ^-9.28 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-17.54 ^-13.18 ^-17.4 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-1.41 ^-15.71 ^-23.14 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-17.49 ^-4.87 ^21.32 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^9.48 ^0.74 ^26.34 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^24.74 ^-11.5 ^6.3 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^7.2 ^-24.68 ^-11.1 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-18.9 ^-20.58 ^-1.82 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-2.2 ^-11.98 ^25.22 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-13.04 ^-20.13 ^14.46 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^13.93 ^-14.52 ^19.48 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^13.06 ^-24.23 ^5.18 0.527 0.527 0.527 0.0 3 force @a[distance=..64] +particle flash ^-3.61 ^-27.69 ^2.08 0.527 0.527 0.527 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_046.mcfunction new file mode 100644 index 000000000..7525efb38 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_046.mcfunction @@ -0,0 +1,48 @@ +# frame 106 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:32.989999999999995d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.824 0.2 +# Explosion--02_Particle1 +particle flash ^21.17 ^-7.92 ^-16.76 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^2.24 ^-27.54 ^-5.28 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-6.96 ^-8.45 ^-25.92 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^6.54 ^17.43 ^-21.1 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^24.08 ^14.33 ^2.52 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^21.42 ^-13.47 ^12.3 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-24.08 ^-14.33 ^-2.52 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-21.42 ^13.47 ^-12.3 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-2.24 ^27.54 ^5.28 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^6.96 ^8.45 ^25.92 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-6.54 ^-17.43 ^21.1 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-21.17 ^7.92 ^16.76 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^8.35 ^-9.62 ^-25.08 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^13.76 ^-20.84 ^-12.95 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-2.77 ^-21.16 ^-18.34 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^13.91 ^-24.1 ^4.13 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^25.03 ^-12.57 ^-2.62 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^16.29 ^5.59 ^-22.25 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-0.24 ^5.27 ^-27.63 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^26.59 ^3.77 ^-8.37 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^18.0 ^18.66 ^-10.92 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^26.75 ^0.51 ^8.71 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-2.53 ^-26.43 ^9.3 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^8.75 ^-18.16 ^19.63 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-18.24 ^-13.39 ^-16.72 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-12.84 ^-24.61 ^-4.58 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-8.75 ^18.16 ^-19.63 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-16.68 ^2.95 ^-22.46 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^12.84 ^24.61 ^4.58 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^2.53 ^26.43 ^-9.3 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^16.68 ^-2.95 ^22.46 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^18.24 ^13.39 ^16.72 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-18.0 ^-18.66 ^10.92 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-26.75 ^-0.51 ^-8.71 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-13.91 ^24.1 ^-4.13 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^2.77 ^21.16 ^18.34 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^0.24 ^-5.27 ^27.63 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-26.59 ^-3.77 ^8.37 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-16.29 ^-5.59 ^22.25 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-25.03 ^12.57 ^2.62 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-13.76 ^20.84 ^12.95 0.532 0.532 0.532 0.0 3 force @a[distance=..64] +particle flash ^-8.35 ^9.62 ^25.08 0.532 0.532 0.532 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_047.mcfunction new file mode 100644 index 000000000..3eb727b13 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_047.mcfunction @@ -0,0 +1,48 @@ +# frame 107 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.129999999999995d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.836 0.2 +# Explosion--02_Particle1 +particle flash ^-12.48 ^-11.8 ^-22.43 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-28.23 ^0.86 ^-0.66 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-11.67 ^17.66 ^-18.7 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^13.3 ^2.77 ^-24.77 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^12.18 ^-23.24 ^-10.47 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-13.49 ^-24.43 ^4.43 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-12.18 ^23.24 ^10.47 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^13.49 ^24.43 ^-4.43 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^28.23 ^-0.86 ^0.66 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^11.67 ^-17.66 ^18.7 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-13.3 ^-2.77 ^24.77 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^12.48 ^11.8 ^22.43 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-14.2 ^3.45 ^-24.18 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-23.93 ^-6.43 ^-13.57 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-23.46 ^10.89 ^-11.38 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-24.52 ^-13.85 ^2.22 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-15.26 ^-21.29 ^-10.58 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^0.48 ^-5.3 ^-27.75 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^0.96 ^12.01 ^-25.55 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-0.18 ^-20.59 ^-19.34 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^14.98 ^-12.03 ^-20.71 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-0.77 ^-28.02 ^-3.55 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-24.41 ^-1.13 ^14.17 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-15.75 ^-15.99 ^17.17 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-14.02 ^24.04 ^-4.84 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-23.75 ^14.16 ^5.77 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^15.75 ^15.99 ^-17.17 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^1.07 ^24.74 ^-13.6 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^23.75 ^-14.16 ^-5.77 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^24.41 ^1.13 ^-14.17 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-1.07 ^-24.74 ^13.6 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^14.02 ^-24.04 ^4.84 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-14.98 ^12.03 ^20.71 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^0.77 ^28.02 ^3.55 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^24.52 ^13.85 ^-2.22 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^23.46 ^-10.89 ^11.38 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-0.96 ^-12.01 ^25.55 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^0.18 ^20.59 ^19.34 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^-0.48 ^5.3 ^27.75 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^15.26 ^21.29 ^10.58 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^23.93 ^6.43 ^13.57 0.537 0.537 0.537 0.0 3 force @a[distance=..64] +particle flash ^14.2 ^-3.45 ^24.18 0.537 0.537 0.537 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_048.mcfunction new file mode 100644 index 000000000..aee2153c2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_048.mcfunction @@ -0,0 +1,48 @@ +# frame 108 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.25d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.849 0.2 +# Explosion--02_Particle1 +particle flash ^26.27 ^-9.78 ^4.34 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^20.01 ^8.96 ^-18.0 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^18.9 ^18.51 ^10.23 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^7.91 ^-3.56 ^27.0 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^2.22 ^-26.76 ^9.14 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^9.7 ^-19.02 ^-18.67 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-2.22 ^26.76 ^-9.14 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-9.7 ^19.02 ^18.67 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-20.01 ^-8.96 ^18.0 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-18.9 ^-18.51 ^-10.23 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-7.91 ^3.56 ^-27.0 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-26.27 ^9.78 ^-4.34 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^26.55 ^5.13 ^8.56 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^27.2 ^-0.49 ^-8.03 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^22.87 ^16.14 ^-4.57 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^17.46 ^-5.92 ^-21.56 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^21.14 ^-16.93 ^-8.42 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^20.09 ^-7.84 ^18.42 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^15.76 ^8.79 ^21.88 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^16.75 ^-21.48 ^7.92 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^5.96 ^-17.82 ^21.25 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^7.01 ^-26.91 ^-5.6 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^7.11 ^7.36 ^-26.45 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^1.05 ^-9.09 ^-26.85 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^9.8 ^26.61 ^0.64 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^10.45 ^20.99 ^-15.96 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-1.05 ^9.09 ^26.85 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^5.41 ^22.06 ^16.99 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-10.45 ^-20.99 ^15.96 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-7.11 ^-7.36 ^26.45 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-5.41 ^-22.06 ^-16.99 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-9.8 ^-26.61 ^-0.64 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-5.96 ^17.82 ^-21.25 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-7.01 ^26.91 ^5.6 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-17.46 ^5.92 ^21.56 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-22.87 ^-16.14 ^4.57 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-15.76 ^-8.79 ^-21.88 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-16.75 ^21.48 ^-7.92 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-20.09 ^7.84 ^-18.42 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-21.14 ^16.93 ^8.42 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-27.2 ^0.49 ^8.03 0.542 0.542 0.542 0.0 3 force @a[distance=..64] +particle flash ^-26.55 ^-5.13 ^-8.56 0.542 0.542 0.542 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_049.mcfunction new file mode 100644 index 000000000..eb1834181 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_049.mcfunction @@ -0,0 +1,48 @@ +# frame 109 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.370000000000005d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.861 0.2 +# Explosion--02_Particle1 +particle flash ^-19.85 ^15.27 ^13.53 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-22.06 ^8.91 ^-15.63 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-24.95 ^-12.87 ^4.69 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-5.63 ^-7.43 ^26.9 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^9.2 ^17.71 ^20.3 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-0.95 ^27.81 ^-5.99 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-9.2 ^-17.71 ^-20.3 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^0.95 ^-27.81 ^5.99 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^22.06 ^-8.91 ^15.63 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^24.95 ^12.87 ^-4.69 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^5.63 ^7.43 ^-26.9 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^19.85 ^-15.27 ^-13.53 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-26.34 ^1.41 ^10.71 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-24.63 ^14.21 ^-1.23 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-27.63 ^-2.32 ^-6.43 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-13.52 ^21.59 ^-12.71 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-12.22 ^25.32 ^4.44 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-14.98 ^4.61 ^23.76 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-17.98 ^-11.93 ^18.57 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-6.26 ^19.39 ^19.88 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^2.1 ^6.04 ^27.74 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^4.85 ^26.76 ^8.41 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-9.65 ^9.61 ^-25.0 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^2.75 ^20.72 ^-19.33 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-20.08 ^-17.97 ^-9.17 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-18.38 ^-5.17 ^-21.12 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-2.75 ^-20.72 ^19.33 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-14.11 ^-23.91 ^6.28 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^18.38 ^5.17 ^21.12 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^9.65 ^-9.61 ^25.0 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^14.11 ^23.91 ^-6.28 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^20.08 ^17.97 ^9.17 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-2.1 ^-6.04 ^-27.74 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^-4.85 ^-26.76 ^-8.41 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^13.52 ^-21.59 ^12.71 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^27.63 ^2.32 ^6.43 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^17.98 ^11.93 ^-18.57 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^6.26 ^-19.39 ^-19.88 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^14.98 ^-4.61 ^-23.76 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^12.22 ^-25.32 ^-4.44 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^24.63 ^-14.21 ^1.23 0.546 0.546 0.546 0.0 3 force @a[distance=..64] +particle flash ^26.34 ^-1.41 ^-10.71 0.546 0.546 0.546 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_050.mcfunction new file mode 100644 index 000000000..4a2712b79 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_050.mcfunction @@ -0,0 +1,48 @@ +# frame 110 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.47d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.874 0.2 +# Explosion--02_Particle1 +particle flash ^-12.42 ^10.35 ^23.55 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-3.24 ^-18.19 ^21.78 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^16.93 ^4.04 ^22.65 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^6.03 ^27.09 ^6.77 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-20.88 ^19.09 ^-3.91 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-26.61 ^-8.89 ^5.37 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^20.88 ^-19.09 ^3.91 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^26.61 ^8.89 ^-5.37 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^3.24 ^18.19 ^-21.78 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-16.93 ^-4.04 ^-22.65 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-6.03 ^-27.09 ^-6.77 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^12.42 ^-10.35 ^-23.55 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^2.65 ^8.46 ^27.15 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-9.2 ^-4.61 ^26.64 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^8.05 ^-8.32 ^26.11 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-17.54 ^-15.92 ^15.96 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-22.94 ^0.85 ^17.0 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-3.76 ^22.0 ^17.82 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^13.49 ^18.3 ^17.29 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-19.57 ^17.3 ^11.54 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-8.73 ^27.14 ^1.68 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-27.91 ^5.99 ^0.86 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-5.44 ^-26.61 ^8.82 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-19.18 ^-21.15 ^-0.82 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^22.22 ^-8.85 ^15.61 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^10.37 ^-21.92 ^15.1 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^19.18 ^21.15 ^0.82 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^25.59 ^7.6 ^10.16 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-10.37 ^21.92 ^-15.1 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^5.44 ^26.61 ^-8.82 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-25.59 ^-7.6 ^-10.16 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-22.22 ^8.85 ^-15.61 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^8.73 ^-27.14 ^-1.68 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^27.91 ^-5.99 ^-0.86 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^17.54 ^15.92 ^-15.96 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-8.05 ^8.32 ^-26.11 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-13.49 ^-18.3 ^-17.29 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^19.57 ^-17.3 ^-11.54 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^3.76 ^-22.0 ^-17.82 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^22.94 ^-0.85 ^-17.0 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^9.2 ^4.61 ^-26.64 0.551 0.551 0.551 0.0 3 force @a[distance=..64] +particle flash ^-2.65 ^-8.46 ^-27.15 0.551 0.551 0.551 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_051.mcfunction new file mode 100644 index 000000000..4c56fa91a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_051.mcfunction @@ -0,0 +1,48 @@ +# frame 111 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.57d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.887 0.2 +# Explosion--02_Particle1 +particle flash ^-27.09 ^3.65 ^-8.56 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-16.32 ^17.2 ^16.09 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-6.58 ^25.55 ^-11.17 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-4.5 ^0.85 ^-28.28 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-12.94 ^-22.77 ^-11.6 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-20.25 ^-12.67 ^15.82 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^12.94 ^22.77 ^11.6 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^20.25 ^12.67 ^-15.82 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^16.32 ^-17.2 ^-16.09 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^6.58 ^-25.55 ^11.17 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^4.5 ^-0.85 ^28.28 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^27.09 ^-3.65 ^8.56 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-19.79 ^17.16 ^-11.6 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-25.52 ^12.25 ^4.42 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-13.46 ^25.12 ^2.89 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-21.49 ^2.66 ^18.75 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-27.83 ^-5.3 ^4.26 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-18.57 ^2.64 ^-21.66 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-6.51 ^15.52 ^-23.19 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-23.53 ^-11.24 ^-11.85 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-10.25 ^-12.89 ^-23.44 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-19.51 ^-20.83 ^2.48 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-6.95 ^9.61 ^26.08 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-9.26 ^-7.94 ^25.92 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^3.74 ^28.4 ^0.26 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-1.98 ^23.49 ^16.28 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^9.26 ^7.94 ^-25.92 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^8.03 ^22.46 ^-15.86 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^1.98 ^-23.49 ^-16.28 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^6.95 ^-9.61 ^-26.08 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-8.03 ^-22.46 ^15.86 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^-3.74 ^-28.4 ^-0.26 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^10.25 ^12.89 ^23.44 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^19.51 ^20.83 ^-2.48 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^21.49 ^-2.66 ^-18.75 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^13.46 ^-25.12 ^-2.89 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^6.51 ^-15.52 ^23.19 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^23.53 ^11.24 ^11.85 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^18.57 ^-2.64 ^21.66 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^27.83 ^5.3 ^-4.26 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^25.52 ^-12.25 ^-4.42 0.556 0.556 0.556 0.0 3 force @a[distance=..64] +particle flash ^19.79 ^-17.16 ^11.6 0.556 0.556 0.556 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_052.mcfunction new file mode 100644 index 000000000..ecf9b0572 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_052.mcfunction @@ -0,0 +1,48 @@ +# frame 112 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.66d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.899 0.2 +# Explosion--02_Particle1 +particle flash ^23.78 ^13.59 ^8.65 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^20.09 ^4.71 ^-19.98 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^3.22 ^27.15 ^-8.83 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-3.41 ^20.46 ^19.87 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^9.38 ^-6.1 ^26.46 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^23.9 ^-15.83 ^1.83 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-9.38 ^6.1 ^-26.46 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-23.9 ^15.83 ^-1.83 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-20.09 ^-4.71 ^19.98 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-3.22 ^-27.15 ^8.83 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^3.41 ^-20.46 ^-19.87 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-23.78 ^-13.59 ^-8.65 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^15.87 ^23.94 ^-0.11 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^25.79 ^10.76 ^-6.66 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^13.7 ^18.73 ^-16.94 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^25.86 ^-6.53 ^-10.67 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^28.03 ^-1.32 ^6.16 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^11.98 ^20.02 ^16.76 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-0.11 ^27.98 ^6.49 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^19.49 ^4.4 ^20.64 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^3.51 ^8.44 ^27.23 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^19.56 ^-12.89 ^16.63 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^13.81 ^-9.26 ^-23.43 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^16.05 ^-21.33 ^-10.61 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-3.62 ^19.54 ^-20.74 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^6.3 ^6.36 ^-27.3 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-16.05 ^21.33 ^10.61 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-12.16 ^25.26 ^-6.27 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-6.3 ^-6.36 ^27.3 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-13.81 ^9.26 ^23.43 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^12.16 ^-25.26 ^6.27 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^3.62 ^-19.54 ^20.74 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-3.51 ^-8.44 ^-27.23 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-19.56 ^12.89 ^-16.63 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-25.86 ^6.53 ^10.67 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-13.7 ^-18.73 ^16.94 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^0.11 ^-27.98 ^-6.49 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-19.49 ^-4.4 ^-20.64 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-11.98 ^-20.02 ^-16.76 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-28.03 ^1.32 ^-6.16 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-25.79 ^-10.76 ^6.66 0.561 0.561 0.561 0.0 3 force @a[distance=..64] +particle flash ^-15.87 ^-23.94 ^0.11 0.561 0.561 0.561 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_053.mcfunction new file mode 100644 index 000000000..c11a91b08 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_053.mcfunction @@ -0,0 +1,48 @@ +# frame 113 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.74d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.912 0.2 +# Explosion--02_Particle1 +particle flash ^15.74 ^22.67 ^8.23 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^27.14 ^-5.38 ^7.98 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^20.69 ^8.57 ^-18.1 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-4.62 ^24.69 ^-14.08 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-13.82 ^20.7 ^14.49 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^5.81 ^2.11 ^28.12 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^13.82 ^-20.7 ^-14.49 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-5.81 ^-2.11 ^-28.12 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-27.14 ^5.38 ^-7.98 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-20.69 ^-8.57 ^18.1 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^4.62 ^-24.69 ^14.08 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-15.74 ^-22.67 ^-8.23 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^21.41 ^18.36 ^-5.8 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^25.2 ^10.16 ^9.53 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^28.11 ^1.87 ^-5.95 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^19.37 ^-1.92 ^21.22 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^12.67 ^14.56 ^21.37 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^6.53 ^27.83 ^-3.44 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^9.44 ^19.55 ^-18.92 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^1.13 ^25.49 ^13.35 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-10.84 ^26.68 ^0.24 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-4.71 ^13.41 ^25.05 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^18.67 ^-17.68 ^12.97 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^6.13 ^-13.27 ^24.81 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^20.28 ^-7.13 ^-19.16 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^24.07 ^-15.33 ^-3.82 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-6.13 ^13.27 ^-24.81 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^8.75 ^3.79 ^-27.17 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-24.07 ^15.33 ^3.82 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-18.67 ^17.68 ^-12.97 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-8.75 ^-3.79 ^27.17 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-20.28 ^7.13 ^19.16 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^10.84 ^-26.68 ^-0.24 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^4.71 ^-13.41 ^-25.05 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-19.37 ^1.92 ^-21.22 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-28.11 ^-1.87 ^5.95 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-9.44 ^-19.55 ^18.92 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-1.13 ^-25.49 ^-13.35 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-6.53 ^-27.83 ^3.44 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-12.67 ^-14.56 ^-21.37 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-25.2 ^-10.16 ^-9.53 0.566 0.566 0.566 0.0 3 force @a[distance=..64] +particle flash ^-21.41 ^-18.36 ^5.8 0.566 0.566 0.566 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_054.mcfunction new file mode 100644 index 000000000..41d448d7c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_054.mcfunction @@ -0,0 +1,48 @@ +# frame 114 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.8d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.924 0.2 +# Explosion--02_Particle1 +particle flash ^-1.64 ^-25.94 ^-12.53 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^11.68 ^-22.08 ^14.46 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-18.38 ^-18.88 ^11.77 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-24.05 ^-5.62 ^-14.93 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^2.5 ^-0.63 ^-28.74 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^24.58 ^-10.8 ^-10.58 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-2.5 ^0.63 ^28.74 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-24.58 ^10.8 ^10.58 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-11.68 ^22.08 ^-14.46 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^18.38 ^18.88 ^-11.77 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^24.05 ^5.62 ^14.93 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^1.64 ^25.94 ^12.53 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-11.77 ^-26.35 ^-0.45 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^5.9 ^-28.23 ^1.13 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-3.94 ^-24.07 ^15.41 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^21.31 ^-19.32 ^2.28 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^13.48 ^-21.6 ^-13.59 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-15.1 ^-18.55 ^-16.14 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-24.94 ^-14.4 ^-1.86 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^0.51 ^-15.62 ^-24.26 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-12.66 ^-3.67 ^-25.67 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^15.92 ^-6.72 ^-23.11 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^21.0 ^-9.67 ^17.27 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^28.58 ^-3.04 ^2.55 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-12.27 ^-10.73 ^23.81 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^5.39 ^-12.61 ^25.39 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-28.58 ^3.04 ^-2.55 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-25.25 ^-4.75 ^13.14 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-5.39 ^12.61 ^-25.39 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-21.0 ^9.67 ^-17.27 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^25.25 ^4.75 ^-13.14 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^12.27 ^10.73 ^-23.81 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^12.66 ^3.67 ^25.67 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-15.92 ^6.72 ^23.11 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-21.31 ^19.32 ^-2.28 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^3.94 ^24.07 ^-15.41 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^24.94 ^14.4 ^1.86 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-0.51 ^15.62 ^24.26 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^15.1 ^18.55 ^16.14 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-13.48 ^21.6 ^13.59 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^-5.9 ^28.23 ^-1.13 0.571 0.571 0.571 0.0 3 force @a[distance=..64] +particle flash ^11.77 ^26.35 ^0.45 0.571 0.571 0.571 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_055.mcfunction new file mode 100644 index 000000000..6656e88a4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_055.mcfunction @@ -0,0 +1,48 @@ +# frame 115 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.86d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.937 0.2 +# Explosion--02_Particle1 +particle flash ^-28.19 ^-2.21 ^6.03 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-8.59 ^10.29 ^25.61 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-15.27 ^24.54 ^-0.39 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-18.27 ^3.51 ^-22.13 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-13.44 ^-23.74 ^-9.56 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-7.46 ^-19.55 ^19.95 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^13.44 ^23.74 ^9.56 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^7.46 ^19.55 ^-19.95 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^8.59 ^-10.29 ^-25.61 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^15.27 ^-24.54 ^0.39 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^18.27 ^-3.51 ^22.13 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^28.19 ^2.21 ^-6.03 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-25.54 ^13.12 ^3.31 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-21.62 ^4.75 ^18.6 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-14.03 ^20.48 ^14.82 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-9.43 ^-5.44 ^26.78 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-20.95 ^-12.79 ^15.27 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-27.31 ^0.76 ^-9.46 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-19.72 ^16.49 ^-13.24 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-24.47 ^-15.26 ^-2.07 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-18.64 ^-11.9 ^-18.62 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-12.28 ^-25.45 ^6.11 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^5.69 ^3.99 ^28.06 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^6.36 ^-13.55 ^24.73 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-1.08 ^28.38 ^5.39 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^2.85 ^20.01 ^20.67 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-6.36 ^13.55 ^-24.73 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-4.59 ^25.92 ^-11.96 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-2.85 ^-20.01 ^-20.67 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^-5.69 ^-3.99 ^-28.06 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^4.59 ^-25.92 ^11.96 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^1.08 ^-28.38 ^-5.39 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^18.64 ^11.9 ^18.62 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^12.28 ^25.45 ^-6.11 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^9.43 ^5.44 ^-26.78 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^14.03 ^-20.48 ^-14.82 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^19.72 ^-16.49 ^13.24 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^24.47 ^15.26 ^2.07 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^27.31 ^-0.76 ^9.46 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^20.95 ^12.79 ^-15.27 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^21.62 ^-4.75 ^-18.6 0.576 0.576 0.576 0.0 3 force @a[distance=..64] +particle flash ^25.54 ^-13.12 ^-3.31 0.576 0.576 0.576 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_056.mcfunction new file mode 100644 index 000000000..5f52a87de --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_056.mcfunction @@ -0,0 +1,48 @@ +# frame 116 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.91d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.95 0.2 +# Explosion--02_Particle1 +particle flash ^27.28 ^9.37 ^-2.56 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^15.41 ^-10.85 ^-21.97 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^5.52 ^17.93 ^-22.05 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^4.86 ^27.73 ^6.77 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^14.34 ^4.99 ^24.65 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^20.86 ^-18.85 ^6.89 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-14.34 ^-4.99 ^-24.65 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-20.86 ^18.85 ^-6.89 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-15.41 ^10.85 ^21.97 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-5.52 ^-17.93 ^22.05 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-4.86 ^-27.73 ^-6.77 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-27.28 ^-9.37 ^2.56 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^19.28 ^16.05 ^-14.46 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^25.09 ^-0.87 ^-14.42 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^12.3 ^4.16 ^-25.88 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^21.32 ^-17.46 ^-8.87 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^28.3 ^-5.58 ^2.55 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^18.89 ^21.8 ^2.48 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^6.1 ^26.84 ^-8.98 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^24.46 ^8.44 ^12.99 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^11.28 ^19.23 ^18.47 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^20.69 ^-8.15 ^18.54 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^6.21 ^-22.68 ^-16.89 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^9.41 ^-27.38 ^0.07 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-5.18 ^7.61 ^-27.45 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^0.63 ^-9.31 ^-27.41 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-9.41 ^27.38 ^-0.07 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-9.02 ^21.62 ^-17.01 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-0.63 ^9.31 ^27.41 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-6.21 ^22.68 ^16.89 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^9.02 ^-21.62 ^17.01 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^5.18 ^-7.61 ^27.45 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-11.28 ^-19.23 ^-18.47 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-20.69 ^8.15 ^-18.54 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-21.32 ^17.46 ^8.87 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-12.3 ^-4.16 ^25.88 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-6.1 ^-26.84 ^8.98 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-24.46 ^-8.44 ^-12.99 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-18.89 ^-21.8 ^-2.48 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-28.3 ^5.58 ^-2.55 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-25.09 ^0.87 ^14.42 0.581 0.581 0.581 0.0 3 force @a[distance=..64] +particle flash ^-19.28 ^-16.05 ^14.46 0.581 0.581 0.581 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_057.mcfunction new file mode 100644 index 000000000..db3d01bfc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_057.mcfunction @@ -0,0 +1,48 @@ +# frame 117 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.95d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.962 0.2 +# Explosion--02_Particle1 +particle flash ^-15.15 ^-24.55 ^2.82 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-1.86 ^-16.85 ^-23.51 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^15.24 ^-24.65 ^0.48 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^1.92 ^-13.55 ^25.55 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-23.41 ^1.1 ^17.05 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-25.75 ^-0.94 ^-13.27 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^23.41 ^-1.1 ^-17.05 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^25.75 ^0.94 ^13.27 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^1.86 ^16.85 ^23.51 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-15.24 ^24.65 ^-0.48 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-1.92 ^13.55 ^-25.55 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^15.15 ^24.55 ^-2.82 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^0.05 ^-28.92 ^1.94 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-10.0 ^-24.34 ^-12.16 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^7.86 ^-24.4 ^-13.53 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-16.23 ^-10.46 ^-21.62 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-24.04 ^-14.98 ^-6.14 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-7.78 ^-22.4 ^16.68 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^10.08 ^-22.46 ^15.3 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-22.67 ^-13.78 ^11.68 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-12.63 ^-7.32 ^25.04 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-28.9 ^0.1 ^2.22 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-2.22 ^-1.94 ^-28.84 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-16.27 ^7.42 ^-22.82 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^22.72 ^-15.14 ^-9.74 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^12.67 ^-10.55 ^-23.84 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^16.27 ^-7.42 ^22.82 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^24.09 ^-13.94 ^8.08 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-12.67 ^10.55 ^23.84 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^2.22 ^1.94 ^28.84 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-24.09 ^13.94 ^-8.08 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-22.72 ^15.14 ^9.74 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^12.63 ^7.32 ^-25.04 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^28.9 ^-0.1 ^-2.22 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^16.23 ^10.46 ^21.62 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-7.86 ^24.4 ^13.53 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-10.08 ^22.46 ^-15.3 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^22.67 ^13.78 ^-11.68 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^7.78 ^22.4 ^-16.68 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^24.04 ^14.98 ^6.14 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^10.0 ^24.34 ^12.16 0.585 0.585 0.585 0.0 3 force @a[distance=..64] +particle flash ^-0.05 ^28.92 ^-1.94 0.585 0.585 0.585 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_058.mcfunction new file mode 100644 index 000000000..14badfd8e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_058.mcfunction @@ -0,0 +1,48 @@ +# frame 118 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.97d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.975 0.2 +# Explosion--02_Particle1 +particle flash ^-28.86 ^-2.06 ^-2.14 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-13.56 ^21.59 ^-13.84 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-10.66 ^-6.1 ^-26.28 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-10.86 ^-26.64 ^-3.73 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-13.89 ^-11.63 ^22.65 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-15.56 ^18.18 ^16.41 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^13.89 ^11.63 ^-22.65 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^15.56 ^-18.18 ^-16.41 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^13.56 ^-21.59 ^13.84 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^10.66 ^6.1 ^26.28 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^10.86 ^26.64 ^3.73 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^28.86 ^2.06 ^2.14 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-23.22 ^-4.8 ^-16.71 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-24.93 ^11.48 ^-9.39 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-14.23 ^9.1 ^-23.58 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-17.11 ^23.38 ^1.51 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-26.11 ^9.47 ^8.38 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-23.35 ^-16.87 ^-3.45 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-12.65 ^-19.25 ^-17.64 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-25.13 ^-8.05 ^12.06 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-14.55 ^-22.5 ^11.12 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-17.31 ^3.85 ^22.96 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-1.58 ^28.35 ^-5.94 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-2.76 ^26.34 ^11.83 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^1.9 ^3.25 ^-28.76 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^0.2 ^19.53 ^-21.45 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^2.76 ^-26.34 ^-11.83 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^2.88 ^-14.27 ^-25.09 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-0.2 ^-19.53 ^21.45 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^1.58 ^-28.35 ^5.94 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-2.88 ^14.27 ^25.09 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^-1.9 ^-3.25 ^28.76 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^14.55 ^22.5 ^-11.12 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^17.31 ^-3.85 ^-22.96 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^17.11 ^-23.38 ^-1.51 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^14.23 ^-9.1 ^23.58 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^12.65 ^19.25 ^17.64 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^25.13 ^8.05 ^-12.06 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^23.35 ^16.87 ^3.45 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^26.11 ^-9.47 ^-8.38 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^24.93 ^-11.48 ^9.39 0.59 0.59 0.59 0.0 3 force @a[distance=..64] +particle flash ^23.22 ^4.8 ^16.71 0.59 0.59 0.59 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_059.mcfunction new file mode 100644 index 000000000..ca84fb818 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_059.mcfunction @@ -0,0 +1,48 @@ +# frame 119 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:33.99d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 1.987 0.2 +# Explosion--02_Particle1 +particle flash ^-12.81 ^25.27 ^6.31 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^16.68 ^20.27 ^12.38 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^7.25 ^22.72 ^-16.54 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-20.11 ^9.39 ^-18.7 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-27.6 ^-1.3 ^8.89 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-4.86 ^5.43 ^28.1 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^27.6 ^1.3 ^-8.89 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^4.86 ^-5.43 ^-28.1 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-16.68 ^-20.27 ^-12.38 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-7.25 ^-22.72 ^16.54 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^20.11 ^-9.39 ^18.7 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^12.81 ^-25.27 ^-6.31 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-3.26 ^28.21 ^-6.01 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^2.28 ^26.77 ^10.99 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^14.07 ^25.27 ^-2.45 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^6.95 ^15.1 ^23.79 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-10.38 ^18.04 ^20.23 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-19.35 ^20.37 ^-7.28 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-7.56 ^18.87 ^-20.72 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-23.75 ^14.09 ^8.94 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-28.05 ^4.76 ^-5.77 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-19.08 ^2.43 ^21.74 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^21.63 ^6.4 ^18.27 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^8.97 ^-2.33 ^27.51 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^20.49 ^14.12 ^-14.95 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^26.03 ^12.68 ^2.05 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-8.97 ^2.33 ^-27.51 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^7.12 ^10.16 ^-26.24 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-26.03 ^-12.68 ^-2.05 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-21.63 ^-6.4 ^-18.27 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-7.12 ^-10.16 ^26.24 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-20.49 ^-14.12 ^14.95 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^28.05 ^-4.76 ^5.77 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^19.08 ^-2.43 ^-21.74 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-6.95 ^-15.1 ^-23.79 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-14.07 ^-25.27 ^2.45 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^7.56 ^-18.87 ^20.72 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^23.75 ^-14.09 ^-8.94 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^19.35 ^-20.37 ^7.28 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^10.38 ^-18.04 ^-20.23 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^-2.28 ^-26.77 ^-10.99 0.595 0.595 0.595 0.0 3 force @a[distance=..64] +particle flash ^3.26 ^-28.21 ^6.01 0.595 0.595 0.595 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_060.mcfunction new file mode 100644 index 000000000..207061153 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/affect/huge_explosion_02/fc_060.mcfunction @@ -0,0 +1,48 @@ +# frame 120 / 120 +### Explosion--00_Damage_and_Sound +data modify storage mob_data: Call set value {Name:"Damage",Player:{DamageType:[Global,Fire,Blast],DeathCause:'[{"translate":"「ベチャリ」%1$sは%2$sの測定不能の強度によりストロベリージャムになった。","with":[{"selector":"@s"},{"storage":"mob_data:","nbt":"MobName","interpret":true}]}]'},Mob:{Fire:25,Ice:25,Light:60},Distance:{Max:34.0d}} +execute positioned ~ ~ ~ run function enemy:ai/call/call +playsound entity.dragon_fireball.explode hostile @a[distance=..64] ~ ~ ~ 0.7 2.0 0.2 +# Explosion--02_Particle1 +particle flash ^6.85 ^28.1 ^-2.52 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^24.35 ^8.66 ^13.21 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^22.52 ^6.38 ^-17.17 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-6.2 ^12.64 ^-25.38 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-22.12 ^18.8 ^-0.08 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-3.24 ^16.34 ^23.78 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^22.12 ^-18.8 ^0.08 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^3.24 ^-16.34 ^-23.78 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-24.35 ^-8.66 ^-13.21 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-22.52 ^-6.38 ^17.17 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^6.2 ^-12.64 ^25.38 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-6.85 ^-28.1 ^2.52 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^17.26 ^20.26 ^-11.58 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^18.34 ^21.61 ^6.28 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^27.55 ^8.84 ^-2.32 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^12.41 ^14.7 ^21.74 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^2.12 ^26.12 ^12.49 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^0.38 ^23.95 ^-16.4 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^9.59 ^11.18 ^-25.01 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-8.97 ^27.57 ^-1.53 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-16.65 ^18.48 ^-14.97 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-14.9 ^20.65 ^13.93 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^17.96 ^-2.34 ^22.69 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^1.74 ^2.17 ^28.9 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^26.24 ^-7.3 ^-10.04 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^27.32 ^-5.96 ^7.81 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-1.74 ^-2.17 ^-28.9 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^15.14 ^-5.85 ^-24.07 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-27.32 ^5.96 ^-7.81 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-17.96 ^2.34 ^-22.69 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-15.14 ^5.85 ^24.07 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-26.24 ^7.3 ^10.04 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^16.65 ^-18.48 ^14.97 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^14.9 ^-20.65 ^-13.93 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-12.41 ^-14.7 ^-21.74 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-27.55 ^-8.84 ^2.32 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-9.59 ^-11.18 ^25.01 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^8.97 ^-27.57 ^1.53 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-0.38 ^-23.95 ^16.4 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-2.12 ^-26.12 ^-12.49 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-18.34 ^-21.61 ^-6.28 0.6 0.6 0.6 0.0 3 force @a[distance=..64] +particle flash ^-17.26 ^-20.26 ^11.58 0.6 0.6 0.6 0.0 3 force @a[distance=..64] diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_001.mcfunction new file mode 100644 index 000000000..32d40d31a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_001.mcfunction @@ -0,0 +1,10 @@ +# frame 1 / 240 +# Sample_01--Circle +particle bubble ^-0.0 ^5.76 ^-1.0 0.001 0.001 0.001 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.0 ^5.76 ^-1.0 0.005 0.005 0.005 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^4.99 ^-2.88 ^-1.0 0.001 0.001 0.001 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^4.99 ^-2.88 ^-1.0 0.005 0.005 0.005 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-4.99 ^-2.88 ^-1.0 0.001 0.001 0.001 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.99 ^-2.88 ^-1.0 0.005 0.005 0.005 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-1.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_002.mcfunction new file mode 100644 index 000000000..ee170e79e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_002.mcfunction @@ -0,0 +1,10 @@ +# frame 2 / 240 +# Sample_01--Circle +particle bubble ^-0.59 ^5.63 ^-0.93 0.002 0.002 0.002 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.59 ^5.63 ^-0.93 0.01 0.01 0.01 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^5.17 ^-2.3 ^-0.93 0.002 0.002 0.002 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^5.17 ^-2.3 ^-0.93 0.01 0.01 0.01 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-4.58 ^-3.33 ^-0.93 0.002 0.002 0.002 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.58 ^-3.33 ^-0.93 0.01 0.01 0.01 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.93 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_003.mcfunction new file mode 100644 index 000000000..c5da8c2bf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_003.mcfunction @@ -0,0 +1,10 @@ +# frame 3 / 240 +# Sample_01--Circle +particle bubble ^-1.16 ^5.44 ^-0.86 0.003 0.003 0.003 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.16 ^5.44 ^-0.86 0.015 0.015 0.015 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^5.3 ^-1.72 ^-0.86 0.003 0.003 0.003 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^5.3 ^-1.72 ^-0.86 0.015 0.015 0.015 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-4.13 ^-3.73 ^-0.86 0.003 0.003 0.003 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.13 ^-3.73 ^-0.86 0.015 0.015 0.015 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.86 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_004.mcfunction new file mode 100644 index 000000000..af192737a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_004.mcfunction @@ -0,0 +1,10 @@ +# frame 4 / 240 +# Sample_01--Circle +particle bubble ^-1.7 ^5.2 ^-0.79 0.004 0.004 0.004 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.7 ^5.2 ^-0.79 0.02 0.02 0.02 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^5.35 ^-1.13 ^-0.79 0.004 0.004 0.004 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^5.35 ^-1.13 ^-0.79 0.02 0.02 0.02 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-3.66 ^-4.07 ^-0.79 0.004 0.004 0.004 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.66 ^-4.07 ^-0.79 0.02 0.02 0.02 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.79 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_005.mcfunction new file mode 100644 index 000000000..8d580fa06 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_005.mcfunction @@ -0,0 +1,10 @@ +# frame 5 / 240 +# Sample_01--Circle +particle bubble ^-2.19 ^4.91 ^-0.73 0.005 0.005 0.005 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.19 ^4.91 ^-0.73 0.025 0.025 0.025 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^5.35 ^-0.55 ^-0.73 0.005 0.005 0.005 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^5.35 ^-0.55 ^-0.73 0.025 0.025 0.025 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-3.15 ^-4.35 ^-0.73 0.005 0.005 0.005 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.15 ^-4.35 ^-0.73 0.025 0.025 0.025 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.73 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_006.mcfunction new file mode 100644 index 000000000..5063b7f4e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_006.mcfunction @@ -0,0 +1,10 @@ +# frame 6 / 240 +# Sample_01--Circle +particle bubble ^-2.65 ^4.57 ^-0.67 0.006 0.006 0.006 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.65 ^4.57 ^-0.67 0.03 0.03 0.03 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^5.28 ^0.01 ^-0.67 0.006 0.006 0.006 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^5.28 ^0.01 ^-0.67 0.03 0.03 0.03 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.63 ^-4.58 ^-0.67 0.006 0.006 0.006 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.63 ^-4.58 ^-0.67 0.03 0.03 0.03 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.67 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_007.mcfunction new file mode 100644 index 000000000..816e99ddc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_007.mcfunction @@ -0,0 +1,10 @@ +# frame 7 / 240 +# Sample_01--Circle +particle bubble ^-3.06 ^4.18 ^-0.61 0.007 0.007 0.007 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.06 ^4.18 ^-0.61 0.035 0.035 0.035 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^5.15 ^0.56 ^-0.61 0.007 0.007 0.007 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^5.15 ^0.56 ^-0.61 0.035 0.035 0.035 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.1 ^-4.74 ^-0.61 0.007 0.007 0.007 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.1 ^-4.74 ^-0.61 0.035 0.035 0.035 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.61 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_008.mcfunction new file mode 100644 index 000000000..c2f828b11 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_008.mcfunction @@ -0,0 +1,10 @@ +# frame 8 / 240 +# Sample_01--Circle +particle bubble ^-3.41 ^3.77 ^-0.56 0.008 0.008 0.008 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.41 ^3.77 ^-0.56 0.04 0.04 0.04 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^4.97 ^1.07 ^-0.56 0.008 0.008 0.008 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^4.97 ^1.07 ^-0.56 0.04 0.04 0.04 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.56 ^-4.84 ^-0.56 0.008 0.008 0.008 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.56 ^-4.84 ^-0.56 0.04 0.04 0.04 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.56 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_009.mcfunction new file mode 100644 index 000000000..1db64b6a8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_009.mcfunction @@ -0,0 +1,10 @@ +# frame 9 / 240 +# Sample_01--Circle +particle bubble ^-3.72 ^3.33 ^-0.51 0.009 0.009 0.009 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.72 ^3.33 ^-0.51 0.045 0.045 0.045 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^4.74 ^1.56 ^-0.51 0.009 0.009 0.009 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^4.74 ^1.56 ^-0.51 0.045 0.045 0.045 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.02 ^-4.88 ^-0.51 0.009 0.009 0.009 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.02 ^-4.88 ^-0.51 0.045 0.045 0.045 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.51 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_010.mcfunction new file mode 100644 index 000000000..2a4949236 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_010.mcfunction @@ -0,0 +1,10 @@ +# frame 10 / 240 +# Sample_01--Circle +particle bubble ^-3.97 ^2.86 ^-0.46 0.01 0.01 0.01 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.97 ^2.86 ^-0.46 0.05 0.05 0.05 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^4.46 ^2.01 ^-0.46 0.01 0.01 0.01 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^4.46 ^2.01 ^-0.46 0.05 0.05 0.05 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.49 ^-4.87 ^-0.46 0.01 0.01 0.01 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.49 ^-4.87 ^-0.46 0.05 0.05 0.05 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.46 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_011.mcfunction new file mode 100644 index 000000000..22f0db8cb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_011.mcfunction @@ -0,0 +1,10 @@ +# frame 11 / 240 +# Sample_01--Circle +particle bubble ^-4.16 ^2.38 ^-0.42 0.011 0.011 0.011 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.16 ^2.38 ^-0.42 0.055 0.055 0.055 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^4.14 ^2.42 ^-0.42 0.011 0.011 0.011 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^4.14 ^2.42 ^-0.42 0.055 0.055 0.055 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.02 ^-4.8 ^-0.42 0.011 0.011 0.011 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.02 ^-4.8 ^-0.42 0.055 0.055 0.055 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.42 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_012.mcfunction new file mode 100644 index 000000000..d5e5a43f4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_012.mcfunction @@ -0,0 +1,10 @@ +# frame 12 / 240 +# Sample_01--Circle +particle bubble ^-4.3 ^1.89 ^-0.38 0.012 0.012 0.012 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.3 ^1.89 ^-0.38 0.06 0.06 0.06 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.79 ^2.78 ^-0.38 0.012 0.012 0.012 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.79 ^2.78 ^-0.38 0.06 0.06 0.06 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.51 ^-4.67 ^-0.38 0.012 0.012 0.012 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.51 ^-4.67 ^-0.38 0.06 0.06 0.06 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.38 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_013.mcfunction new file mode 100644 index 000000000..0520bafd8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_013.mcfunction @@ -0,0 +1,10 @@ +# frame 13 / 240 +# Sample_01--Circle +particle bubble ^-4.39 ^1.4 ^-0.34 0.013 0.013 0.013 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.39 ^1.4 ^-0.34 0.065 0.065 0.065 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.4 ^3.1 ^-0.34 0.013 0.013 0.013 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.4 ^3.1 ^-0.34 0.065 0.065 0.065 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.98 ^-4.5 ^-0.34 0.013 0.013 0.013 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.98 ^-4.5 ^-0.34 0.065 0.065 0.065 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.34 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_014.mcfunction new file mode 100644 index 000000000..8f2a26edf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_014.mcfunction @@ -0,0 +1,10 @@ +# frame 14 / 240 +# Sample_01--Circle +particle bubble ^-4.41 ^0.91 ^-0.31 0.014 0.014 0.014 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.41 ^0.91 ^-0.31 0.07 0.07 0.07 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.0 ^3.37 ^-0.31 0.014 0.014 0.014 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.0 ^3.37 ^-0.31 0.07 0.07 0.07 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.42 ^-4.28 ^-0.31 0.014 0.014 0.014 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.42 ^-4.28 ^-0.31 0.07 0.07 0.07 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.31 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_015.mcfunction new file mode 100644 index 000000000..ec3805e73 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_015.mcfunction @@ -0,0 +1,10 @@ +# frame 15 / 240 +# Sample_01--Circle +particle bubble ^-4.39 ^0.43 ^-0.27 0.015 0.015 0.015 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.39 ^0.43 ^-0.27 0.075 0.075 0.075 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.57 ^3.58 ^-0.27 0.015 0.015 0.015 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.57 ^3.58 ^-0.27 0.075 0.075 0.075 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.82 ^-4.02 ^-0.27 0.015 0.015 0.015 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.82 ^-4.02 ^-0.27 0.075 0.075 0.075 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.27 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_016.mcfunction new file mode 100644 index 000000000..cf080103b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_016.mcfunction @@ -0,0 +1,10 @@ +# frame 16 / 240 +# Sample_01--Circle +particle bubble ^-4.31 ^-0.03 ^-0.24 0.016 0.016 0.016 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.31 ^-0.03 ^-0.24 0.08 0.08 0.08 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.13 ^3.75 ^-0.24 0.016 0.016 0.016 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.13 ^3.75 ^-0.24 0.08 0.08 0.08 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.18 ^-3.72 ^-0.24 0.016 0.016 0.016 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.18 ^-3.72 ^-0.24 0.08 0.08 0.08 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.24 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_017.mcfunction new file mode 100644 index 000000000..6f820e04b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_017.mcfunction @@ -0,0 +1,10 @@ +# frame 17 / 240 +# Sample_01--Circle +particle bubble ^-4.19 ^-0.47 ^-0.22 0.017 0.017 0.017 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.19 ^-0.47 ^-0.22 0.085 0.085 0.085 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.69 ^3.86 ^-0.22 0.017 0.017 0.017 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.69 ^3.86 ^-0.22 0.085 0.085 0.085 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.5 ^-3.39 ^-0.22 0.017 0.017 0.017 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.5 ^-3.39 ^-0.22 0.085 0.085 0.085 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.22 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_018.mcfunction new file mode 100644 index 000000000..440099c8d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_018.mcfunction @@ -0,0 +1,10 @@ +# frame 18 / 240 +# Sample_01--Circle +particle bubble ^-4.02 ^-0.89 ^-0.19 0.018 0.018 0.018 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-4.02 ^-0.89 ^-0.19 0.09 0.09 0.09 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.24 ^3.93 ^-0.19 0.018 0.018 0.018 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.24 ^3.93 ^-0.19 0.09 0.09 0.09 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.78 ^-3.04 ^-0.19 0.018 0.018 0.018 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.78 ^-3.04 ^-0.19 0.09 0.09 0.09 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.19 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_019.mcfunction new file mode 100644 index 000000000..92b0b52e9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_019.mcfunction @@ -0,0 +1,10 @@ +# frame 19 / 240 +# Sample_01--Circle +particle bubble ^-3.82 ^-1.27 ^-0.17 0.019 0.019 0.019 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.82 ^-1.27 ^-0.17 0.095 0.095 0.095 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.81 ^3.94 ^-0.17 0.019 0.019 0.019 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.81 ^3.94 ^-0.17 0.095 0.095 0.095 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.01 ^-2.67 ^-0.17 0.019 0.019 0.019 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.01 ^-2.67 ^-0.17 0.095 0.095 0.095 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.17 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_020.mcfunction new file mode 100644 index 000000000..6ce4b13d5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_020.mcfunction @@ -0,0 +1,10 @@ +# frame 20 / 240 +# Sample_01--Circle +particle bubble ^-3.58 ^-1.63 ^-0.15 0.02 0.02 0.02 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.58 ^-1.63 ^-0.15 0.1 0.1 0.1 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.38 ^3.91 ^-0.15 0.02 0.02 0.02 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.38 ^3.91 ^-0.15 0.1 0.1 0.1 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.2 ^-2.28 ^-0.15 0.02 0.02 0.02 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.2 ^-2.28 ^-0.15 0.1 0.1 0.1 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.15 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_021.mcfunction new file mode 100644 index 000000000..b78c57726 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_021.mcfunction @@ -0,0 +1,10 @@ +# frame 21 / 240 +# Sample_01--Circle +particle bubble ^-3.3 ^-1.94 ^-0.13 0.021 0.021 0.021 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.3 ^-1.94 ^-0.13 0.105 0.105 0.105 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.03 ^3.83 ^-0.13 0.021 0.021 0.021 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.03 ^3.83 ^-0.13 0.105 0.105 0.105 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.34 ^-1.89 ^-0.13 0.021 0.021 0.021 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.34 ^-1.89 ^-0.13 0.105 0.105 0.105 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.13 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_022.mcfunction new file mode 100644 index 000000000..e08a90e70 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_022.mcfunction @@ -0,0 +1,10 @@ +# frame 22 / 240 +# Sample_01--Circle +particle bubble ^-3.0 ^-2.22 ^-0.11 0.022 0.022 0.022 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-3.0 ^-2.22 ^-0.11 0.11 0.11 0.11 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.42 ^3.71 ^-0.11 0.022 0.022 0.022 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.42 ^3.71 ^-0.11 0.11 0.11 0.11 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.43 ^-1.49 ^-0.11 0.022 0.022 0.022 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.43 ^-1.49 ^-0.11 0.11 0.11 0.11 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.11 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_023.mcfunction new file mode 100644 index 000000000..a5f2bf9be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_023.mcfunction @@ -0,0 +1,10 @@ +# frame 23 / 240 +# Sample_01--Circle +particle bubble ^-2.68 ^-2.46 ^-0.09 0.023 0.023 0.023 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.68 ^-2.46 ^-0.09 0.115 0.115 0.115 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.79 ^3.55 ^-0.09 0.023 0.023 0.023 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.79 ^3.55 ^-0.09 0.115 0.115 0.115 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.47 ^-1.09 ^-0.09 0.023 0.023 0.023 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.47 ^-1.09 ^-0.09 0.115 0.115 0.115 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.09 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_024.mcfunction new file mode 100644 index 000000000..297a930be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_024.mcfunction @@ -0,0 +1,10 @@ +# frame 24 / 240 +# Sample_01--Circle +particle bubble ^-2.34 ^-2.66 ^-0.08 0.024 0.024 0.024 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.34 ^-2.66 ^-0.08 0.12 0.12 0.12 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.13 ^3.36 ^-0.08 0.024 0.024 0.024 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.13 ^3.36 ^-0.08 0.12 0.12 0.12 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.47 ^-0.7 ^-0.08 0.024 0.024 0.024 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.47 ^-0.7 ^-0.08 0.12 0.12 0.12 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.08 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_025.mcfunction new file mode 100644 index 000000000..6b1330320 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_025.mcfunction @@ -0,0 +1,10 @@ +# frame 25 / 240 +# Sample_01--Circle +particle bubble ^-2.0 ^-2.81 ^-0.07 0.025 0.025 0.025 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.0 ^-2.81 ^-0.07 0.125 0.125 0.125 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.43 ^3.13 ^-0.07 0.025 0.025 0.025 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.43 ^3.13 ^-0.07 0.125 0.125 0.125 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.43 ^-0.32 ^-0.07 0.025 0.025 0.025 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.43 ^-0.32 ^-0.07 0.125 0.125 0.125 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.07 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_026.mcfunction new file mode 100644 index 000000000..09bbe61d7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_026.mcfunction @@ -0,0 +1,10 @@ +# frame 26 / 240 +# Sample_01--Circle +particle bubble ^-1.64 ^-2.92 ^-0.05 0.026 0.026 0.026 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.64 ^-2.92 ^-0.05 0.13 0.13 0.13 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.71 ^2.88 ^-0.05 0.026 0.026 0.026 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.71 ^2.88 ^-0.05 0.13 0.13 0.13 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.35 ^0.04 ^-0.05 0.026 0.026 0.026 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.35 ^0.04 ^-0.05 0.13 0.13 0.13 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.05 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_027.mcfunction new file mode 100644 index 000000000..f4a1e59cd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_027.mcfunction @@ -0,0 +1,10 @@ +# frame 27 / 240 +# Sample_01--Circle +particle bubble ^-1.29 ^-2.99 ^-0.04 0.027 0.027 0.027 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.29 ^-2.99 ^-0.04 0.135 0.135 0.135 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.94 ^2.61 ^-0.04 0.027 0.027 0.027 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.94 ^2.61 ^-0.04 0.135 0.135 0.135 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.23 ^0.38 ^-0.04 0.027 0.027 0.027 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.23 ^0.38 ^-0.04 0.135 0.135 0.135 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.04 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_028.mcfunction new file mode 100644 index 000000000..76cb9f586 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_028.mcfunction @@ -0,0 +1,10 @@ +# frame 28 / 240 +# Sample_01--Circle +particle bubble ^-0.94 ^-3.01 ^-0.04 0.028 0.028 0.028 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.94 ^-3.01 ^-0.04 0.14 0.14 0.14 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.14 ^2.32 ^-0.04 0.028 0.028 0.028 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.14 ^2.32 ^-0.04 0.14 0.14 0.14 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^3.08 ^0.69 ^-0.04 0.028 0.028 0.028 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^3.08 ^0.69 ^-0.04 0.14 0.14 0.14 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.04 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_029.mcfunction new file mode 100644 index 000000000..b18391018 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_029.mcfunction @@ -0,0 +1,10 @@ +# frame 29 / 240 +# Sample_01--Circle +particle bubble ^-0.6 ^-3.0 ^-0.03 0.029 0.029 0.029 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.6 ^-3.0 ^-0.03 0.145 0.145 0.145 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.3 ^2.02 ^-0.03 0.029 0.029 0.029 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.3 ^2.02 ^-0.03 0.145 0.145 0.145 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.9 ^0.98 ^-0.03 0.029 0.029 0.029 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.9 ^0.98 ^-0.03 0.145 0.145 0.145 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.03 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_030.mcfunction new file mode 100644 index 000000000..3806b33e8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_030.mcfunction @@ -0,0 +1,10 @@ +# frame 30 / 240 +# Sample_01--Circle +particle bubble ^-0.27 ^-2.95 ^-0.02 0.03 0.03 0.03 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.27 ^-2.95 ^-0.02 0.15 0.15 0.15 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.42 ^1.71 ^-0.02 0.03 0.03 0.03 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.42 ^1.71 ^-0.02 0.15 0.15 0.15 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.69 ^1.24 ^-0.02 0.03 0.03 0.03 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.69 ^1.24 ^-0.02 0.15 0.15 0.15 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.02 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_031.mcfunction new file mode 100644 index 000000000..5afb35ebc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_031.mcfunction @@ -0,0 +1,10 @@ +# frame 31 / 240 +# Sample_01--Circle +particle bubble ^0.04 ^-2.87 ^-0.02 0.031 0.031 0.031 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.04 ^-2.87 ^-0.02 0.155 0.155 0.155 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.5 ^1.4 ^-0.02 0.031 0.031 0.031 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.5 ^1.4 ^-0.02 0.155 0.155 0.155 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.46 ^1.47 ^-0.02 0.031 0.031 0.031 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.46 ^1.47 ^-0.02 0.155 0.155 0.155 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.02 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_032.mcfunction new file mode 100644 index 000000000..164eff819 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_032.mcfunction @@ -0,0 +1,10 @@ +# frame 32 / 240 +# Sample_01--Circle +particle bubble ^0.33 ^-2.75 ^-0.01 0.032 0.032 0.032 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.33 ^-2.75 ^-0.01 0.16 0.16 0.16 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.55 ^1.09 ^-0.01 0.032 0.032 0.032 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.55 ^1.09 ^-0.01 0.16 0.16 0.16 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^2.22 ^1.66 ^-0.01 0.032 0.032 0.032 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^2.22 ^1.66 ^-0.01 0.16 0.16 0.16 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.01 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_033.mcfunction new file mode 100644 index 000000000..d4e5d0a8f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_033.mcfunction @@ -0,0 +1,10 @@ +# frame 33 / 240 +# Sample_01--Circle +particle bubble ^0.59 ^-2.61 ^-0.01 0.033 0.033 0.033 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.59 ^-2.61 ^-0.01 0.165 0.165 0.165 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.56 ^0.79 ^-0.01 0.033 0.033 0.033 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.56 ^0.79 ^-0.01 0.165 0.165 0.165 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.96 ^1.82 ^-0.01 0.033 0.033 0.033 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.96 ^1.82 ^-0.01 0.165 0.165 0.165 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.01 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_034.mcfunction new file mode 100644 index 000000000..589e6d7e4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_034.mcfunction @@ -0,0 +1,10 @@ +# frame 34 / 240 +# Sample_01--Circle +particle bubble ^0.83 ^-2.44 ^-0.01 0.034 0.034 0.034 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.83 ^-2.44 ^-0.01 0.17 0.17 0.17 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.53 ^0.5 ^-0.01 0.034 0.034 0.034 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.53 ^0.5 ^-0.01 0.17 0.17 0.17 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.7 ^1.94 ^-0.01 0.034 0.034 0.034 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.7 ^1.94 ^-0.01 0.17 0.17 0.17 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.01 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_035.mcfunction new file mode 100644 index 000000000..8412faaf5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_035.mcfunction @@ -0,0 +1,10 @@ +# frame 35 / 240 +# Sample_01--Circle +particle bubble ^1.04 ^-2.25 ^-0.0 0.035 0.035 0.035 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.04 ^-2.25 ^-0.0 0.175 0.175 0.175 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.47 ^0.22 ^-0.0 0.035 0.035 0.035 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.47 ^0.22 ^-0.0 0.175 0.175 0.175 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.43 ^2.03 ^-0.0 0.035 0.035 0.035 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.43 ^2.03 ^-0.0 0.175 0.175 0.175 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_036.mcfunction new file mode 100644 index 000000000..1ce8613e3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_036.mcfunction @@ -0,0 +1,10 @@ +# frame 36 / 240 +# Sample_01--Circle +particle bubble ^1.22 ^-2.05 ^-0.0 0.036 0.036 0.036 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.22 ^-2.05 ^-0.0 0.18 0.18 0.18 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.39 ^-0.04 ^-0.0 0.036 0.036 0.036 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.39 ^-0.04 ^-0.0 0.18 0.18 0.18 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.16 ^2.08 ^-0.0 0.036 0.036 0.036 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.16 ^2.08 ^-0.0 0.18 0.18 0.18 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_037.mcfunction new file mode 100644 index 000000000..1b09e6be5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_037.mcfunction @@ -0,0 +1,10 @@ +# frame 37 / 240 +# Sample_01--Circle +particle bubble ^1.37 ^-1.83 ^-0.0 0.037 0.037 0.037 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.37 ^-1.83 ^-0.0 0.185 0.185 0.185 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.27 ^-0.28 ^-0.0 0.037 0.037 0.037 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.27 ^-0.28 ^-0.0 0.185 0.185 0.185 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.9 ^2.11 ^-0.0 0.037 0.037 0.037 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.9 ^2.11 ^-0.0 0.185 0.185 0.185 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_038.mcfunction new file mode 100644 index 000000000..9b242a46b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_038.mcfunction @@ -0,0 +1,10 @@ +# frame 38 / 240 +# Sample_01--Circle +particle bubble ^1.49 ^-1.61 ^-0.0 0.038 0.038 0.038 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.49 ^-1.61 ^-0.0 0.19 0.19 0.19 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-2.14 ^-0.49 ^-0.0 0.038 0.038 0.038 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-2.14 ^-0.49 ^-0.0 0.19 0.19 0.19 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.64 ^2.1 ^-0.0 0.038 0.038 0.038 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.64 ^2.1 ^-0.0 0.19 0.19 0.19 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_039.mcfunction new file mode 100644 index 000000000..4e20e29fb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_039.mcfunction @@ -0,0 +1,10 @@ +# frame 39 / 240 +# Sample_01--Circle +particle bubble ^1.58 ^-1.38 ^-0.0 0.039 0.039 0.039 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.58 ^-1.38 ^-0.0 0.195 0.195 0.195 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.98 ^-0.68 ^-0.0 0.039 0.039 0.039 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.98 ^-0.68 ^-0.0 0.195 0.195 0.195 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.4 ^2.06 ^-0.0 0.039 0.039 0.039 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.4 ^2.06 ^-0.0 0.195 0.195 0.195 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^-0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_040.mcfunction new file mode 100644 index 000000000..0b4e56684 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_040.mcfunction @@ -0,0 +1,10 @@ +# frame 40 / 240 +# Sample_01--Circle +particle bubble ^1.64 ^-1.15 ^-0.0 0.04 0.04 0.04 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.64 ^-1.15 ^-0.0 0.2 0.2 0.2 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.81 ^-0.84 ^0.0 0.04 0.04 0.04 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.81 ^-0.84 ^0.0 0.2 0.2 0.2 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.18 ^1.99 ^0.0 0.04 0.04 0.04 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.18 ^1.99 ^0.0 0.2 0.2 0.2 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_041.mcfunction new file mode 100644 index 000000000..18094ded4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_041.mcfunction @@ -0,0 +1,10 @@ +# frame 41 / 240 +# Sample_01--Circle +particle bubble ^1.74 ^-0.97 ^-0.0 0.041 0.041 0.041 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.74 ^-0.97 ^-0.0 0.205 0.205 0.205 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.71 ^-1.03 ^0.0 0.041 0.041 0.041 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.71 ^-1.03 ^0.0 0.205 0.205 0.205 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.03 ^1.99 ^0.0 0.041 0.041 0.041 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.03 ^1.99 ^0.0 0.205 0.205 0.205 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_042.mcfunction new file mode 100644 index 000000000..4341246f2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_042.mcfunction @@ -0,0 +1,10 @@ +# frame 42 / 240 +# Sample_01--Circle +particle bubble ^1.83 ^-0.78 ^-0.0 0.042 0.042 0.042 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.83 ^-0.78 ^-0.0 0.21 0.21 0.21 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.59 ^-1.2 ^0.0 0.042 0.042 0.042 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.59 ^-1.2 ^0.0 0.21 0.21 0.21 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.24 ^1.98 ^0.0 0.042 0.042 0.042 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.24 ^1.98 ^0.0 0.21 0.21 0.21 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_043.mcfunction new file mode 100644 index 000000000..6ed6ae152 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_043.mcfunction @@ -0,0 +1,10 @@ +# frame 43 / 240 +# Sample_01--Circle +particle bubble ^1.9 ^-0.58 ^-0.0 0.043 0.043 0.043 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.9 ^-0.58 ^-0.0 0.215 0.215 0.215 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.45 ^-1.36 ^0.0 0.043 0.043 0.043 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.45 ^-1.36 ^0.0 0.215 0.215 0.215 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.45 ^1.93 ^0.0 0.043 0.043 0.043 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.45 ^1.93 ^0.0 0.215 0.215 0.215 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_044.mcfunction new file mode 100644 index 000000000..0f85c02b6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_044.mcfunction @@ -0,0 +1,10 @@ +# frame 44 / 240 +# Sample_01--Circle +particle bubble ^1.94 ^-0.38 ^-0.0 0.044 0.044 0.044 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.94 ^-0.38 ^-0.0 0.22 0.22 0.22 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.3 ^-1.5 ^0.0 0.044 0.044 0.044 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.3 ^-1.5 ^0.0 0.22 0.22 0.22 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.65 ^1.87 ^0.0 0.044 0.044 0.044 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.65 ^1.87 ^0.0 0.22 0.22 0.22 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_045.mcfunction new file mode 100644 index 000000000..c51c6f394 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_045.mcfunction @@ -0,0 +1,10 @@ +# frame 45 / 240 +# Sample_01--Circle +particle bubble ^1.97 ^-0.17 ^-0.0 0.045 0.045 0.045 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.97 ^-0.17 ^-0.0 0.225 0.225 0.225 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.13 ^-1.62 ^0.0 0.045 0.045 0.045 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.13 ^-1.62 ^0.0 0.225 0.225 0.225 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.84 ^1.79 ^0.0 0.045 0.045 0.045 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.84 ^1.79 ^0.0 0.225 0.225 0.225 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_046.mcfunction new file mode 100644 index 000000000..ccb106611 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_046.mcfunction @@ -0,0 +1,10 @@ +# frame 46 / 240 +# Sample_01--Circle +particle bubble ^1.97 ^0.04 ^-0.0 0.046 0.046 0.046 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.97 ^0.04 ^-0.0 0.23 0.23 0.23 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.95 ^-1.73 ^0.0 0.046 0.046 0.046 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.95 ^-1.73 ^0.0 0.23 0.23 0.23 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.02 ^1.69 ^0.0 0.046 0.046 0.046 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.02 ^1.69 ^0.0 0.23 0.23 0.23 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_047.mcfunction new file mode 100644 index 000000000..2339aef92 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_047.mcfunction @@ -0,0 +1,10 @@ +# frame 47 / 240 +# Sample_01--Circle +particle bubble ^1.95 ^0.24 ^-0.0 0.047 0.047 0.047 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.95 ^0.24 ^-0.0 0.235 0.235 0.235 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.76 ^-1.81 ^0.0 0.047 0.047 0.047 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.76 ^-1.81 ^0.0 0.235 0.235 0.235 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.19 ^1.57 ^0.0 0.047 0.047 0.047 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.19 ^1.57 ^0.0 0.235 0.235 0.235 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_048.mcfunction new file mode 100644 index 000000000..80f092d9a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_048.mcfunction @@ -0,0 +1,10 @@ +# frame 48 / 240 +# Sample_01--Circle +particle bubble ^1.91 ^0.45 ^-0.0 0.048 0.048 0.048 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.91 ^0.45 ^-0.0 0.24 0.24 0.24 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.57 ^-1.88 ^0.0 0.048 0.048 0.048 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.57 ^-1.88 ^0.0 0.24 0.24 0.24 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.34 ^1.43 ^0.0 0.048 0.048 0.048 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.34 ^1.43 ^0.0 0.24 0.24 0.24 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_049.mcfunction new file mode 100644 index 000000000..d17020cc9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_049.mcfunction @@ -0,0 +1,10 @@ +# frame 49 / 240 +# Sample_01--Circle +particle bubble ^1.85 ^0.64 ^-0.0 0.049 0.049 0.049 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.85 ^0.64 ^-0.0 0.245 0.245 0.245 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.37 ^-1.92 ^0.0 0.049 0.049 0.049 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.37 ^-1.92 ^0.0 0.245 0.245 0.245 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.48 ^1.28 ^0.0 0.049 0.049 0.049 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.48 ^1.28 ^0.0 0.245 0.245 0.245 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_050.mcfunction new file mode 100644 index 000000000..af4ddceb6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_050.mcfunction @@ -0,0 +1,10 @@ +# frame 50 / 240 +# Sample_01--Circle +particle bubble ^1.76 ^0.83 ^-0.0 0.05 0.05 0.05 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.76 ^0.83 ^-0.0 0.25 0.25 0.25 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.16 ^-1.94 ^0.0 0.05 0.05 0.05 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.16 ^-1.94 ^0.0 0.25 0.25 0.25 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.6 ^1.11 ^0.0 0.05 0.05 0.05 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.6 ^1.11 ^0.0 0.25 0.25 0.25 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_051.mcfunction new file mode 100644 index 000000000..0886aa19e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_051.mcfunction @@ -0,0 +1,10 @@ +# frame 51 / 240 +# Sample_01--Circle +particle bubble ^1.66 ^1.01 ^-0.0 0.051 0.051 0.051 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.66 ^1.01 ^-0.0 0.255 0.255 0.255 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.04 ^-1.94 ^0.0 0.051 0.051 0.051 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.04 ^-1.94 ^0.0 0.255 0.255 0.255 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.71 ^0.94 ^0.0 0.051 0.051 0.051 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.71 ^0.94 ^0.0 0.255 0.255 0.255 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_052.mcfunction new file mode 100644 index 000000000..0559786a6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_052.mcfunction @@ -0,0 +1,10 @@ +# frame 52 / 240 +# Sample_01--Circle +particle bubble ^1.54 ^1.18 ^-0.0 0.052 0.052 0.052 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.54 ^1.18 ^-0.0 0.26 0.26 0.26 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.25 ^-1.92 ^0.0 0.052 0.052 0.052 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.25 ^-1.92 ^0.0 0.26 0.26 0.26 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.79 ^0.75 ^0.0 0.052 0.052 0.052 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.79 ^0.75 ^0.0 0.26 0.26 0.26 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_053.mcfunction new file mode 100644 index 000000000..a9ae12587 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_053.mcfunction @@ -0,0 +1,10 @@ +# frame 53 / 240 +# Sample_01--Circle +particle bubble ^1.41 ^1.33 ^-0.0 0.053 0.053 0.053 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.41 ^1.33 ^-0.0 0.265 0.265 0.265 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.45 ^-1.88 ^0.0 0.053 0.053 0.053 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.45 ^-1.88 ^0.0 0.265 0.265 0.265 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.85 ^0.56 ^0.0 0.053 0.053 0.053 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.85 ^0.56 ^0.0 0.265 0.265 0.265 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_054.mcfunction new file mode 100644 index 000000000..15c90e74c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_054.mcfunction @@ -0,0 +1,10 @@ +# frame 54 / 240 +# Sample_01--Circle +particle bubble ^1.26 ^1.46 ^-0.0 0.054 0.054 0.054 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.26 ^1.46 ^-0.0 0.27 0.27 0.27 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.64 ^-1.82 ^0.0 0.054 0.054 0.054 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.64 ^-1.82 ^0.0 0.27 0.27 0.27 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.9 ^0.36 ^0.0 0.054 0.054 0.054 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.9 ^0.36 ^0.0 0.27 0.27 0.27 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_055.mcfunction new file mode 100644 index 000000000..a17e95547 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_055.mcfunction @@ -0,0 +1,10 @@ +# frame 55 / 240 +# Sample_01--Circle +particle bubble ^1.09 ^1.58 ^-0.0 0.055 0.055 0.055 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.09 ^1.58 ^-0.0 0.275 0.275 0.275 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.82 ^-1.74 ^0.0 0.055 0.055 0.055 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.82 ^-1.74 ^0.0 0.275 0.275 0.275 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.92 ^0.16 ^0.0 0.055 0.055 0.055 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.92 ^0.16 ^0.0 0.275 0.275 0.275 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_056.mcfunction new file mode 100644 index 000000000..7a3c834cb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_056.mcfunction @@ -0,0 +1,10 @@ +# frame 56 / 240 +# Sample_01--Circle +particle bubble ^0.92 ^1.69 ^-0.0 0.056 0.056 0.056 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.92 ^1.69 ^-0.0 0.28 0.28 0.28 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.0 ^-1.64 ^0.0 0.056 0.056 0.056 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.0 ^-1.64 ^0.0 0.28 0.28 0.28 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.92 ^-0.05 ^0.0 0.056 0.056 0.056 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.92 ^-0.05 ^0.0 0.28 0.28 0.28 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_057.mcfunction new file mode 100644 index 000000000..72e8149be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_057.mcfunction @@ -0,0 +1,10 @@ +# frame 57 / 240 +# Sample_01--Circle +particle bubble ^0.74 ^1.77 ^-0.0 0.057 0.057 0.057 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.74 ^1.77 ^-0.0 0.285 0.285 0.285 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.16 ^-1.52 ^0.0 0.057 0.057 0.057 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.16 ^-1.52 ^0.0 0.285 0.285 0.285 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.9 ^-0.25 ^0.0 0.057 0.057 0.057 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.9 ^-0.25 ^0.0 0.285 0.285 0.285 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_058.mcfunction new file mode 100644 index 000000000..0f057d7bb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_058.mcfunction @@ -0,0 +1,10 @@ +# frame 58 / 240 +# Sample_01--Circle +particle bubble ^0.54 ^1.83 ^-0.0 0.058 0.058 0.058 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.54 ^1.83 ^-0.0 0.29 0.29 0.29 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.31 ^-1.39 ^0.0 0.058 0.058 0.058 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.31 ^-1.39 ^0.0 0.29 0.29 0.29 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.86 ^-0.44 ^0.0 0.058 0.058 0.058 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.86 ^-0.44 ^0.0 0.29 0.29 0.29 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_059.mcfunction new file mode 100644 index 000000000..1a3f81885 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_059.mcfunction @@ -0,0 +1,10 @@ +# frame 59 / 240 +# Sample_01--Circle +particle bubble ^0.35 ^1.87 ^-0.0 0.059 0.059 0.059 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.35 ^1.87 ^-0.0 0.295 0.295 0.295 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.45 ^-1.24 ^0.0 0.059 0.059 0.059 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.45 ^-1.24 ^0.0 0.295 0.295 0.295 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.8 ^-0.63 ^0.0 0.059 0.059 0.059 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.8 ^-0.63 ^0.0 0.295 0.295 0.295 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_060.mcfunction new file mode 100644 index 000000000..d887b20de --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_060.mcfunction @@ -0,0 +1,10 @@ +# frame 60 / 240 +# Sample_01--Circle +particle bubble ^0.15 ^1.89 ^-0.0 0.06 0.06 0.06 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.15 ^1.89 ^-0.0 0.3 0.3 0.3 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.57 ^-1.08 ^0.0 0.06 0.06 0.06 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.57 ^-1.08 ^0.0 0.3 0.3 0.3 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.72 ^-0.82 ^0.0 0.06 0.06 0.06 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.72 ^-0.82 ^0.0 0.3 0.3 0.3 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_061.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_061.mcfunction new file mode 100644 index 000000000..ce7061aad --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_061.mcfunction @@ -0,0 +1,10 @@ +# frame 61 / 240 +# Sample_01--Circle +particle bubble ^-0.05 ^1.89 ^-0.0 0.061 0.061 0.061 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.05 ^1.89 ^-0.0 0.305 0.305 0.305 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.67 ^-0.9 ^0.0 0.061 0.061 0.061 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.67 ^-0.9 ^0.0 0.305 0.305 0.305 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.62 ^-0.99 ^0.0 0.061 0.061 0.061 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.62 ^-0.99 ^0.0 0.305 0.305 0.305 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.508 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_062.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_062.mcfunction new file mode 100644 index 000000000..4939470ab --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_062.mcfunction @@ -0,0 +1,10 @@ +# frame 62 / 240 +# Sample_01--Circle +particle bubble ^-0.25 ^1.87 ^-0.0 0.062 0.062 0.062 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.25 ^1.87 ^-0.0 0.31 0.31 0.31 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.75 ^-0.72 ^0.0 0.062 0.062 0.062 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.75 ^-0.72 ^0.0 0.31 0.31 0.31 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.5 ^-1.15 ^0.0 0.062 0.062 0.062 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.5 ^-1.15 ^0.0 0.31 0.31 0.31 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.517 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_063.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_063.mcfunction new file mode 100644 index 000000000..800d1c92b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_063.mcfunction @@ -0,0 +1,10 @@ +# frame 63 / 240 +# Sample_01--Circle +particle bubble ^-0.44 ^1.83 ^-0.0 0.063 0.063 0.063 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.44 ^1.83 ^-0.0 0.315 0.315 0.315 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.81 ^-0.53 ^0.0 0.063 0.063 0.063 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.81 ^-0.53 ^0.0 0.315 0.315 0.315 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.37 ^-1.3 ^0.0 0.063 0.063 0.063 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.37 ^-1.3 ^0.0 0.315 0.315 0.315 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.525 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_064.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_064.mcfunction new file mode 100644 index 000000000..d59381414 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_064.mcfunction @@ -0,0 +1,10 @@ +# frame 64 / 240 +# Sample_01--Circle +particle bubble ^-0.63 ^1.77 ^-0.0 0.064 0.064 0.064 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.63 ^1.77 ^-0.0 0.32 0.32 0.32 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.85 ^-0.34 ^0.0 0.064 0.064 0.064 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.85 ^-0.34 ^0.0 0.32 0.32 0.32 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.22 ^-1.43 ^0.0 0.064 0.064 0.064 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.22 ^-1.43 ^0.0 0.32 0.32 0.32 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.533 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_065.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_065.mcfunction new file mode 100644 index 000000000..2be819899 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_065.mcfunction @@ -0,0 +1,10 @@ +# frame 65 / 240 +# Sample_01--Circle +particle bubble ^-0.81 ^1.69 ^-0.0 0.065 0.065 0.065 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.81 ^1.69 ^-0.0 0.325 0.325 0.325 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.87 ^-0.14 ^0.0 0.065 0.065 0.065 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.87 ^-0.14 ^0.0 0.325 0.325 0.325 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.06 ^-1.55 ^0.0 0.065 0.065 0.065 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.06 ^-1.55 ^0.0 0.325 0.325 0.325 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.542 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_066.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_066.mcfunction new file mode 100644 index 000000000..11584d17a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_066.mcfunction @@ -0,0 +1,10 @@ +# frame 66 / 240 +# Sample_01--Circle +particle bubble ^-0.98 ^1.59 ^-0.0 0.066 0.066 0.066 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.98 ^1.59 ^-0.0 0.33 0.33 0.33 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.87 ^0.05 ^0.0 0.066 0.066 0.066 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.87 ^0.05 ^0.0 0.33 0.33 0.33 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.89 ^-1.65 ^0.0 0.066 0.066 0.066 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.89 ^-1.65 ^0.0 0.33 0.33 0.33 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.55 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_067.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_067.mcfunction new file mode 100644 index 000000000..9b4cf6171 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_067.mcfunction @@ -0,0 +1,10 @@ +# frame 67 / 240 +# Sample_01--Circle +particle bubble ^-1.14 ^1.48 ^-0.0 0.067 0.067 0.067 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.14 ^1.48 ^-0.0 0.335 0.335 0.335 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.85 ^0.25 ^0.0 0.067 0.067 0.067 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.85 ^0.25 ^0.0 0.335 0.335 0.335 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.71 ^-1.72 ^0.0 0.067 0.067 0.067 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.71 ^-1.72 ^0.0 0.335 0.335 0.335 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.558 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_068.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_068.mcfunction new file mode 100644 index 000000000..efe8953ec --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_068.mcfunction @@ -0,0 +1,10 @@ +# frame 68 / 240 +# Sample_01--Circle +particle bubble ^-1.28 ^1.35 ^-0.0 0.068 0.068 0.068 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.28 ^1.35 ^-0.0 0.34 0.34 0.34 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.81 ^0.44 ^0.0 0.068 0.068 0.068 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.81 ^0.44 ^0.0 0.34 0.34 0.34 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.52 ^-1.79 ^0.0 0.068 0.068 0.068 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.52 ^-1.79 ^0.0 0.34 0.34 0.34 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.567 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_069.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_069.mcfunction new file mode 100644 index 000000000..a5f0694e7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_069.mcfunction @@ -0,0 +1,10 @@ +# frame 69 / 240 +# Sample_01--Circle +particle bubble ^-1.41 ^1.2 ^-0.0 0.069 0.069 0.069 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.41 ^1.2 ^-0.0 0.345 0.345 0.345 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.75 ^0.63 ^0.0 0.069 0.069 0.069 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.75 ^0.63 ^0.0 0.345 0.345 0.345 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.33 ^-1.83 ^0.0 0.069 0.069 0.069 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.33 ^-1.83 ^0.0 0.345 0.345 0.345 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.575 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_070.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_070.mcfunction new file mode 100644 index 000000000..306c5a1e9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_070.mcfunction @@ -0,0 +1,10 @@ +# frame 70 / 240 +# Sample_01--Circle +particle bubble ^-1.53 ^1.04 ^-0.0 0.07 0.07 0.07 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.53 ^1.04 ^-0.0 0.35 0.35 0.35 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.67 ^0.8 ^0.0 0.07 0.07 0.07 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.67 ^0.8 ^0.0 0.35 0.35 0.35 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.14 ^-1.84 ^0.0 0.07 0.07 0.07 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.14 ^-1.84 ^0.0 0.35 0.35 0.35 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.583 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_071.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_071.mcfunction new file mode 100644 index 000000000..e79639d4a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_071.mcfunction @@ -0,0 +1,10 @@ +# frame 71 / 240 +# Sample_01--Circle +particle bubble ^-1.63 ^0.87 ^-0.0 0.071 0.071 0.071 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.63 ^0.87 ^-0.0 0.355 0.355 0.355 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.57 ^0.97 ^0.0 0.071 0.071 0.071 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.57 ^0.97 ^0.0 0.355 0.355 0.355 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.06 ^-1.84 ^0.0 0.071 0.071 0.071 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.06 ^-1.84 ^0.0 0.355 0.355 0.355 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.592 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_072.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_072.mcfunction new file mode 100644 index 000000000..4a7a636f9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_072.mcfunction @@ -0,0 +1,10 @@ +# frame 72 / 240 +# Sample_01--Circle +particle bubble ^-1.7 ^0.7 ^-0.0 0.072 0.072 0.072 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.7 ^0.7 ^-0.0 0.36 0.36 0.36 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.45 ^1.13 ^0.0 0.072 0.072 0.072 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.45 ^1.13 ^0.0 0.36 0.36 0.36 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.25 ^-1.82 ^0.0 0.072 0.072 0.072 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.25 ^-1.82 ^0.0 0.36 0.36 0.36 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.6 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_073.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_073.mcfunction new file mode 100644 index 000000000..2e033d427 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_073.mcfunction @@ -0,0 +1,10 @@ +# frame 73 / 240 +# Sample_01--Circle +particle bubble ^-1.76 ^0.51 ^-0.0 0.073 0.073 0.073 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.76 ^0.51 ^-0.0 0.365 0.365 0.365 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.32 ^1.27 ^0.0 0.073 0.073 0.073 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.32 ^1.27 ^0.0 0.365 0.365 0.365 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.44 ^-1.78 ^0.0 0.073 0.073 0.073 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.44 ^-1.78 ^0.0 0.365 0.365 0.365 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.608 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_074.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_074.mcfunction new file mode 100644 index 000000000..f406aeeab --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_074.mcfunction @@ -0,0 +1,10 @@ +# frame 74 / 240 +# Sample_01--Circle +particle bubble ^-1.8 ^0.32 ^-0.0 0.074 0.074 0.074 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.8 ^0.32 ^-0.0 0.37 0.37 0.37 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.18 ^1.4 ^0.0 0.074 0.074 0.074 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.18 ^1.4 ^0.0 0.37 0.37 0.37 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.62 ^-1.72 ^0.0 0.074 0.074 0.074 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.62 ^-1.72 ^0.0 0.37 0.37 0.37 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.617 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_075.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_075.mcfunction new file mode 100644 index 000000000..370847551 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_075.mcfunction @@ -0,0 +1,10 @@ +# frame 75 / 240 +# Sample_01--Circle +particle bubble ^-1.82 ^0.13 ^-0.0 0.075 0.075 0.075 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.82 ^0.13 ^-0.0 0.375 0.375 0.375 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.02 ^1.51 ^0.0 0.075 0.075 0.075 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.02 ^1.51 ^0.0 0.375 0.375 0.375 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.8 ^-1.64 ^0.0 0.075 0.075 0.075 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.8 ^-1.64 ^0.0 0.375 0.375 0.375 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.625 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_076.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_076.mcfunction new file mode 100644 index 000000000..ed6bfd049 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_076.mcfunction @@ -0,0 +1,10 @@ +# frame 76 / 240 +# Sample_01--Circle +particle bubble ^-1.82 ^-0.06 ^-0.0 0.076 0.076 0.076 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.82 ^-0.06 ^-0.0 0.38 0.38 0.38 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.86 ^1.61 ^0.0 0.076 0.076 0.076 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.86 ^1.61 ^0.0 0.38 0.38 0.38 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.96 ^-1.55 ^0.0 0.076 0.076 0.076 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.96 ^-1.55 ^0.0 0.38 0.38 0.38 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.633 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_077.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_077.mcfunction new file mode 100644 index 000000000..0964e87a4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_077.mcfunction @@ -0,0 +1,10 @@ +# frame 77 / 240 +# Sample_01--Circle +particle bubble ^-1.8 ^-0.25 ^-0.0 0.077 0.077 0.077 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.8 ^-0.25 ^-0.0 0.385 0.385 0.385 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.68 ^1.68 ^0.0 0.077 0.077 0.077 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.68 ^1.68 ^0.0 0.385 0.385 0.385 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.12 ^-1.43 ^0.0 0.077 0.077 0.077 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.12 ^-1.43 ^0.0 0.385 0.385 0.385 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.642 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_078.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_078.mcfunction new file mode 100644 index 000000000..0bd729e24 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_078.mcfunction @@ -0,0 +1,10 @@ +# frame 78 / 240 +# Sample_01--Circle +particle bubble ^-1.76 ^-0.44 ^-0.0 0.078 0.078 0.078 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.76 ^-0.44 ^-0.0 0.39 0.39 0.39 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.5 ^1.74 ^0.0 0.078 0.078 0.078 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.5 ^1.74 ^0.0 0.39 0.39 0.39 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.26 ^-1.3 ^0.0 0.078 0.078 0.078 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.26 ^-1.3 ^0.0 0.39 0.39 0.39 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.65 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_079.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_079.mcfunction new file mode 100644 index 000000000..eaa362bd1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_079.mcfunction @@ -0,0 +1,10 @@ +# frame 79 / 240 +# Sample_01--Circle +particle bubble ^-1.7 ^-0.62 ^-0.0 0.079 0.079 0.079 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.7 ^-0.62 ^-0.0 0.395 0.395 0.395 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.31 ^1.78 ^0.0 0.079 0.079 0.079 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.31 ^1.78 ^0.0 0.395 0.395 0.395 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.38 ^-1.16 ^0.0 0.079 0.079 0.079 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.38 ^-1.16 ^0.0 0.395 0.395 0.395 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.658 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_080.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_080.mcfunction new file mode 100644 index 000000000..4cd211cab --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_01/fc_080.mcfunction @@ -0,0 +1,10 @@ +# frame 80 / 240 +# Sample_01--Circle +particle bubble ^-1.62 ^-0.79 ^-0.0 0.08 0.08 0.08 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.62 ^-0.79 ^-0.0 0.4 0.4 0.4 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.13 ^1.8 ^0.0 0.08 0.08 0.08 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.13 ^1.8 ^0.0 0.4 0.4 0.4 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.49 ^-1.01 ^0.0 0.08 0.08 0.08 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.49 ^-1.01 ^0.0 0.4 0.4 0.4 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.667 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_001.mcfunction new file mode 100644 index 000000000..18baca8f7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_001.mcfunction @@ -0,0 +1,10 @@ +# frame 81 / 240 +# Sample_01--Circle +particle bubble ^-1.52 ^-0.95 ^-0.0 0.081 0.081 0.081 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.52 ^-0.95 ^-0.0 0.405 0.405 0.405 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.06 ^1.79 ^0.0 0.081 0.081 0.081 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.06 ^1.79 ^0.0 0.405 0.405 0.405 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.59 ^-0.84 ^0.0 0.081 0.081 0.081 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.59 ^-0.84 ^0.0 0.405 0.405 0.405 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.675 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_002.mcfunction new file mode 100644 index 000000000..011fa38e7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_002.mcfunction @@ -0,0 +1,10 @@ +# frame 82 / 240 +# Sample_01--Circle +particle bubble ^-1.41 ^-1.1 ^-0.0 0.082 0.082 0.082 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.41 ^-1.1 ^-0.0 0.41 0.41 0.41 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.25 ^1.77 ^0.0 0.082 0.082 0.082 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.25 ^1.77 ^0.0 0.41 0.41 0.41 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.66 ^-0.67 ^0.0 0.082 0.082 0.082 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.66 ^-0.67 ^0.0 0.41 0.41 0.41 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.683 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_003.mcfunction new file mode 100644 index 000000000..84178d9fe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_003.mcfunction @@ -0,0 +1,10 @@ +# frame 83 / 240 +# Sample_01--Circle +particle bubble ^-1.28 ^-1.24 ^-0.0 0.083 0.083 0.083 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.28 ^-1.24 ^-0.0 0.415 0.415 0.415 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.43 ^1.73 ^0.0 0.083 0.083 0.083 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.43 ^1.73 ^0.0 0.415 0.415 0.415 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.72 ^-0.49 ^0.0 0.083 0.083 0.083 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.72 ^-0.49 ^0.0 0.415 0.415 0.415 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.692 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_004.mcfunction new file mode 100644 index 000000000..e2be44f4b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_004.mcfunction @@ -0,0 +1,10 @@ +# frame 84 / 240 +# Sample_01--Circle +particle bubble ^-1.14 ^-1.37 ^-0.0 0.084 0.084 0.084 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.14 ^-1.37 ^-0.0 0.42 0.42 0.42 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.61 ^1.67 ^0.0 0.084 0.084 0.084 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.61 ^1.67 ^0.0 0.42 0.42 0.42 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.75 ^-0.31 ^0.0 0.084 0.084 0.084 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.75 ^-0.31 ^0.0 0.42 0.42 0.42 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.7 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_005.mcfunction new file mode 100644 index 000000000..d123a7450 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_005.mcfunction @@ -0,0 +1,10 @@ +# frame 85 / 240 +# Sample_01--Circle +particle bubble ^-0.99 ^-1.47 ^-0.0 0.085 0.085 0.085 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.99 ^-1.47 ^-0.0 0.425 0.425 0.425 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.78 ^1.59 ^0.0 0.085 0.085 0.085 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.78 ^1.59 ^0.0 0.425 0.425 0.425 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.77 ^-0.12 ^0.0 0.085 0.085 0.085 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.77 ^-0.12 ^0.0 0.425 0.425 0.425 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.708 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_006.mcfunction new file mode 100644 index 000000000..00f933e18 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_006.mcfunction @@ -0,0 +1,10 @@ +# frame 86 / 240 +# Sample_01--Circle +particle bubble ^-0.83 ^-1.56 ^-0.0 0.086 0.086 0.086 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.83 ^-1.56 ^-0.0 0.43 0.43 0.43 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.94 ^1.5 ^0.0 0.086 0.086 0.086 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.94 ^1.5 ^0.0 0.43 0.43 0.43 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.77 ^0.07 ^0.0 0.086 0.086 0.086 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.77 ^0.07 ^0.0 0.43 0.43 0.43 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.717 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_007.mcfunction new file mode 100644 index 000000000..4e71310f6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_007.mcfunction @@ -0,0 +1,10 @@ +# frame 87 / 240 +# Sample_01--Circle +particle bubble ^-0.66 ^-1.64 ^-0.0 0.087 0.087 0.087 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.66 ^-1.64 ^-0.0 0.435 0.435 0.435 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.09 ^1.39 ^0.0 0.087 0.087 0.087 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.09 ^1.39 ^0.0 0.435 0.435 0.435 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.75 ^0.25 ^0.0 0.087 0.087 0.087 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.75 ^0.25 ^0.0 0.435 0.435 0.435 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.725 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_008.mcfunction new file mode 100644 index 000000000..95346b504 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_008.mcfunction @@ -0,0 +1,10 @@ +# frame 88 / 240 +# Sample_01--Circle +particle bubble ^-0.48 ^-1.69 ^-0.0 0.088 0.088 0.088 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.48 ^-1.69 ^-0.0 0.44 0.44 0.44 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.23 ^1.26 ^0.0 0.088 0.088 0.088 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.23 ^1.26 ^0.0 0.44 0.44 0.44 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.71 ^0.43 ^0.0 0.088 0.088 0.088 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.71 ^0.43 ^0.0 0.44 0.44 0.44 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.733 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_009.mcfunction new file mode 100644 index 000000000..a03a28ac2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_009.mcfunction @@ -0,0 +1,10 @@ +# frame 89 / 240 +# Sample_01--Circle +particle bubble ^-0.3 ^-1.73 ^-0.0 0.089 0.089 0.089 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.3 ^-1.73 ^-0.0 0.445 0.445 0.445 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.35 ^1.12 ^0.0 0.089 0.089 0.089 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.35 ^1.12 ^0.0 0.445 0.445 0.445 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.65 ^0.61 ^0.0 0.089 0.089 0.089 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.65 ^0.61 ^0.0 0.445 0.445 0.445 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.742 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_010.mcfunction new file mode 100644 index 000000000..5c4687de8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_010.mcfunction @@ -0,0 +1,10 @@ +# frame 90 / 240 +# Sample_01--Circle +particle bubble ^-0.11 ^-1.75 ^-0.0 0.09 0.09 0.09 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.11 ^-1.75 ^-0.0 0.45 0.45 0.45 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.45 ^0.97 ^0.0 0.09 0.09 0.09 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.45 ^0.97 ^0.0 0.45 0.45 0.45 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.57 ^0.77 ^0.0 0.09 0.09 0.09 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.57 ^0.77 ^0.0 0.45 0.45 0.45 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.75 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_011.mcfunction new file mode 100644 index 000000000..b4427b9ce --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_011.mcfunction @@ -0,0 +1,10 @@ +# frame 91 / 240 +# Sample_01--Circle +particle bubble ^0.07 ^-1.74 ^-0.0 0.091 0.091 0.091 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.07 ^-1.74 ^-0.0 0.455 0.455 0.455 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.54 ^0.81 ^0.0 0.091 0.091 0.091 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.54 ^0.81 ^0.0 0.455 0.455 0.455 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.48 ^0.93 ^0.0 0.091 0.091 0.091 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.48 ^0.93 ^0.0 0.455 0.455 0.455 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.758 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_012.mcfunction new file mode 100644 index 000000000..2c4ff52d5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_012.mcfunction @@ -0,0 +1,10 @@ +# frame 92 / 240 +# Sample_01--Circle +particle bubble ^0.25 ^-1.72 ^-0.0 0.092 0.092 0.092 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.25 ^-1.72 ^-0.0 0.46 0.46 0.46 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.62 ^0.64 ^0.0 0.092 0.092 0.092 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.62 ^0.64 ^0.0 0.46 0.46 0.46 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.37 ^1.08 ^0.0 0.092 0.092 0.092 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.37 ^1.08 ^0.0 0.46 0.46 0.46 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.767 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_013.mcfunction new file mode 100644 index 000000000..3fef29cfc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_013.mcfunction @@ -0,0 +1,10 @@ +# frame 93 / 240 +# Sample_01--Circle +particle bubble ^0.43 ^-1.68 ^-0.0 0.093 0.093 0.093 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.43 ^-1.68 ^-0.0 0.465 0.465 0.465 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.67 ^0.47 ^0.0 0.093 0.093 0.093 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.67 ^0.47 ^0.0 0.465 0.465 0.465 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.24 ^1.21 ^0.0 0.093 0.093 0.093 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.24 ^1.21 ^0.0 0.465 0.465 0.465 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.775 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_014.mcfunction new file mode 100644 index 000000000..10c065212 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_014.mcfunction @@ -0,0 +1,10 @@ +# frame 94 / 240 +# Sample_01--Circle +particle bubble ^0.6 ^-1.62 ^-0.0 0.094 0.094 0.094 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.6 ^-1.62 ^-0.0 0.47 0.47 0.47 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.71 ^0.29 ^0.0 0.094 0.094 0.094 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.71 ^0.29 ^0.0 0.47 0.47 0.47 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.1 ^1.33 ^0.0 0.094 0.094 0.094 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.1 ^1.33 ^0.0 0.47 0.47 0.47 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.783 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_015.mcfunction new file mode 100644 index 000000000..516930daf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_015.mcfunction @@ -0,0 +1,10 @@ +# frame 95 / 240 +# Sample_01--Circle +particle bubble ^0.77 ^-1.55 ^-0.0 0.095 0.095 0.095 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.77 ^-1.55 ^-0.0 0.475 0.475 0.475 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.72 ^0.11 ^0.0 0.095 0.095 0.095 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.72 ^0.11 ^0.0 0.475 0.475 0.475 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.96 ^1.44 ^0.0 0.095 0.095 0.095 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.96 ^1.44 ^0.0 0.475 0.475 0.475 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.792 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_016.mcfunction new file mode 100644 index 000000000..7f434604d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_016.mcfunction @@ -0,0 +1,10 @@ +# frame 96 / 240 +# Sample_01--Circle +particle bubble ^0.92 ^-1.45 ^-0.0 0.096 0.096 0.096 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.92 ^-1.45 ^-0.0 0.48 0.48 0.48 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.72 ^-0.07 ^0.0 0.096 0.096 0.096 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.72 ^-0.07 ^0.0 0.48 0.48 0.48 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.8 ^1.52 ^0.0 0.096 0.096 0.096 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.8 ^1.52 ^0.0 0.48 0.48 0.48 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.8 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_017.mcfunction new file mode 100644 index 000000000..db2a99d97 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_017.mcfunction @@ -0,0 +1,10 @@ +# frame 97 / 240 +# Sample_01--Circle +particle bubble ^1.07 ^-1.34 ^-0.0 0.097 0.097 0.097 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.07 ^-1.34 ^-0.0 0.485 0.485 0.485 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.7 ^-0.25 ^0.0 0.097 0.097 0.097 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.7 ^-0.25 ^0.0 0.485 0.485 0.485 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.63 ^1.59 ^0.0 0.097 0.097 0.097 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.63 ^1.59 ^0.0 0.485 0.485 0.485 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.808 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_018.mcfunction new file mode 100644 index 000000000..cf20ebe9a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_018.mcfunction @@ -0,0 +1,10 @@ +# frame 98 / 240 +# Sample_01--Circle +particle bubble ^1.2 ^-1.22 ^-0.0 0.098 0.098 0.098 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.2 ^-1.22 ^-0.0 0.49 0.49 0.49 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.66 ^-0.43 ^0.0 0.098 0.098 0.098 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.66 ^-0.43 ^0.0 0.49 0.49 0.49 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.46 ^1.65 ^0.0 0.098 0.098 0.098 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.46 ^1.65 ^0.0 0.49 0.49 0.49 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.817 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_019.mcfunction new file mode 100644 index 000000000..4d25bf504 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_019.mcfunction @@ -0,0 +1,10 @@ +# frame 99 / 240 +# Sample_01--Circle +particle bubble ^1.31 ^-1.09 ^-0.0 0.099 0.099 0.099 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.31 ^-1.09 ^-0.0 0.495 0.495 0.495 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.6 ^-0.6 ^0.0 0.099 0.099 0.099 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.6 ^-0.6 ^0.0 0.495 0.495 0.495 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.28 ^1.68 ^0.0 0.099 0.099 0.099 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.28 ^1.68 ^0.0 0.495 0.495 0.495 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.825 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_020.mcfunction new file mode 100644 index 000000000..2cb338708 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_020.mcfunction @@ -0,0 +1,10 @@ +# frame 100 / 240 +# Sample_01--Circle +particle bubble ^1.42 ^-0.94 ^-0.0 0.1 0.1 0.1 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.42 ^-0.94 ^-0.0 0.5 0.5 0.5 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.52 ^-0.76 ^0.0 0.1 0.1 0.1 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.52 ^-0.76 ^0.0 0.5 0.5 0.5 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.1 ^1.7 ^0.0 0.1 0.1 0.1 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.1 ^1.7 ^0.0 0.5 0.5 0.5 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.833 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_021.mcfunction new file mode 100644 index 000000000..15c29a5e5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_021.mcfunction @@ -0,0 +1,10 @@ +# frame 101 / 240 +# Sample_01--Circle +particle bubble ^1.5 ^-0.78 ^-0.0 0.101 0.101 0.101 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.5 ^-0.78 ^-0.0 0.505 0.505 0.505 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.43 ^-0.91 ^0.0 0.101 0.101 0.101 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.43 ^-0.91 ^0.0 0.505 0.505 0.505 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.07 ^1.69 ^0.0 0.101 0.101 0.101 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.07 ^1.69 ^0.0 0.505 0.505 0.505 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.842 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_022.mcfunction new file mode 100644 index 000000000..d3a9cde0f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_022.mcfunction @@ -0,0 +1,10 @@ +# frame 102 / 240 +# Sample_01--Circle +particle bubble ^1.57 ^-0.62 ^-0.0 0.102 0.102 0.102 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.57 ^-0.62 ^-0.0 0.51 0.51 0.51 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.32 ^-1.05 ^0.0 0.102 0.102 0.102 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.32 ^-1.05 ^0.0 0.51 0.51 0.51 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.25 ^1.67 ^0.0 0.102 0.102 0.102 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.25 ^1.67 ^0.0 0.51 0.51 0.51 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.85 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_023.mcfunction new file mode 100644 index 000000000..cc8a282f9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_023.mcfunction @@ -0,0 +1,10 @@ +# frame 103 / 240 +# Sample_01--Circle +particle bubble ^1.62 ^-0.45 ^-0.0 0.103 0.103 0.103 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.62 ^-0.45 ^-0.0 0.515 0.515 0.515 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.2 ^-1.18 ^0.0 0.103 0.103 0.103 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.2 ^-1.18 ^0.0 0.515 0.515 0.515 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.42 ^1.63 ^0.0 0.103 0.103 0.103 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.42 ^1.63 ^0.0 0.515 0.515 0.515 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.858 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_024.mcfunction new file mode 100644 index 000000000..c1fb82d3e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_024.mcfunction @@ -0,0 +1,10 @@ +# frame 104 / 240 +# Sample_01--Circle +particle bubble ^1.66 ^-0.27 ^-0.0 0.104 0.104 0.104 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.66 ^-0.27 ^-0.0 0.52 0.52 0.52 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.07 ^-1.3 ^0.0 0.104 0.104 0.104 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.07 ^-1.3 ^0.0 0.52 0.52 0.52 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.59 ^1.57 ^0.0 0.104 0.104 0.104 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.59 ^1.57 ^0.0 0.52 0.52 0.52 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.867 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_025.mcfunction new file mode 100644 index 000000000..7ad099603 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_025.mcfunction @@ -0,0 +1,10 @@ +# frame 105 / 240 +# Sample_01--Circle +particle bubble ^1.67 ^-0.1 ^-0.0 0.105 0.105 0.105 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.67 ^-0.1 ^-0.0 0.525 0.525 0.525 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.92 ^-1.4 ^0.0 0.105 0.105 0.105 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.92 ^-1.4 ^0.0 0.525 0.525 0.525 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.75 ^1.5 ^0.0 0.105 0.105 0.105 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.75 ^1.5 ^0.0 0.525 0.525 0.525 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.875 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_026.mcfunction new file mode 100644 index 000000000..771f31b62 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_026.mcfunction @@ -0,0 +1,10 @@ +# frame 106 / 240 +# Sample_01--Circle +particle bubble ^1.67 ^0.08 ^-0.0 0.106 0.106 0.106 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.67 ^0.08 ^-0.0 0.53 0.53 0.53 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.77 ^-1.48 ^0.0 0.106 0.106 0.106 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.77 ^-1.48 ^0.0 0.53 0.53 0.53 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.9 ^1.41 ^0.0 0.106 0.106 0.106 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.9 ^1.41 ^0.0 0.53 0.53 0.53 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.883 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_027.mcfunction new file mode 100644 index 000000000..5c6992ffd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_027.mcfunction @@ -0,0 +1,10 @@ +# frame 107 / 240 +# Sample_01--Circle +particle bubble ^1.65 ^0.25 ^-0.0 0.107 0.107 0.107 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.65 ^0.25 ^-0.0 0.535 0.535 0.535 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.61 ^-1.55 ^0.0 0.107 0.107 0.107 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.61 ^-1.55 ^0.0 0.535 0.535 0.535 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.04 ^1.3 ^0.0 0.107 0.107 0.107 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.04 ^1.3 ^0.0 0.535 0.535 0.535 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.892 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_028.mcfunction new file mode 100644 index 000000000..81d20ab66 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_028.mcfunction @@ -0,0 +1,10 @@ +# frame 108 / 240 +# Sample_01--Circle +particle bubble ^1.61 ^0.42 ^-0.0 0.108 0.108 0.108 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.61 ^0.42 ^-0.0 0.54 0.54 0.54 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.44 ^-1.6 ^0.0 0.108 0.108 0.108 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.44 ^-1.6 ^0.0 0.54 0.54 0.54 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.17 ^1.18 ^0.0 0.108 0.108 0.108 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.17 ^1.18 ^0.0 0.54 0.54 0.54 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.9 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_029.mcfunction new file mode 100644 index 000000000..4002689d9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_029.mcfunction @@ -0,0 +1,10 @@ +# frame 109 / 240 +# Sample_01--Circle +particle bubble ^1.55 ^0.59 ^-0.0 0.109 0.109 0.109 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.55 ^0.59 ^-0.0 0.545 0.545 0.545 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.27 ^-1.63 ^0.0 0.109 0.109 0.109 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.27 ^-1.63 ^0.0 0.545 0.545 0.545 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.28 ^1.05 ^0.0 0.109 0.109 0.109 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.28 ^1.05 ^0.0 0.545 0.545 0.545 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.908 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_030.mcfunction new file mode 100644 index 000000000..b4ad52791 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_030.mcfunction @@ -0,0 +1,10 @@ +# frame 110 / 240 +# Sample_01--Circle +particle bubble ^1.47 ^0.74 ^-0.0 0.11 0.11 0.11 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.47 ^0.74 ^-0.0 0.55 0.55 0.55 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.09 ^-1.65 ^0.0 0.11 0.11 0.11 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.09 ^-1.65 ^0.0 0.55 0.55 0.55 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.38 ^0.91 ^0.0 0.11 0.11 0.11 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.38 ^0.91 ^0.0 0.55 0.55 0.55 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.917 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_031.mcfunction new file mode 100644 index 000000000..c0bbbf699 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_031.mcfunction @@ -0,0 +1,10 @@ +# frame 111 / 240 +# Sample_01--Circle +particle bubble ^1.38 ^0.89 ^-0.0 0.111 0.111 0.111 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.38 ^0.89 ^-0.0 0.555 0.555 0.555 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.08 ^-1.64 ^0.0 0.111 0.111 0.111 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.08 ^-1.64 ^0.0 0.555 0.555 0.555 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.46 ^0.75 ^0.0 0.111 0.111 0.111 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.46 ^0.75 ^0.0 0.555 0.555 0.555 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.925 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_032.mcfunction new file mode 100644 index 000000000..e590fdae5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_032.mcfunction @@ -0,0 +1,10 @@ +# frame 112 / 240 +# Sample_01--Circle +particle bubble ^1.28 ^1.03 ^-0.0 0.112 0.112 0.112 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.28 ^1.03 ^-0.0 0.56 0.56 0.56 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.25 ^-1.62 ^0.0 0.112 0.112 0.112 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.25 ^-1.62 ^0.0 0.56 0.56 0.56 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.53 ^0.59 ^0.0 0.112 0.112 0.112 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.53 ^0.59 ^0.0 0.56 0.56 0.56 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.933 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_033.mcfunction new file mode 100644 index 000000000..1d30a94ef --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_033.mcfunction @@ -0,0 +1,10 @@ +# frame 113 / 240 +# Sample_01--Circle +particle bubble ^1.16 ^1.15 ^-0.0 0.113 0.113 0.113 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.16 ^1.15 ^-0.0 0.565 0.565 0.565 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.42 ^-1.58 ^0.0 0.113 0.113 0.113 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.42 ^-1.58 ^0.0 0.565 0.565 0.565 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.58 ^0.43 ^0.0 0.113 0.113 0.113 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.58 ^0.43 ^0.0 0.565 0.565 0.565 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.942 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_034.mcfunction new file mode 100644 index 000000000..1414c00ce --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_034.mcfunction @@ -0,0 +1,10 @@ +# frame 114 / 240 +# Sample_01--Circle +particle bubble ^1.03 ^1.26 ^-0.0 0.114 0.114 0.114 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.03 ^1.26 ^-0.0 0.57 0.57 0.57 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.58 ^-1.52 ^0.0 0.114 0.114 0.114 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.58 ^-1.52 ^0.0 0.57 0.57 0.57 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.61 ^0.26 ^0.0 0.114 0.114 0.114 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.61 ^0.26 ^0.0 0.57 0.57 0.57 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.95 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_035.mcfunction new file mode 100644 index 000000000..008c53864 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_035.mcfunction @@ -0,0 +1,10 @@ +# frame 115 / 240 +# Sample_01--Circle +particle bubble ^0.89 ^1.36 ^-0.0 0.115 0.115 0.115 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.89 ^1.36 ^-0.0 0.575 0.575 0.575 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.73 ^-1.45 ^0.0 0.115 0.115 0.115 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.73 ^-1.45 ^0.0 0.575 0.575 0.575 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.62 ^0.09 ^0.0 0.115 0.115 0.115 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.62 ^0.09 ^0.0 0.575 0.575 0.575 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.958 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_036.mcfunction new file mode 100644 index 000000000..0ec23b467 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_036.mcfunction @@ -0,0 +1,10 @@ +# frame 116 / 240 +# Sample_01--Circle +particle bubble ^0.74 ^1.44 ^-0.0 0.116 0.116 0.116 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.74 ^1.44 ^-0.0 0.58 0.58 0.58 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.88 ^-1.36 ^0.0 0.116 0.116 0.116 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.88 ^-1.36 ^0.0 0.58 0.58 0.58 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.62 ^-0.08 ^0.0 0.116 0.116 0.116 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.62 ^-0.08 ^0.0 0.58 0.58 0.58 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.967 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_037.mcfunction new file mode 100644 index 000000000..71a8ccce3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_037.mcfunction @@ -0,0 +1,10 @@ +# frame 117 / 240 +# Sample_01--Circle +particle bubble ^0.58 ^1.51 ^-0.0 0.117 0.117 0.117 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.58 ^1.51 ^-0.0 0.585 0.585 0.585 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.01 ^-1.26 ^0.0 0.117 0.117 0.117 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.01 ^-1.26 ^0.0 0.585 0.585 0.585 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.6 ^-0.25 ^0.0 0.117 0.117 0.117 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.6 ^-0.25 ^0.0 0.585 0.585 0.585 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.975 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_038.mcfunction new file mode 100644 index 000000000..62e665bc0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_038.mcfunction @@ -0,0 +1,10 @@ +# frame 118 / 240 +# Sample_01--Circle +particle bubble ^0.42 ^1.55 ^-0.0 0.118 0.118 0.118 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.42 ^1.55 ^-0.0 0.59 0.59 0.59 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.14 ^-1.14 ^0.0 0.118 0.118 0.118 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.14 ^-1.14 ^0.0 0.59 0.59 0.59 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.56 ^-0.41 ^0.0 0.118 0.118 0.118 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.56 ^-0.41 ^0.0 0.59 0.59 0.59 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.983 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_039.mcfunction new file mode 100644 index 000000000..fa7623bb0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_039.mcfunction @@ -0,0 +1,10 @@ +# frame 119 / 240 +# Sample_01--Circle +particle bubble ^0.25 ^1.59 ^-0.0 0.119 0.119 0.119 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.25 ^1.59 ^-0.0 0.595 0.595 0.595 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.25 ^-1.01 ^0.0 0.119 0.119 0.119 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.25 ^-1.01 ^0.0 0.595 0.595 0.595 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.5 ^-0.57 ^0.0 0.119 0.119 0.119 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.5 ^-0.57 ^0.0 0.595 0.595 0.595 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 0.992 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_040.mcfunction new file mode 100644 index 000000000..b546b2837 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_040.mcfunction @@ -0,0 +1,10 @@ +# frame 120 / 240 +# Sample_01--Circle +particle bubble ^0.08 ^1.6 ^-0.0 0.12 0.12 0.12 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.08 ^1.6 ^-0.0 0.6 0.6 0.6 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.34 ^-0.87 ^0.0 0.12 0.12 0.12 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.34 ^-0.87 ^0.0 0.6 0.6 0.6 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.43 ^-0.73 ^0.0 0.12 0.12 0.12 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.43 ^-0.73 ^0.0 0.6 0.6 0.6 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.0 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_041.mcfunction new file mode 100644 index 000000000..5b87df130 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_041.mcfunction @@ -0,0 +1,10 @@ +# frame 121 / 240 +# Sample_01--Circle +particle bubble ^-0.08 ^1.59 ^-0.0 0.121 0.121 0.121 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.08 ^1.59 ^-0.0 0.605 0.605 0.605 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.42 ^-0.72 ^0.0 0.121 0.121 0.121 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.42 ^-0.72 ^0.0 0.605 0.605 0.605 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.34 ^-0.87 ^0.0 0.121 0.121 0.121 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.34 ^-0.87 ^0.0 0.605 0.605 0.605 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.008 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_042.mcfunction new file mode 100644 index 000000000..7d2d36d82 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_042.mcfunction @@ -0,0 +1,10 @@ +# frame 122 / 240 +# Sample_01--Circle +particle bubble ^-0.25 ^1.57 ^-0.0 0.122 0.122 0.122 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.25 ^1.57 ^-0.0 0.61 0.61 0.61 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.48 ^-0.57 ^0.0 0.122 0.122 0.122 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.48 ^-0.57 ^0.0 0.61 0.61 0.61 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.24 ^-1.0 ^0.0 0.122 0.122 0.122 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.24 ^-1.0 ^0.0 0.61 0.61 0.61 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.017 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_043.mcfunction new file mode 100644 index 000000000..22bd6ac6e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_043.mcfunction @@ -0,0 +1,10 @@ +# frame 123 / 240 +# Sample_01--Circle +particle bubble ^-0.41 ^1.53 ^-0.0 0.123 0.123 0.123 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.41 ^1.53 ^-0.0 0.615 0.615 0.615 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.53 ^-0.41 ^0.0 0.123 0.123 0.123 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.53 ^-0.41 ^0.0 0.615 0.615 0.615 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.12 ^-1.12 ^0.0 0.123 0.123 0.123 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.12 ^-1.12 ^0.0 0.615 0.615 0.615 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.025 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_044.mcfunction new file mode 100644 index 000000000..4c532fe6a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_044.mcfunction @@ -0,0 +1,10 @@ +# frame 124 / 240 +# Sample_01--Circle +particle bubble ^-0.57 ^1.47 ^-0.0 0.124 0.124 0.124 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.57 ^1.47 ^-0.0 0.62 0.62 0.62 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.56 ^-0.24 ^0.0 0.124 0.124 0.124 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.56 ^-0.24 ^0.0 0.62 0.62 0.62 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.99 ^-1.23 ^0.0 0.124 0.124 0.124 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.99 ^-1.23 ^0.0 0.62 0.62 0.62 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.033 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_045.mcfunction new file mode 100644 index 000000000..677d2fbbd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_045.mcfunction @@ -0,0 +1,10 @@ +# frame 125 / 240 +# Sample_01--Circle +particle bubble ^-0.72 ^1.4 ^-0.0 0.125 0.125 0.125 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.72 ^1.4 ^-0.0 0.625 0.625 0.625 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.57 ^-0.08 ^0.0 0.125 0.125 0.125 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.57 ^-0.08 ^0.0 0.625 0.625 0.625 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.86 ^-1.32 ^0.0 0.125 0.125 0.125 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.86 ^-1.32 ^0.0 0.625 0.625 0.625 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.042 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_046.mcfunction new file mode 100644 index 000000000..b39cb9c37 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_046.mcfunction @@ -0,0 +1,10 @@ +# frame 126 / 240 +# Sample_01--Circle +particle bubble ^-0.86 ^1.31 ^-0.0 0.126 0.126 0.126 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.86 ^1.31 ^-0.0 0.63 0.63 0.63 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.57 ^0.09 ^0.0 0.126 0.126 0.126 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.57 ^0.09 ^0.0 0.63 0.63 0.63 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.71 ^-1.4 ^0.0 0.126 0.126 0.126 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.71 ^-1.4 ^0.0 0.63 0.63 0.63 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.05 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_047.mcfunction new file mode 100644 index 000000000..769ff941e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_047.mcfunction @@ -0,0 +1,10 @@ +# frame 127 / 240 +# Sample_01--Circle +particle bubble ^-0.99 ^1.21 ^-0.0 0.127 0.127 0.127 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.99 ^1.21 ^-0.0 0.635 0.635 0.635 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.55 ^0.25 ^0.0 0.127 0.127 0.127 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.55 ^0.25 ^0.0 0.635 0.635 0.635 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.56 ^-1.46 ^0.0 0.127 0.127 0.127 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.56 ^-1.46 ^0.0 0.635 0.635 0.635 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.058 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_048.mcfunction new file mode 100644 index 000000000..78855921e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_048.mcfunction @@ -0,0 +1,10 @@ +# frame 128 / 240 +# Sample_01--Circle +particle bubble ^-1.11 ^1.1 ^-0.0 0.128 0.128 0.128 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.11 ^1.1 ^-0.0 0.64 0.64 0.64 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.51 ^0.41 ^0.0 0.128 0.128 0.128 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.51 ^0.41 ^0.0 0.64 0.64 0.64 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.4 ^-1.51 ^0.0 0.128 0.128 0.128 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.4 ^-1.51 ^0.0 0.64 0.64 0.64 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.067 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_049.mcfunction new file mode 100644 index 000000000..e394cf0be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_049.mcfunction @@ -0,0 +1,10 @@ +# frame 129 / 240 +# Sample_01--Circle +particle bubble ^-1.21 ^0.97 ^-0.0 0.129 0.129 0.129 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.21 ^0.97 ^-0.0 0.645 0.645 0.645 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.45 ^0.56 ^0.0 0.129 0.129 0.129 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.45 ^0.56 ^0.0 0.645 0.645 0.645 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.24 ^-1.54 ^0.0 0.129 0.129 0.129 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.24 ^-1.54 ^0.0 0.645 0.645 0.645 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.075 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_050.mcfunction new file mode 100644 index 000000000..16d34fa09 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_050.mcfunction @@ -0,0 +1,10 @@ +# frame 130 / 240 +# Sample_01--Circle +particle bubble ^-1.3 ^0.84 ^-0.0 0.13 0.13 0.13 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.3 ^0.84 ^-0.0 0.65 0.65 0.65 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.38 ^0.71 ^0.0 0.13 0.13 0.13 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.38 ^0.71 ^0.0 0.65 0.65 0.65 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.07 ^-1.55 ^0.0 0.13 0.13 0.13 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.07 ^-1.55 ^0.0 0.65 0.65 0.65 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.083 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_051.mcfunction new file mode 100644 index 000000000..b185ef02a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_051.mcfunction @@ -0,0 +1,10 @@ +# frame 131 / 240 +# Sample_01--Circle +particle bubble ^-1.38 ^0.7 ^-0.0 0.131 0.131 0.131 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.38 ^0.7 ^-0.0 0.655 0.655 0.655 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.29 ^0.85 ^0.0 0.131 0.131 0.131 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.29 ^0.85 ^0.0 0.655 0.655 0.655 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.09 ^-1.54 ^0.0 0.131 0.131 0.131 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.09 ^-1.54 ^0.0 0.655 0.655 0.655 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.092 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_052.mcfunction new file mode 100644 index 000000000..dfbd51088 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_052.mcfunction @@ -0,0 +1,10 @@ +# frame 132 / 240 +# Sample_01--Circle +particle bubble ^-1.44 ^0.54 ^-0.0 0.132 0.132 0.132 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.44 ^0.54 ^-0.0 0.66 0.66 0.66 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.19 ^0.98 ^0.0 0.132 0.132 0.132 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.19 ^0.98 ^0.0 0.66 0.66 0.66 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.25 ^-1.52 ^0.0 0.132 0.132 0.132 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.25 ^-1.52 ^0.0 0.66 0.66 0.66 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.1 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_053.mcfunction new file mode 100644 index 000000000..5fc00a485 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_053.mcfunction @@ -0,0 +1,10 @@ +# frame 133 / 240 +# Sample_01--Circle +particle bubble ^-1.48 ^0.39 ^-0.0 0.133 0.133 0.133 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.48 ^0.39 ^-0.0 0.665 0.665 0.665 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.08 ^1.09 ^0.0 0.133 0.133 0.133 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.08 ^1.09 ^0.0 0.665 0.665 0.665 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.41 ^-1.48 ^0.0 0.133 0.133 0.133 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.41 ^-1.48 ^0.0 0.665 0.665 0.665 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.108 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_054.mcfunction new file mode 100644 index 000000000..5c04dbc32 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_054.mcfunction @@ -0,0 +1,10 @@ +# frame 134 / 240 +# Sample_01--Circle +particle bubble ^-1.51 ^0.23 ^-0.0 0.134 0.134 0.134 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.51 ^0.23 ^-0.0 0.67 0.67 0.67 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.96 ^1.19 ^0.0 0.134 0.134 0.134 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.96 ^1.19 ^0.0 0.67 0.67 0.67 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.56 ^-1.43 ^0.0 0.134 0.134 0.134 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.56 ^-1.43 ^0.0 0.67 0.67 0.67 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.117 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_055.mcfunction new file mode 100644 index 000000000..c9f08e3c2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_055.mcfunction @@ -0,0 +1,10 @@ +# frame 135 / 240 +# Sample_01--Circle +particle bubble ^-1.52 ^0.07 ^-0.0 0.135 0.135 0.135 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.52 ^0.07 ^-0.0 0.675 0.675 0.675 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.82 ^1.28 ^0.0 0.135 0.135 0.135 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.82 ^1.28 ^0.0 0.675 0.675 0.675 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.7 ^-1.35 ^0.0 0.135 0.135 0.135 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.7 ^-1.35 ^0.0 0.675 0.675 0.675 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.125 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_056.mcfunction new file mode 100644 index 000000000..2fe81fccf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_056.mcfunction @@ -0,0 +1,10 @@ +# frame 136 / 240 +# Sample_01--Circle +particle bubble ^-1.52 ^-0.09 ^-0.0 0.136 0.136 0.136 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.52 ^-0.09 ^-0.0 0.68 0.68 0.68 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.68 ^1.36 ^0.0 0.136 0.136 0.136 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.68 ^1.36 ^0.0 0.68 0.68 0.68 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.84 ^-1.27 ^0.0 0.136 0.136 0.136 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.84 ^-1.27 ^0.0 0.68 0.68 0.68 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.133 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_057.mcfunction new file mode 100644 index 000000000..de13693a6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_057.mcfunction @@ -0,0 +1,10 @@ +# frame 137 / 240 +# Sample_01--Circle +particle bubble ^-1.49 ^-0.25 ^-0.0 0.137 0.137 0.137 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.49 ^-0.25 ^-0.0 0.685 0.685 0.685 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.53 ^1.42 ^0.0 0.137 0.137 0.137 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.53 ^1.42 ^0.0 0.685 0.685 0.685 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.96 ^-1.17 ^0.0 0.137 0.137 0.137 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.96 ^-1.17 ^0.0 0.685 0.685 0.685 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.142 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_058.mcfunction new file mode 100644 index 000000000..58e58c328 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_058.mcfunction @@ -0,0 +1,10 @@ +# frame 138 / 240 +# Sample_01--Circle +particle bubble ^-1.46 ^-0.4 ^-0.0 0.138 0.138 0.138 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.46 ^-0.4 ^-0.0 0.69 0.69 0.69 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.38 ^1.46 ^0.0 0.138 0.138 0.138 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.38 ^1.46 ^0.0 0.69 0.69 0.69 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.08 ^-1.06 ^0.0 0.138 0.138 0.138 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.08 ^-1.06 ^0.0 0.69 0.69 0.69 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.15 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_059.mcfunction new file mode 100644 index 000000000..37f84fc25 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_059.mcfunction @@ -0,0 +1,10 @@ +# frame 139 / 240 +# Sample_01--Circle +particle bubble ^-1.4 ^-0.55 ^-0.0 0.139 0.139 0.139 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.4 ^-0.55 ^-0.0 0.695 0.695 0.695 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.22 ^1.49 ^0.0 0.139 0.139 0.139 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.22 ^1.49 ^0.0 0.695 0.695 0.695 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.18 ^-0.94 ^0.0 0.139 0.139 0.139 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.18 ^-0.94 ^0.0 0.695 0.695 0.695 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.158 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_060.mcfunction new file mode 100644 index 000000000..ed3b13e32 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_060.mcfunction @@ -0,0 +1,10 @@ +# frame 140 / 240 +# Sample_01--Circle +particle bubble ^-1.33 ^-0.69 ^-0.0 0.14 0.14 0.14 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.33 ^-0.69 ^-0.0 0.7 0.7 0.7 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.07 ^1.5 ^0.0 0.14 0.14 0.14 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.07 ^1.5 ^0.0 0.7 0.7 0.7 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.26 ^-0.81 ^0.0 0.14 0.14 0.14 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.26 ^-0.81 ^0.0 0.7 0.7 0.7 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.167 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_061.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_061.mcfunction new file mode 100644 index 000000000..1f47e7362 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_061.mcfunction @@ -0,0 +1,10 @@ +# frame 141 / 240 +# Sample_01--Circle +particle bubble ^-1.25 ^-0.83 ^-0.0 0.141 0.141 0.141 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.25 ^-0.83 ^-0.0 0.705 0.705 0.705 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.09 ^1.49 ^0.0 0.141 0.141 0.141 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.09 ^1.49 ^0.0 0.705 0.705 0.705 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.34 ^-0.67 ^0.0 0.141 0.141 0.141 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.34 ^-0.67 ^0.0 0.705 0.705 0.705 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.175 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_062.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_062.mcfunction new file mode 100644 index 000000000..002a3b339 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_062.mcfunction @@ -0,0 +1,10 @@ +# frame 142 / 240 +# Sample_01--Circle +particle bubble ^-1.15 ^-0.95 ^-0.0 0.142 0.142 0.142 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.15 ^-0.95 ^-0.0 0.71 0.71 0.71 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.25 ^1.47 ^0.0 0.142 0.142 0.142 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.25 ^1.47 ^0.0 0.71 0.71 0.71 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.4 ^-0.52 ^0.0 0.142 0.142 0.142 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.4 ^-0.52 ^0.0 0.71 0.71 0.71 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.183 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_063.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_063.mcfunction new file mode 100644 index 000000000..a7d64045e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_063.mcfunction @@ -0,0 +1,10 @@ +# frame 143 / 240 +# Sample_01--Circle +particle bubble ^-1.04 ^-1.06 ^-0.0 0.143 0.143 0.143 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.04 ^-1.06 ^-0.0 0.715 0.715 0.715 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.4 ^1.43 ^0.0 0.143 0.143 0.143 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.4 ^1.43 ^0.0 0.715 0.715 0.715 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.44 ^-0.37 ^0.0 0.143 0.143 0.143 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.44 ^-0.37 ^0.0 0.715 0.715 0.715 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.192 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_064.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_064.mcfunction new file mode 100644 index 000000000..d3e771a33 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_064.mcfunction @@ -0,0 +1,10 @@ +# frame 144 / 240 +# Sample_01--Circle +particle bubble ^-0.92 ^-1.16 ^-0.0 0.144 0.144 0.144 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.92 ^-1.16 ^-0.0 0.72 0.72 0.72 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.54 ^1.38 ^0.0 0.144 0.144 0.144 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.54 ^1.38 ^0.0 0.72 0.72 0.72 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.46 ^-0.22 ^0.0 0.144 0.144 0.144 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.46 ^-0.22 ^0.0 0.72 0.72 0.72 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.2 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_065.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_065.mcfunction new file mode 100644 index 000000000..7540e30eb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_065.mcfunction @@ -0,0 +1,10 @@ +# frame 145 / 240 +# Sample_01--Circle +particle bubble ^-0.79 ^-1.25 ^-0.0 0.145 0.145 0.145 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.79 ^-1.25 ^-0.0 0.725 0.725 0.725 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.68 ^1.31 ^0.0 0.145 0.145 0.145 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.68 ^1.31 ^0.0 0.725 0.725 0.725 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.47 ^-0.06 ^0.0 0.145 0.145 0.145 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.47 ^-0.06 ^0.0 0.725 0.725 0.725 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.208 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_066.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_066.mcfunction new file mode 100644 index 000000000..8db6077dc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_066.mcfunction @@ -0,0 +1,10 @@ +# frame 146 / 240 +# Sample_01--Circle +particle bubble ^-0.65 ^-1.32 ^-0.0 0.146 0.146 0.146 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.65 ^-1.32 ^-0.0 0.73 0.73 0.73 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.81 ^1.22 ^0.0 0.146 0.146 0.146 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.81 ^1.22 ^0.0 0.73 0.73 0.73 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.47 ^0.09 ^0.0 0.146 0.146 0.146 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.47 ^0.09 ^0.0 0.73 0.73 0.73 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.217 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_067.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_067.mcfunction new file mode 100644 index 000000000..ec36ebe3f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_067.mcfunction @@ -0,0 +1,10 @@ +# frame 147 / 240 +# Sample_01--Circle +particle bubble ^-0.51 ^-1.37 ^-0.0 0.147 0.147 0.147 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.51 ^-1.37 ^-0.0 0.735 0.735 0.735 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.94 ^1.13 ^0.0 0.147 0.147 0.147 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.94 ^1.13 ^0.0 0.735 0.735 0.735 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.44 ^0.25 ^0.0 0.147 0.147 0.147 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.44 ^0.25 ^0.0 0.735 0.735 0.735 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.225 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_068.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_068.mcfunction new file mode 100644 index 000000000..d12250d9a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_068.mcfunction @@ -0,0 +1,10 @@ +# frame 148 / 240 +# Sample_01--Circle +particle bubble ^-0.36 ^-1.41 ^-0.0 0.148 0.148 0.148 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.36 ^-1.41 ^-0.0 0.74 0.74 0.74 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.04 ^1.02 ^0.0 0.148 0.148 0.148 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.04 ^1.02 ^0.0 0.74 0.74 0.74 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.41 ^0.39 ^0.0 0.148 0.148 0.148 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.41 ^0.39 ^0.0 0.74 0.74 0.74 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.233 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_069.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_069.mcfunction new file mode 100644 index 000000000..c45f8bfaa --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_069.mcfunction @@ -0,0 +1,10 @@ +# frame 149 / 240 +# Sample_01--Circle +particle bubble ^-0.21 ^-1.44 ^-0.0 0.149 0.149 0.149 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.21 ^-1.44 ^-0.0 0.745 0.745 0.745 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.14 ^0.9 ^0.0 0.149 0.149 0.149 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.14 ^0.9 ^0.0 0.745 0.745 0.745 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.35 ^0.54 ^0.0 0.149 0.149 0.149 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.35 ^0.54 ^0.0 0.745 0.745 0.745 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.242 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_070.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_070.mcfunction new file mode 100644 index 000000000..b0b68999a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_070.mcfunction @@ -0,0 +1,10 @@ +# frame 150 / 240 +# Sample_01--Circle +particle bubble ^-0.06 ^-1.45 ^-0.0 0.15 0.15 0.15 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.06 ^-1.45 ^-0.0 0.75 0.75 0.75 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.23 ^0.77 ^0.0 0.15 0.15 0.15 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.23 ^0.77 ^0.0 0.75 0.75 0.75 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.28 ^0.67 ^0.0 0.15 0.15 0.15 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.28 ^0.67 ^0.0 0.75 0.75 0.75 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.25 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_071.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_071.mcfunction new file mode 100644 index 000000000..5a6962901 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_071.mcfunction @@ -0,0 +1,10 @@ +# frame 151 / 240 +# Sample_01--Circle +particle bubble ^0.09 ^-1.44 ^-0.0 0.151 0.151 0.151 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.09 ^-1.44 ^-0.0 0.755 0.755 0.755 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.3 ^0.64 ^0.0 0.151 0.151 0.151 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.3 ^0.64 ^0.0 0.755 0.755 0.755 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.2 ^0.8 ^0.0 0.151 0.151 0.151 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.2 ^0.8 ^0.0 0.755 0.755 0.755 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.258 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_072.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_072.mcfunction new file mode 100644 index 000000000..a03b9873f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_072.mcfunction @@ -0,0 +1,10 @@ +# frame 152 / 240 +# Sample_01--Circle +particle bubble ^0.24 ^-1.42 ^-0.0 0.152 0.152 0.152 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.24 ^-1.42 ^-0.0 0.76 0.76 0.76 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.35 ^0.5 ^0.0 0.152 0.152 0.152 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.35 ^0.5 ^0.0 0.76 0.76 0.76 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.11 ^0.92 ^0.0 0.152 0.152 0.152 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.11 ^0.92 ^0.0 0.76 0.76 0.76 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.267 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_073.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_073.mcfunction new file mode 100644 index 000000000..30d909574 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_073.mcfunction @@ -0,0 +1,10 @@ +# frame 153 / 240 +# Sample_01--Circle +particle bubble ^0.39 ^-1.38 ^-0.0 0.153 0.153 0.153 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.39 ^-1.38 ^-0.0 0.765 0.765 0.765 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.39 ^0.35 ^0.0 0.153 0.153 0.153 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.39 ^0.35 ^0.0 0.765 0.765 0.765 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.0 ^1.03 ^0.0 0.153 0.153 0.153 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.0 ^1.03 ^0.0 0.765 0.765 0.765 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.275 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_074.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_074.mcfunction new file mode 100644 index 000000000..3f7683350 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_074.mcfunction @@ -0,0 +1,10 @@ +# frame 154 / 240 +# Sample_01--Circle +particle bubble ^0.53 ^-1.33 ^-0.0 0.154 0.154 0.154 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.53 ^-1.33 ^-0.0 0.77 0.77 0.77 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.42 ^0.2 ^0.0 0.154 0.154 0.154 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.42 ^0.2 ^0.0 0.77 0.77 0.77 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.88 ^1.12 ^0.0 0.154 0.154 0.154 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.88 ^1.12 ^0.0 0.77 0.77 0.77 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.283 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_075.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_075.mcfunction new file mode 100644 index 000000000..825b1b866 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_075.mcfunction @@ -0,0 +1,10 @@ +# frame 155 / 240 +# Sample_01--Circle +particle bubble ^0.67 ^-1.26 ^-0.0 0.155 0.155 0.155 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.67 ^-1.26 ^-0.0 0.775 0.775 0.775 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.42 ^0.05 ^0.0 0.155 0.155 0.155 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.42 ^0.05 ^0.0 0.775 0.775 0.775 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.76 ^1.21 ^0.0 0.155 0.155 0.155 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.76 ^1.21 ^0.0 0.775 0.775 0.775 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.292 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_076.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_076.mcfunction new file mode 100644 index 000000000..710b3dddd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_076.mcfunction @@ -0,0 +1,10 @@ +# frame 156 / 240 +# Sample_01--Circle +particle bubble ^0.79 ^-1.18 ^-0.0 0.156 0.156 0.156 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.79 ^-1.18 ^-0.0 0.78 0.78 0.78 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.42 ^-0.1 ^0.0 0.156 0.156 0.156 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.42 ^-0.1 ^0.0 0.78 0.78 0.78 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.62 ^1.28 ^0.0 0.156 0.156 0.156 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.62 ^1.28 ^0.0 0.78 0.78 0.78 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.3 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_077.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_077.mcfunction new file mode 100644 index 000000000..161160842 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_077.mcfunction @@ -0,0 +1,10 @@ +# frame 157 / 240 +# Sample_01--Circle +particle bubble ^0.91 ^-1.09 ^-0.0 0.157 0.157 0.157 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.91 ^-1.09 ^-0.0 0.785 0.785 0.785 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.39 ^-0.24 ^0.0 0.157 0.157 0.157 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.39 ^-0.24 ^0.0 0.785 0.785 0.785 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.49 ^1.33 ^0.0 0.157 0.157 0.157 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.49 ^1.33 ^0.0 0.785 0.785 0.785 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.308 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_078.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_078.mcfunction new file mode 100644 index 000000000..132b0dde9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_078.mcfunction @@ -0,0 +1,10 @@ +# frame 158 / 240 +# Sample_01--Circle +particle bubble ^1.01 ^-0.98 ^-0.0 0.158 0.158 0.158 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.01 ^-0.98 ^-0.0 0.79 0.79 0.79 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.36 ^-0.39 ^0.0 0.158 0.158 0.158 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.36 ^-0.39 ^0.0 0.79 0.79 0.79 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.34 ^1.37 ^0.0 0.158 0.158 0.158 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.34 ^1.37 ^0.0 0.79 0.79 0.79 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.317 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_079.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_079.mcfunction new file mode 100644 index 000000000..34d493bab --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_079.mcfunction @@ -0,0 +1,10 @@ +# frame 159 / 240 +# Sample_01--Circle +particle bubble ^1.11 ^-0.87 ^-0.0 0.159 0.159 0.159 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.11 ^-0.87 ^-0.0 0.795 0.795 0.795 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.3 ^-0.53 ^0.0 0.159 0.159 0.159 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.3 ^-0.53 ^0.0 0.795 0.795 0.795 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.2 ^1.39 ^0.0 0.159 0.159 0.159 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.2 ^1.39 ^0.0 0.795 0.795 0.795 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.325 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_080.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_080.mcfunction new file mode 100644 index 000000000..d79b27b31 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_02/fc_080.mcfunction @@ -0,0 +1,10 @@ +# frame 160 / 240 +# Sample_01--Circle +particle bubble ^1.19 ^-0.74 ^-0.0 0.16 0.16 0.16 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.19 ^-0.74 ^-0.0 0.8 0.8 0.8 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.24 ^-0.66 ^0.0 0.16 0.16 0.16 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.24 ^-0.66 ^0.0 0.8 0.8 0.8 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.05 ^1.4 ^0.0 0.16 0.16 0.16 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.05 ^1.4 ^0.0 0.8 0.8 0.8 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.333 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_001.mcfunction new file mode 100644 index 000000000..4f31306ae --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_001.mcfunction @@ -0,0 +1,10 @@ +# frame 161 / 240 +# Sample_01--Circle +particle bubble ^1.25 ^-0.61 ^-0.0 0.161 0.161 0.161 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.25 ^-0.61 ^-0.0 0.805 0.805 0.805 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.16 ^-0.78 ^0.0 0.161 0.161 0.161 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.16 ^-0.78 ^0.0 0.805 0.805 0.805 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.1 ^1.39 ^0.0 0.161 0.161 0.161 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.1 ^1.39 ^0.0 0.805 0.805 0.805 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.342 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_002.mcfunction new file mode 100644 index 000000000..3ccf6a3ee --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_002.mcfunction @@ -0,0 +1,10 @@ +# frame 162 / 240 +# Sample_01--Circle +particle bubble ^1.31 ^-0.47 ^-0.0 0.162 0.162 0.162 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.31 ^-0.47 ^-0.0 0.81 0.81 0.81 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.06 ^-0.89 ^0.0 0.162 0.162 0.162 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.06 ^-0.89 ^0.0 0.81 0.81 0.81 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.24 ^1.37 ^0.0 0.162 0.162 0.162 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.24 ^1.37 ^0.0 0.81 0.81 0.81 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.35 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_003.mcfunction new file mode 100644 index 000000000..60c7b035f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_003.mcfunction @@ -0,0 +1,10 @@ +# frame 163 / 240 +# Sample_01--Circle +particle bubble ^1.34 ^-0.33 ^-0.0 0.163 0.163 0.163 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.34 ^-0.33 ^-0.0 0.815 0.815 0.815 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.96 ^-1.0 ^0.0 0.163 0.163 0.163 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.96 ^-1.0 ^0.0 0.815 0.815 0.815 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.38 ^1.33 ^0.0 0.163 0.163 0.163 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.38 ^1.33 ^0.0 0.815 0.815 0.815 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.358 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_004.mcfunction new file mode 100644 index 000000000..f6f9c06c8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_004.mcfunction @@ -0,0 +1,10 @@ +# frame 164 / 240 +# Sample_01--Circle +particle bubble ^1.37 ^-0.19 ^-0.0 0.164 0.164 0.164 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.37 ^-0.19 ^-0.0 0.82 0.82 0.82 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.85 ^-1.09 ^0.0 0.164 0.164 0.164 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.85 ^-1.09 ^0.0 0.82 0.82 0.82 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.52 ^1.28 ^0.0 0.164 0.164 0.164 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.52 ^1.28 ^0.0 0.82 0.82 0.82 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.367 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_005.mcfunction new file mode 100644 index 000000000..33d06bd97 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_005.mcfunction @@ -0,0 +1,10 @@ +# frame 165 / 240 +# Sample_01--Circle +particle bubble ^1.37 ^-0.05 ^-0.0 0.165 0.165 0.165 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.37 ^-0.05 ^-0.0 0.825 0.825 0.825 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.73 ^-1.17 ^0.0 0.165 0.165 0.165 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.73 ^-1.17 ^0.0 0.825 0.825 0.825 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.65 ^1.21 ^0.0 0.165 0.165 0.165 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.65 ^1.21 ^0.0 0.825 0.825 0.825 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.375 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_006.mcfunction new file mode 100644 index 000000000..b849ad9f1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_006.mcfunction @@ -0,0 +1,10 @@ +# frame 166 / 240 +# Sample_01--Circle +particle bubble ^1.37 ^0.1 ^-0.0 0.166 0.166 0.166 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.37 ^0.1 ^-0.0 0.83 0.83 0.83 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.6 ^-1.23 ^0.0 0.166 0.166 0.166 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.6 ^-1.23 ^0.0 0.83 0.83 0.83 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.77 ^1.13 ^0.0 0.166 0.166 0.166 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.77 ^1.13 ^0.0 0.83 0.83 0.83 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.383 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_007.mcfunction new file mode 100644 index 000000000..f68924b4f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_007.mcfunction @@ -0,0 +1,10 @@ +# frame 167 / 240 +# Sample_01--Circle +particle bubble ^1.34 ^0.24 ^-0.0 0.167 0.167 0.167 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.34 ^0.24 ^-0.0 0.835 0.835 0.835 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.46 ^-1.28 ^0.0 0.167 0.167 0.167 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.46 ^-1.28 ^0.0 0.835 0.835 0.835 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.88 ^1.04 ^0.0 0.167 0.167 0.167 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.88 ^1.04 ^0.0 0.835 0.835 0.835 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.392 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_008.mcfunction new file mode 100644 index 000000000..329b58c78 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_008.mcfunction @@ -0,0 +1,10 @@ +# frame 168 / 240 +# Sample_01--Circle +particle bubble ^1.31 ^0.38 ^-0.0 0.168 0.168 0.168 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.31 ^0.38 ^-0.0 0.84 0.84 0.84 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.32 ^-1.32 ^0.0 0.168 0.168 0.168 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.32 ^-1.32 ^0.0 0.84 0.84 0.84 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.98 ^0.94 ^0.0 0.168 0.168 0.168 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.98 ^0.94 ^0.0 0.84 0.84 0.84 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.4 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_009.mcfunction new file mode 100644 index 000000000..b6eb17e06 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_009.mcfunction @@ -0,0 +1,10 @@ +# frame 169 / 240 +# Sample_01--Circle +particle bubble ^1.25 ^0.51 ^-0.0 0.169 0.169 0.169 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.25 ^0.51 ^-0.0 0.845 0.845 0.845 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.18 ^-1.34 ^0.0 0.169 0.169 0.169 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.18 ^-1.34 ^0.0 0.845 0.845 0.845 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.07 ^0.83 ^0.0 0.169 0.169 0.169 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.07 ^0.83 ^0.0 0.845 0.845 0.845 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.408 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_010.mcfunction new file mode 100644 index 000000000..ef926b5ed --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_010.mcfunction @@ -0,0 +1,10 @@ +# frame 170 / 240 +# Sample_01--Circle +particle bubble ^1.19 ^0.64 ^-0.0 0.17 0.17 0.17 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.19 ^0.64 ^-0.0 0.85 0.85 0.85 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.04 ^-1.35 ^0.0 0.17 0.17 0.17 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.04 ^-1.35 ^0.0 0.85 0.85 0.85 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.15 ^0.71 ^0.0 0.17 0.17 0.17 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.15 ^0.71 ^0.0 0.85 0.85 0.85 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.417 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_011.mcfunction new file mode 100644 index 000000000..90dbb4021 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_011.mcfunction @@ -0,0 +1,10 @@ +# frame 171 / 240 +# Sample_01--Circle +particle bubble ^1.11 ^0.76 ^-0.0 0.171 0.171 0.171 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.11 ^0.76 ^-0.0 0.855 0.855 0.855 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.1 ^-1.34 ^0.0 0.171 0.171 0.171 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.1 ^-1.34 ^0.0 0.855 0.855 0.855 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.21 ^0.58 ^0.0 0.171 0.171 0.171 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.21 ^0.58 ^0.0 0.855 0.855 0.855 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.425 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_012.mcfunction new file mode 100644 index 000000000..03d0d96e7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_012.mcfunction @@ -0,0 +1,10 @@ +# frame 172 / 240 +# Sample_01--Circle +particle bubble ^1.02 ^0.87 ^-0.0 0.172 0.172 0.172 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.02 ^0.87 ^-0.0 0.86 0.86 0.86 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.24 ^-1.32 ^0.0 0.172 0.172 0.172 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.24 ^-1.32 ^0.0 0.86 0.86 0.86 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.26 ^0.45 ^0.0 0.172 0.172 0.172 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.26 ^0.45 ^0.0 0.86 0.86 0.86 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.433 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_013.mcfunction new file mode 100644 index 000000000..f99c3507e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_013.mcfunction @@ -0,0 +1,10 @@ +# frame 173 / 240 +# Sample_01--Circle +particle bubble ^0.92 ^0.97 ^-0.0 0.173 0.173 0.173 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.92 ^0.97 ^-0.0 0.865 0.865 0.865 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.38 ^-1.28 ^0.0 0.173 0.173 0.173 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.38 ^-1.28 ^0.0 0.865 0.865 0.865 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.3 ^0.32 ^0.0 0.173 0.173 0.173 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.3 ^0.32 ^0.0 0.865 0.865 0.865 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.442 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_014.mcfunction new file mode 100644 index 000000000..304c67cc8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_014.mcfunction @@ -0,0 +1,10 @@ +# frame 174 / 240 +# Sample_01--Circle +particle bubble ^0.81 ^1.05 ^-0.0 0.174 0.174 0.174 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.81 ^1.05 ^-0.0 0.87 0.87 0.87 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.51 ^-1.23 ^0.0 0.174 0.174 0.174 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.51 ^-1.23 ^0.0 0.87 0.87 0.87 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.32 ^0.18 ^0.0 0.174 0.174 0.174 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.32 ^0.18 ^0.0 0.87 0.87 0.87 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.45 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_015.mcfunction new file mode 100644 index 000000000..ddc3193a2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_015.mcfunction @@ -0,0 +1,10 @@ +# frame 175 / 240 +# Sample_01--Circle +particle bubble ^0.69 ^1.13 ^-0.0 0.175 0.175 0.175 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.69 ^1.13 ^-0.0 0.875 0.875 0.875 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.63 ^-1.17 ^0.0 0.175 0.175 0.175 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.63 ^-1.17 ^0.0 0.875 0.875 0.875 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.32 ^0.04 ^0.0 0.175 0.175 0.175 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.32 ^0.04 ^0.0 0.875 0.875 0.875 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.458 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_016.mcfunction new file mode 100644 index 000000000..29479bd2a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_016.mcfunction @@ -0,0 +1,10 @@ +# frame 176 / 240 +# Sample_01--Circle +particle bubble ^0.57 ^1.19 ^-0.0 0.176 0.176 0.176 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.57 ^1.19 ^-0.0 0.88 0.88 0.88 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.75 ^-1.09 ^0.0 0.176 0.176 0.176 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.75 ^-1.09 ^0.0 0.88 0.88 0.88 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.32 ^-0.1 ^0.0 0.176 0.176 0.176 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.32 ^-0.1 ^0.0 0.88 0.88 0.88 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.467 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_017.mcfunction new file mode 100644 index 000000000..05cbaced9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_017.mcfunction @@ -0,0 +1,10 @@ +# frame 177 / 240 +# Sample_01--Circle +particle bubble ^0.44 ^1.24 ^-0.0 0.177 0.177 0.177 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.44 ^1.24 ^-0.0 0.885 0.885 0.885 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.85 ^-1.0 ^0.0 0.177 0.177 0.177 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.85 ^-1.0 ^0.0 0.885 0.885 0.885 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.29 ^-0.24 ^0.0 0.177 0.177 0.177 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.29 ^-0.24 ^0.0 0.885 0.885 0.885 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.475 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_018.mcfunction new file mode 100644 index 000000000..f1f9b4c15 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_018.mcfunction @@ -0,0 +1,10 @@ +# frame 178 / 240 +# Sample_01--Circle +particle bubble ^0.31 ^1.27 ^-0.0 0.178 0.178 0.178 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.31 ^1.27 ^-0.0 0.89 0.89 0.89 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.95 ^-0.9 ^0.0 0.178 0.178 0.178 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.95 ^-0.9 ^0.0 0.89 0.89 0.89 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.26 ^-0.37 ^0.0 0.178 0.178 0.178 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.26 ^-0.37 ^0.0 0.89 0.89 0.89 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.483 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_019.mcfunction new file mode 100644 index 000000000..8f035ea4f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_019.mcfunction @@ -0,0 +1,10 @@ +# frame 179 / 240 +# Sample_01--Circle +particle bubble ^0.17 ^1.29 ^-0.0 0.179 0.179 0.179 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.17 ^1.29 ^-0.0 0.895 0.895 0.895 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.03 ^-0.79 ^0.0 0.179 0.179 0.179 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.03 ^-0.79 ^0.0 0.895 0.895 0.895 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.21 ^-0.5 ^0.0 0.179 0.179 0.179 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.21 ^-0.5 ^0.0 0.895 0.895 0.895 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.492 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_020.mcfunction new file mode 100644 index 000000000..572d6535d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_020.mcfunction @@ -0,0 +1,10 @@ +# frame 180 / 240 +# Sample_01--Circle +particle bubble ^0.03 ^1.3 ^-0.0 0.18 0.18 0.18 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.03 ^1.3 ^-0.0 0.9 0.9 0.9 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.11 ^-0.68 ^0.0 0.18 0.18 0.18 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.11 ^-0.68 ^0.0 0.9 0.9 0.9 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.14 ^-0.62 ^0.0 0.18 0.18 0.18 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.14 ^-0.62 ^0.0 0.9 0.9 0.9 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.5 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_021.mcfunction new file mode 100644 index 000000000..b83fed871 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_021.mcfunction @@ -0,0 +1,10 @@ +# frame 181 / 240 +# Sample_01--Circle +particle bubble ^-0.1 ^1.29 ^-0.0 0.181 0.181 0.181 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.1 ^1.29 ^-0.0 0.905 0.905 0.905 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.17 ^-0.56 ^0.0 0.181 0.181 0.181 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.17 ^-0.56 ^0.0 0.905 0.905 0.905 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.07 ^-0.73 ^0.0 0.181 0.181 0.181 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.07 ^-0.73 ^0.0 0.905 0.905 0.905 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.508 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_022.mcfunction new file mode 100644 index 000000000..1ede4b81e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_022.mcfunction @@ -0,0 +1,10 @@ +# frame 182 / 240 +# Sample_01--Circle +particle bubble ^-0.24 ^1.27 ^-0.0 0.182 0.182 0.182 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.24 ^1.27 ^-0.0 0.91 0.91 0.91 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.22 ^-0.43 ^0.0 0.182 0.182 0.182 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.22 ^-0.43 ^0.0 0.91 0.91 0.91 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.98 ^-0.84 ^0.0 0.182 0.182 0.182 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.98 ^-0.84 ^0.0 0.91 0.91 0.91 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.517 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_023.mcfunction new file mode 100644 index 000000000..f9f97c01e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_023.mcfunction @@ -0,0 +1,10 @@ +# frame 183 / 240 +# Sample_01--Circle +particle bubble ^-0.37 ^1.23 ^-0.0 0.183 0.183 0.183 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.37 ^1.23 ^-0.0 0.915 0.915 0.915 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.25 ^-0.3 ^0.0 0.183 0.183 0.183 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.25 ^-0.3 ^0.0 0.915 0.915 0.915 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.88 ^-0.93 ^0.0 0.183 0.183 0.183 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.88 ^-0.93 ^0.0 0.915 0.915 0.915 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.525 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_024.mcfunction new file mode 100644 index 000000000..dbf1e537c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_024.mcfunction @@ -0,0 +1,10 @@ +# frame 184 / 240 +# Sample_01--Circle +particle bubble ^-0.49 ^1.18 ^-0.0 0.184 0.184 0.184 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.49 ^1.18 ^-0.0 0.92 0.92 0.92 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.27 ^-0.16 ^0.0 0.184 0.184 0.184 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.27 ^-0.16 ^0.0 0.92 0.92 0.92 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.78 ^-1.02 ^0.0 0.184 0.184 0.184 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.78 ^-1.02 ^0.0 0.92 0.92 0.92 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.533 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_025.mcfunction new file mode 100644 index 000000000..8478333c3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_025.mcfunction @@ -0,0 +1,10 @@ +# frame 185 / 240 +# Sample_01--Circle +particle bubble ^-0.61 ^1.12 ^-0.0 0.185 0.185 0.185 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.61 ^1.12 ^-0.0 0.925 0.925 0.925 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.27 ^-0.03 ^0.0 0.185 0.185 0.185 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.27 ^-0.03 ^0.0 0.925 0.925 0.925 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.66 ^-1.09 ^0.0 0.185 0.185 0.185 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.66 ^-1.09 ^0.0 0.925 0.925 0.925 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.542 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_026.mcfunction new file mode 100644 index 000000000..c7de6298e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_026.mcfunction @@ -0,0 +1,10 @@ +# frame 186 / 240 +# Sample_01--Circle +particle bubble ^-0.72 ^1.04 ^-0.0 0.186 0.186 0.186 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.72 ^1.04 ^-0.0 0.93 0.93 0.93 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.27 ^0.1 ^0.0 0.186 0.186 0.186 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.27 ^0.1 ^0.0 0.93 0.93 0.93 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.54 ^-1.15 ^0.0 0.186 0.186 0.186 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.54 ^-1.15 ^0.0 0.93 0.93 0.93 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.55 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_027.mcfunction new file mode 100644 index 000000000..7ddd24680 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_027.mcfunction @@ -0,0 +1,10 @@ +# frame 187 / 240 +# Sample_01--Circle +particle bubble ^-0.82 ^0.96 ^-0.0 0.187 0.187 0.187 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.82 ^0.96 ^-0.0 0.935 0.935 0.935 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.24 ^0.23 ^0.0 0.187 0.187 0.187 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.24 ^0.23 ^0.0 0.935 0.935 0.935 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.42 ^-1.19 ^0.0 0.187 0.187 0.187 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.42 ^-1.19 ^0.0 0.935 0.935 0.935 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.558 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_028.mcfunction new file mode 100644 index 000000000..3341a48f9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_028.mcfunction @@ -0,0 +1,10 @@ +# frame 188 / 240 +# Sample_01--Circle +particle bubble ^-0.92 ^0.86 ^-0.0 0.188 0.188 0.188 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.92 ^0.86 ^-0.0 0.94 0.94 0.94 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.21 ^0.36 ^0.0 0.188 0.188 0.188 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.21 ^0.36 ^0.0 0.94 0.94 0.94 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.29 ^-1.23 ^0.0 0.188 0.188 0.188 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.29 ^-1.23 ^0.0 0.94 0.94 0.94 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.567 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_029.mcfunction new file mode 100644 index 000000000..defbcd10b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_029.mcfunction @@ -0,0 +1,10 @@ +# frame 189 / 240 +# Sample_01--Circle +particle bubble ^-1.0 ^0.76 ^-0.0 0.189 0.189 0.189 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.0 ^0.76 ^-0.0 0.945 0.945 0.945 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.16 ^0.48 ^0.0 0.189 0.189 0.189 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.16 ^0.48 ^0.0 0.945 0.945 0.945 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.16 ^-1.24 ^0.0 0.189 0.189 0.189 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.16 ^-1.24 ^0.0 0.945 0.945 0.945 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.575 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_030.mcfunction new file mode 100644 index 000000000..fc1e12fe8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_030.mcfunction @@ -0,0 +1,10 @@ +# frame 190 / 240 +# Sample_01--Circle +particle bubble ^-1.07 ^0.65 ^-0.0 0.19 0.19 0.19 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.07 ^0.65 ^-0.0 0.95 0.95 0.95 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.1 ^0.6 ^0.0 0.19 0.19 0.19 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.1 ^0.6 ^0.0 0.95 0.95 0.95 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.03 ^-1.25 ^0.0 0.19 0.19 0.19 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.03 ^-1.25 ^0.0 0.95 0.95 0.95 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.583 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_031.mcfunction new file mode 100644 index 000000000..5948578e4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_031.mcfunction @@ -0,0 +1,10 @@ +# frame 191 / 240 +# Sample_01--Circle +particle bubble ^-1.13 ^0.53 ^-0.0 0.191 0.191 0.191 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.13 ^0.53 ^-0.0 0.955 0.955 0.955 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.02 ^0.71 ^0.0 0.191 0.191 0.191 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.02 ^0.71 ^0.0 0.955 0.955 0.955 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.1 ^-1.24 ^0.0 0.191 0.191 0.191 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.1 ^-1.24 ^0.0 0.955 0.955 0.955 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.592 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_032.mcfunction new file mode 100644 index 000000000..d1aec2751 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_032.mcfunction @@ -0,0 +1,10 @@ +# frame 192 / 240 +# Sample_01--Circle +particle bubble ^-1.17 ^0.41 ^-0.0 0.192 0.192 0.192 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.17 ^0.41 ^-0.0 0.96 0.96 0.96 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.94 ^0.81 ^0.0 0.192 0.192 0.192 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.94 ^0.81 ^0.0 0.96 0.96 0.96 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.23 ^-1.22 ^0.0 0.192 0.192 0.192 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.23 ^-1.22 ^0.0 0.96 0.96 0.96 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.6 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_033.mcfunction new file mode 100644 index 000000000..42a7ce926 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_033.mcfunction @@ -0,0 +1,10 @@ +# frame 193 / 240 +# Sample_01--Circle +particle bubble ^-1.2 ^0.28 ^-0.0 0.193 0.193 0.193 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.2 ^0.28 ^-0.0 0.965 0.965 0.965 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.85 ^0.9 ^0.0 0.193 0.193 0.193 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.85 ^0.9 ^0.0 0.965 0.965 0.965 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.36 ^-1.18 ^0.0 0.193 0.193 0.193 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.36 ^-1.18 ^0.0 0.965 0.965 0.965 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.608 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_034.mcfunction new file mode 100644 index 000000000..9e1767c7b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_034.mcfunction @@ -0,0 +1,10 @@ +# frame 194 / 240 +# Sample_01--Circle +particle bubble ^-1.22 ^0.15 ^-0.0 0.194 0.194 0.194 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.22 ^0.15 ^-0.0 0.97 0.97 0.97 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.74 ^0.98 ^0.0 0.194 0.194 0.194 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.74 ^0.98 ^0.0 0.97 0.97 0.97 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.48 ^-1.13 ^0.0 0.194 0.194 0.194 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.48 ^-1.13 ^0.0 0.97 0.97 0.97 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.617 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_035.mcfunction new file mode 100644 index 000000000..97c678436 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_035.mcfunction @@ -0,0 +1,10 @@ +# frame 195 / 240 +# Sample_01--Circle +particle bubble ^-1.22 ^0.02 ^-0.0 0.195 0.195 0.195 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.22 ^0.02 ^-0.0 0.975 0.975 0.975 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.63 ^1.05 ^0.0 0.195 0.195 0.195 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.63 ^1.05 ^0.0 0.975 0.975 0.975 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.59 ^-1.07 ^0.0 0.195 0.195 0.195 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.59 ^-1.07 ^0.0 0.975 0.975 0.975 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.625 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_036.mcfunction new file mode 100644 index 000000000..cadb92299 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_036.mcfunction @@ -0,0 +1,10 @@ +# frame 196 / 240 +# Sample_01--Circle +particle bubble ^-1.22 ^-0.1 ^-0.0 0.196 0.196 0.196 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.22 ^-0.1 ^-0.0 0.98 0.98 0.98 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.52 ^1.1 ^0.0 0.196 0.196 0.196 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.52 ^1.1 ^0.0 0.98 0.98 0.98 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.7 ^-1.0 ^0.0 0.196 0.196 0.196 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.7 ^-1.0 ^0.0 0.98 0.98 0.98 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.633 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_037.mcfunction new file mode 100644 index 000000000..214f263cf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_037.mcfunction @@ -0,0 +1,10 @@ +# frame 197 / 240 +# Sample_01--Circle +particle bubble ^-1.19 ^-0.23 ^-0.0 0.197 0.197 0.197 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.19 ^-0.23 ^-0.0 0.985 0.985 0.985 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.4 ^1.15 ^0.0 0.197 0.197 0.197 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.4 ^1.15 ^0.0 0.985 0.985 0.985 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.8 ^-0.92 ^0.0 0.197 0.197 0.197 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.8 ^-0.92 ^0.0 0.985 0.985 0.985 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.642 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_038.mcfunction new file mode 100644 index 000000000..d743426b7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_038.mcfunction @@ -0,0 +1,10 @@ +# frame 198 / 240 +# Sample_01--Circle +particle bubble ^-1.16 ^-0.35 ^-0.0 0.198 0.198 0.198 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.16 ^-0.35 ^-0.0 0.99 0.99 0.99 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.27 ^1.18 ^0.0 0.198 0.198 0.198 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.27 ^1.18 ^0.0 0.99 0.99 0.99 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.88 ^-0.83 ^0.0 0.198 0.198 0.198 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.88 ^-0.83 ^0.0 0.99 0.99 0.99 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.65 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_039.mcfunction new file mode 100644 index 000000000..3be341d8f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_039.mcfunction @@ -0,0 +1,10 @@ +# frame 199 / 240 +# Sample_01--Circle +particle bubble ^-1.11 ^-0.47 ^-0.0 0.199 0.199 0.199 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.11 ^-0.47 ^-0.0 0.995 0.995 0.995 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.15 ^1.2 ^0.0 0.199 0.199 0.199 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.15 ^1.2 ^0.0 0.995 0.995 0.995 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.96 ^-0.73 ^0.0 0.199 0.199 0.199 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.96 ^-0.73 ^0.0 0.995 0.995 0.995 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.658 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_040.mcfunction new file mode 100644 index 000000000..e2c8c2cf7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_040.mcfunction @@ -0,0 +1,10 @@ +# frame 200 / 240 +# Sample_01--Circle +particle bubble ^-1.05 ^-0.58 ^-0.0 0.2 0.2 0.2 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.05 ^-0.58 ^-0.0 1.0 1.0 1.0 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.02 ^1.2 ^0.0 0.2 0.2 0.2 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.02 ^1.2 ^0.0 1.0 1.0 1.0 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.03 ^-0.62 ^0.0 0.2 0.2 0.2 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.03 ^-0.62 ^0.0 1.0 1.0 1.0 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.667 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_041.mcfunction new file mode 100644 index 000000000..fa8ec5abb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_041.mcfunction @@ -0,0 +1,10 @@ +# frame 201 / 240 +# Sample_01--Circle +particle bubble ^-0.98 ^-0.69 ^-0.0 0.201 0.201 0.201 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.98 ^-0.69 ^-0.0 1.005 1.005 1.005 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.1 ^1.19 ^0.0 0.201 0.201 0.201 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.1 ^1.19 ^0.0 1.005 1.005 1.005 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.08 ^-0.5 ^0.0 0.201 0.201 0.201 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.08 ^-0.5 ^0.0 1.005 1.005 1.005 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.675 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_042.mcfunction new file mode 100644 index 000000000..2537d9f66 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_042.mcfunction @@ -0,0 +1,10 @@ +# frame 202 / 240 +# Sample_01--Circle +particle bubble ^-0.9 ^-0.78 ^-0.0 0.202 0.202 0.202 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.9 ^-0.78 ^-0.0 1.01 1.01 1.01 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.23 ^1.17 ^0.0 0.202 0.202 0.202 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.23 ^1.17 ^0.0 1.01 1.01 1.01 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.13 ^-0.39 ^0.0 0.202 0.202 0.202 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.13 ^-0.39 ^0.0 1.01 1.01 1.01 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.683 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_043.mcfunction new file mode 100644 index 000000000..54cfe3543 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_043.mcfunction @@ -0,0 +1,10 @@ +# frame 203 / 240 +# Sample_01--Circle +particle bubble ^-0.81 ^-0.87 ^-0.0 0.203 0.203 0.203 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.81 ^-0.87 ^-0.0 1.015 1.015 1.015 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.35 ^1.13 ^0.0 0.203 0.203 0.203 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.35 ^1.13 ^0.0 1.015 1.015 1.015 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.15 ^-0.27 ^0.0 0.203 0.203 0.203 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.15 ^-0.27 ^0.0 1.015 1.015 1.015 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.692 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_044.mcfunction new file mode 100644 index 000000000..ce4068132 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_044.mcfunction @@ -0,0 +1,10 @@ +# frame 204 / 240 +# Sample_01--Circle +particle bubble ^-0.71 ^-0.94 ^-0.0 0.204 0.204 0.204 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.71 ^-0.94 ^-0.0 1.02 1.02 1.02 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.46 ^1.09 ^0.0 0.204 0.204 0.204 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.46 ^1.09 ^0.0 1.02 1.02 1.02 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.17 ^-0.14 ^0.0 0.204 0.204 0.204 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.17 ^-0.14 ^0.0 1.02 1.02 1.02 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.7 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_045.mcfunction new file mode 100644 index 000000000..825aa533e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_045.mcfunction @@ -0,0 +1,10 @@ +# frame 205 / 240 +# Sample_01--Circle +particle bubble ^-0.6 ^-1.01 ^-0.0 0.205 0.205 0.205 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.6 ^-1.01 ^-0.0 1.025 1.025 1.025 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.57 ^1.03 ^0.0 0.205 0.205 0.205 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.57 ^1.03 ^0.0 1.025 1.025 1.025 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.17 ^-0.02 ^0.0 0.205 0.205 0.205 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.17 ^-0.02 ^0.0 1.025 1.025 1.025 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.708 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_046.mcfunction new file mode 100644 index 000000000..6ab30dc3a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_046.mcfunction @@ -0,0 +1,10 @@ +# frame 206 / 240 +# Sample_01--Circle +particle bubble ^-0.49 ^-1.06 ^-0.0 0.206 0.206 0.206 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.49 ^-1.06 ^-0.0 1.03 1.03 1.03 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.67 ^0.96 ^0.0 0.206 0.206 0.206 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.67 ^0.96 ^0.0 1.03 1.03 1.03 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.17 ^0.1 ^0.0 0.206 0.206 0.206 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.17 ^0.1 ^0.0 1.03 1.03 1.03 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.717 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_047.mcfunction new file mode 100644 index 000000000..0adb2c497 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_047.mcfunction @@ -0,0 +1,10 @@ +# frame 207 / 240 +# Sample_01--Circle +particle bubble ^-0.38 ^-1.1 ^-0.0 0.207 0.207 0.207 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.38 ^-1.1 ^-0.0 1.035 1.035 1.035 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.77 ^0.88 ^0.0 0.207 0.207 0.207 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.77 ^0.88 ^0.0 1.035 1.035 1.035 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.14 ^0.23 ^0.0 0.207 0.207 0.207 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.14 ^0.23 ^0.0 1.035 1.035 1.035 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.725 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_048.mcfunction new file mode 100644 index 000000000..4b9a0db47 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_048.mcfunction @@ -0,0 +1,10 @@ +# frame 208 / 240 +# Sample_01--Circle +particle bubble ^-0.26 ^-1.13 ^-0.0 0.208 0.208 0.208 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.26 ^-1.13 ^-0.0 1.04 1.04 1.04 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.85 ^0.79 ^0.0 0.208 0.208 0.208 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.85 ^0.79 ^0.0 1.04 1.04 1.04 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.11 ^0.34 ^0.0 0.208 0.208 0.208 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.11 ^0.34 ^0.0 1.04 1.04 1.04 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.733 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_049.mcfunction new file mode 100644 index 000000000..42c0e029f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_049.mcfunction @@ -0,0 +1,10 @@ +# frame 209 / 240 +# Sample_01--Circle +particle bubble ^-0.14 ^-1.15 ^-0.0 0.209 0.209 0.209 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.14 ^-1.15 ^-0.0 1.045 1.045 1.045 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.93 ^0.69 ^0.0 0.209 0.209 0.209 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.93 ^0.69 ^0.0 1.045 1.045 1.045 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.06 ^0.46 ^0.0 0.209 0.209 0.209 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.06 ^0.46 ^0.0 1.045 1.045 1.045 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.742 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_050.mcfunction new file mode 100644 index 000000000..0a1d27cc6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_050.mcfunction @@ -0,0 +1,10 @@ +# frame 210 / 240 +# Sample_01--Circle +particle bubble ^-0.02 ^-1.15 ^-0.0 0.21 0.21 0.21 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.02 ^-1.15 ^-0.0 1.05 1.05 1.05 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.99 ^0.59 ^0.0 0.21 0.21 0.21 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.99 ^0.59 ^0.0 1.05 1.05 1.05 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^1.0 ^0.56 ^0.0 0.21 0.21 0.21 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.0 ^0.56 ^0.0 1.05 1.05 1.05 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.75 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_051.mcfunction new file mode 100644 index 000000000..c7c215076 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_051.mcfunction @@ -0,0 +1,10 @@ +# frame 211 / 240 +# Sample_01--Circle +particle bubble ^0.11 ^-1.14 ^-0.0 0.211 0.211 0.211 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.11 ^-1.14 ^-0.0 1.055 1.055 1.055 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.04 ^0.48 ^0.0 0.211 0.211 0.211 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.04 ^0.48 ^0.0 1.055 1.055 1.055 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.93 ^0.66 ^0.0 0.211 0.211 0.211 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.93 ^0.66 ^0.0 1.055 1.055 1.055 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.758 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_052.mcfunction new file mode 100644 index 000000000..482c44159 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_052.mcfunction @@ -0,0 +1,10 @@ +# frame 212 / 240 +# Sample_01--Circle +particle bubble ^0.22 ^-1.12 ^-0.0 0.212 0.212 0.212 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.22 ^-1.12 ^-0.0 1.06 1.06 1.06 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.08 ^0.37 ^0.0 0.212 0.212 0.212 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.08 ^0.37 ^0.0 1.06 1.06 1.06 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.86 ^0.75 ^0.0 0.212 0.212 0.212 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.86 ^0.75 ^0.0 1.06 1.06 1.06 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.767 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_053.mcfunction new file mode 100644 index 000000000..5e4cbc7a8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_053.mcfunction @@ -0,0 +1,10 @@ +# frame 213 / 240 +# Sample_01--Circle +particle bubble ^0.34 ^-1.08 ^-0.0 0.213 0.213 0.213 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.34 ^-1.08 ^-0.0 1.065 1.065 1.065 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.11 ^0.25 ^0.0 0.213 0.213 0.213 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.11 ^0.25 ^0.0 1.065 1.065 1.065 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.77 ^0.83 ^0.0 0.213 0.213 0.213 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.77 ^0.83 ^0.0 1.065 1.065 1.065 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.775 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_054.mcfunction new file mode 100644 index 000000000..0c3c4cd17 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_054.mcfunction @@ -0,0 +1,10 @@ +# frame 214 / 240 +# Sample_01--Circle +particle bubble ^0.45 ^-1.04 ^-0.0 0.214 0.214 0.214 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.45 ^-1.04 ^-0.0 1.07 1.07 1.07 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.12 ^0.13 ^0.0 0.214 0.214 0.214 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.12 ^0.13 ^0.0 1.07 1.07 1.07 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.67 ^0.91 ^0.0 0.214 0.214 0.214 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.67 ^0.91 ^0.0 1.07 1.07 1.07 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.783 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_055.mcfunction new file mode 100644 index 000000000..931205734 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_055.mcfunction @@ -0,0 +1,10 @@ +# frame 215 / 240 +# Sample_01--Circle +particle bubble ^0.55 ^-0.98 ^-0.0 0.215 0.215 0.215 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.55 ^-0.98 ^-0.0 1.075 1.075 1.075 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.12 ^0.01 ^0.0 0.215 0.215 0.215 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.12 ^0.01 ^0.0 1.075 1.075 1.075 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.57 ^0.97 ^0.0 0.215 0.215 0.215 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.57 ^0.97 ^0.0 1.075 1.075 1.075 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.792 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_056.mcfunction new file mode 100644 index 000000000..cca3df6c5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_056.mcfunction @@ -0,0 +1,10 @@ +# frame 216 / 240 +# Sample_01--Circle +particle bubble ^0.65 ^-0.91 ^-0.0 0.216 0.216 0.216 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.65 ^-0.91 ^-0.0 1.08 1.08 1.08 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.12 ^-0.11 ^0.0 0.216 0.216 0.216 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.12 ^-0.11 ^0.0 1.08 1.08 1.08 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.47 ^1.02 ^0.0 0.216 0.216 0.216 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.47 ^1.02 ^0.0 1.08 1.08 1.08 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.8 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_057.mcfunction new file mode 100644 index 000000000..30976a464 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_057.mcfunction @@ -0,0 +1,10 @@ +# frame 217 / 240 +# Sample_01--Circle +particle bubble ^0.74 ^-0.84 ^-0.0 0.217 0.217 0.217 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.74 ^-0.84 ^-0.0 1.085 1.085 1.085 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.09 ^-0.22 ^0.0 0.217 0.217 0.217 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.09 ^-0.22 ^0.0 1.085 1.085 1.085 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.36 ^1.06 ^0.0 0.217 0.217 0.217 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.36 ^1.06 ^0.0 1.085 1.085 1.085 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.808 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_058.mcfunction new file mode 100644 index 000000000..5bf697e97 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_058.mcfunction @@ -0,0 +1,10 @@ +# frame 218 / 240 +# Sample_01--Circle +particle bubble ^0.82 ^-0.75 ^-0.0 0.218 0.218 0.218 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.82 ^-0.75 ^-0.0 1.09 1.09 1.09 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.06 ^-0.33 ^0.0 0.218 0.218 0.218 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.06 ^-0.33 ^0.0 1.09 1.09 1.09 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.24 ^1.08 ^0.0 0.218 0.218 0.218 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.24 ^1.08 ^0.0 1.09 1.09 1.09 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.817 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_059.mcfunction new file mode 100644 index 000000000..87e4b810f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_059.mcfunction @@ -0,0 +1,10 @@ +# frame 219 / 240 +# Sample_01--Circle +particle bubble ^0.89 ^-0.66 ^-0.0 0.219 0.219 0.219 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.89 ^-0.66 ^-0.0 1.095 1.095 1.095 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.01 ^-0.44 ^0.0 0.219 0.219 0.219 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.01 ^-0.44 ^0.0 1.095 1.095 1.095 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.13 ^1.1 ^0.0 0.219 0.219 0.219 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.13 ^1.1 ^0.0 1.095 1.095 1.095 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.825 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_060.mcfunction new file mode 100644 index 000000000..f3e3d0562 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_060.mcfunction @@ -0,0 +1,10 @@ +# frame 220 / 240 +# Sample_01--Circle +particle bubble ^0.95 ^-0.56 ^-0.0 0.22 0.22 0.22 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.95 ^-0.56 ^-0.0 1.1 1.1 1.1 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.96 ^-0.54 ^0.0 0.22 0.22 0.22 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.96 ^-0.54 ^0.0 1.1 1.1 1.1 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.01 ^1.1 ^0.0 0.22 0.22 0.22 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.01 ^1.1 ^0.0 1.1 1.1 1.1 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.833 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_061.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_061.mcfunction new file mode 100644 index 000000000..ac15cef45 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_061.mcfunction @@ -0,0 +1,10 @@ +# frame 221 / 240 +# Sample_01--Circle +particle bubble ^1.0 ^-0.45 ^-0.0 0.221 0.221 0.221 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.0 ^-0.45 ^-0.0 1.105 1.105 1.105 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.89 ^-0.64 ^0.0 0.221 0.221 0.221 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.89 ^-0.64 ^0.0 1.105 1.105 1.105 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.11 ^1.09 ^0.0 0.221 0.221 0.221 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.11 ^1.09 ^0.0 1.105 1.105 1.105 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.842 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_062.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_062.mcfunction new file mode 100644 index 000000000..301351cc7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_062.mcfunction @@ -0,0 +1,10 @@ +# frame 222 / 240 +# Sample_01--Circle +particle bubble ^1.03 ^-0.34 ^-0.0 0.222 0.222 0.222 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.03 ^-0.34 ^-0.0 1.11 1.11 1.11 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.82 ^-0.72 ^0.0 0.222 0.222 0.222 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.82 ^-0.72 ^0.0 1.11 1.11 1.11 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.22 ^1.07 ^0.0 0.222 0.222 0.222 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.22 ^1.07 ^0.0 1.11 1.11 1.11 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.85 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_063.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_063.mcfunction new file mode 100644 index 000000000..43ed50b84 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_063.mcfunction @@ -0,0 +1,10 @@ +# frame 223 / 240 +# Sample_01--Circle +particle bubble ^1.06 ^-0.23 ^-0.0 0.223 0.223 0.223 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.06 ^-0.23 ^-0.0 1.115 1.115 1.115 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.73 ^-0.8 ^0.0 0.223 0.223 0.223 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.73 ^-0.8 ^0.0 1.115 1.115 1.115 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.33 ^1.03 ^0.0 0.223 0.223 0.223 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.33 ^1.03 ^0.0 1.115 1.115 1.115 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.858 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_064.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_064.mcfunction new file mode 100644 index 000000000..ea86feb6c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_064.mcfunction @@ -0,0 +1,10 @@ +# frame 224 / 240 +# Sample_01--Circle +particle bubble ^1.07 ^-0.12 ^-0.0 0.224 0.224 0.224 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.07 ^-0.12 ^-0.0 1.12 1.12 1.12 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.64 ^-0.87 ^0.0 0.224 0.224 0.224 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.64 ^-0.87 ^0.0 1.12 1.12 1.12 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.43 ^0.99 ^0.0 0.224 0.224 0.224 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.43 ^0.99 ^0.0 1.12 1.12 1.12 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.867 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_065.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_065.mcfunction new file mode 100644 index 000000000..70092e409 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_065.mcfunction @@ -0,0 +1,10 @@ +# frame 225 / 240 +# Sample_01--Circle +particle bubble ^1.07 ^-0.01 ^-0.0 0.225 0.225 0.225 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.07 ^-0.01 ^-0.0 1.125 1.125 1.125 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.54 ^-0.93 ^0.0 0.225 0.225 0.225 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.54 ^-0.93 ^0.0 1.125 1.125 1.125 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.53 ^0.93 ^0.0 0.225 0.225 0.225 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.53 ^0.93 ^0.0 1.125 1.125 1.125 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.875 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_066.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_066.mcfunction new file mode 100644 index 000000000..bf9a27eb2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_066.mcfunction @@ -0,0 +1,10 @@ +# frame 226 / 240 +# Sample_01--Circle +particle bubble ^1.06 ^0.11 ^-0.0 0.226 0.226 0.226 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.06 ^0.11 ^-0.0 1.13 1.13 1.13 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.44 ^-0.97 ^0.0 0.226 0.226 0.226 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.44 ^-0.97 ^0.0 1.13 1.13 1.13 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.62 ^0.87 ^0.0 0.226 0.226 0.226 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.62 ^0.87 ^0.0 1.13 1.13 1.13 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.883 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_067.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_067.mcfunction new file mode 100644 index 000000000..d36a40760 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_067.mcfunction @@ -0,0 +1,10 @@ +# frame 227 / 240 +# Sample_01--Circle +particle bubble ^1.04 ^0.22 ^-0.0 0.227 0.227 0.227 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.04 ^0.22 ^-0.0 1.135 1.135 1.135 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.33 ^-1.01 ^0.0 0.227 0.227 0.227 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.33 ^-1.01 ^0.0 1.135 1.135 1.135 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.71 ^0.8 ^0.0 0.227 0.227 0.227 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.71 ^0.8 ^0.0 1.135 1.135 1.135 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.892 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_068.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_068.mcfunction new file mode 100644 index 000000000..519dfcd24 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_068.mcfunction @@ -0,0 +1,10 @@ +# frame 228 / 240 +# Sample_01--Circle +particle bubble ^1.01 ^0.32 ^-0.0 0.228 0.228 0.228 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^1.01 ^0.32 ^-0.0 1.14 1.14 1.14 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.23 ^-1.04 ^0.0 0.228 0.228 0.228 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.23 ^-1.04 ^0.0 1.14 1.14 1.14 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.78 ^0.71 ^0.0 0.228 0.228 0.228 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.78 ^0.71 ^0.0 1.14 1.14 1.14 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.9 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_069.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_069.mcfunction new file mode 100644 index 000000000..61d3a1dc4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_069.mcfunction @@ -0,0 +1,10 @@ +# frame 229 / 240 +# Sample_01--Circle +particle bubble ^0.97 ^0.42 ^-0.0 0.229 0.229 0.229 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.97 ^0.42 ^-0.0 1.145 1.145 1.145 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.12 ^-1.05 ^0.0 0.229 0.229 0.229 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.12 ^-1.05 ^0.0 1.145 1.145 1.145 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.85 ^0.62 ^0.0 0.229 0.229 0.229 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.85 ^0.62 ^0.0 1.145 1.145 1.145 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.908 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_070.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_070.mcfunction new file mode 100644 index 000000000..c0767187c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_070.mcfunction @@ -0,0 +1,10 @@ +# frame 230 / 240 +# Sample_01--Circle +particle bubble ^0.91 ^0.52 ^-0.0 0.23 0.23 0.23 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.91 ^0.52 ^-0.0 1.15 1.15 1.15 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.0 ^-1.05 ^0.0 0.23 0.23 0.23 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.0 ^-1.05 ^0.0 1.15 1.15 1.15 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.91 ^0.53 ^0.0 0.23 0.23 0.23 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.91 ^0.53 ^0.0 1.15 1.15 1.15 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.917 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_071.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_071.mcfunction new file mode 100644 index 000000000..a247feec2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_071.mcfunction @@ -0,0 +1,10 @@ +# frame 231 / 240 +# Sample_01--Circle +particle bubble ^0.85 ^0.61 ^-0.0 0.231 0.231 0.231 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.85 ^0.61 ^-0.0 1.155 1.155 1.155 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.11 ^-1.04 ^0.0 0.231 0.231 0.231 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.11 ^-1.04 ^0.0 1.155 1.155 1.155 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.95 ^0.43 ^0.0 0.231 0.231 0.231 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.95 ^0.43 ^0.0 1.155 1.155 1.155 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.925 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_072.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_072.mcfunction new file mode 100644 index 000000000..d6bad404c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_072.mcfunction @@ -0,0 +1,10 @@ +# frame 232 / 240 +# Sample_01--Circle +particle bubble ^0.78 ^0.69 ^-0.0 0.232 0.232 0.232 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.78 ^0.69 ^-0.0 1.16 1.16 1.16 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.21 ^-1.02 ^0.0 0.232 0.232 0.232 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.21 ^-1.02 ^0.0 1.16 1.16 1.16 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.99 ^0.32 ^0.0 0.232 0.232 0.232 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.99 ^0.32 ^0.0 1.16 1.16 1.16 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.933 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_073.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_073.mcfunction new file mode 100644 index 000000000..e874822aa --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_073.mcfunction @@ -0,0 +1,10 @@ +# frame 233 / 240 +# Sample_01--Circle +particle bubble ^0.69 ^0.77 ^-0.0 0.233 0.233 0.233 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.69 ^0.77 ^-0.0 1.165 1.165 1.165 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.32 ^-0.99 ^0.0 0.233 0.233 0.233 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.32 ^-0.99 ^0.0 1.165 1.165 1.165 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.01 ^0.22 ^0.0 0.233 0.233 0.233 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.01 ^0.22 ^0.0 1.165 1.165 1.165 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.942 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_074.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_074.mcfunction new file mode 100644 index 000000000..2a61c6987 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_074.mcfunction @@ -0,0 +1,10 @@ +# frame 234 / 240 +# Sample_01--Circle +particle bubble ^0.61 ^0.83 ^-0.0 0.234 0.234 0.234 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.61 ^0.83 ^-0.0 1.17 1.17 1.17 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.42 ^-0.94 ^0.0 0.234 0.234 0.234 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.42 ^-0.94 ^0.0 1.17 1.17 1.17 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.02 ^0.11 ^0.0 0.234 0.234 0.234 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.02 ^0.11 ^0.0 1.17 1.17 1.17 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.95 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_075.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_075.mcfunction new file mode 100644 index 000000000..ced90798a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_075.mcfunction @@ -0,0 +1,10 @@ +# frame 235 / 240 +# Sample_01--Circle +particle bubble ^0.51 ^0.89 ^-0.0 0.235 0.235 0.235 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.51 ^0.89 ^-0.0 1.175 1.175 1.175 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.51 ^-0.89 ^0.0 0.235 0.235 0.235 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.51 ^-0.89 ^0.0 1.175 1.175 1.175 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.02 ^0.0 ^0.0 0.235 0.235 0.235 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.02 ^0.0 ^0.0 1.175 1.175 1.175 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.958 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_076.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_076.mcfunction new file mode 100644 index 000000000..e229512e6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_076.mcfunction @@ -0,0 +1,10 @@ +# frame 236 / 240 +# Sample_01--Circle +particle bubble ^0.42 ^0.93 ^-0.0 0.236 0.236 0.236 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.42 ^0.93 ^-0.0 1.18 1.18 1.18 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.6 ^-0.83 ^0.0 0.236 0.236 0.236 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.6 ^-0.83 ^0.0 1.18 1.18 1.18 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-1.01 ^-0.1 ^0.0 0.236 0.236 0.236 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-1.01 ^-0.1 ^0.0 1.18 1.18 1.18 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.967 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_077.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_077.mcfunction new file mode 100644 index 000000000..a7d45e7c0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_077.mcfunction @@ -0,0 +1,10 @@ +# frame 237 / 240 +# Sample_01--Circle +particle bubble ^0.31 ^0.96 ^-0.0 0.237 0.237 0.237 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.31 ^0.96 ^-0.0 1.185 1.185 1.185 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.68 ^-0.76 ^0.0 0.237 0.237 0.237 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.68 ^-0.76 ^0.0 1.185 1.185 1.185 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.99 ^-0.21 ^0.0 0.237 0.237 0.237 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.99 ^-0.21 ^0.0 1.185 1.185 1.185 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.975 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_078.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_078.mcfunction new file mode 100644 index 000000000..1ca8a2d82 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_078.mcfunction @@ -0,0 +1,10 @@ +# frame 238 / 240 +# Sample_01--Circle +particle bubble ^0.21 ^0.99 ^-0.0 0.238 0.238 0.238 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.21 ^0.99 ^-0.0 1.19 1.19 1.19 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.75 ^-0.68 ^0.0 0.238 0.238 0.238 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.75 ^-0.68 ^0.0 1.19 1.19 1.19 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.96 ^-0.31 ^0.0 0.238 0.238 0.238 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.96 ^-0.31 ^0.0 1.19 1.19 1.19 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.983 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_079.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_079.mcfunction new file mode 100644 index 000000000..35ad1dac2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_079.mcfunction @@ -0,0 +1,10 @@ +# frame 239 / 240 +# Sample_01--Circle +particle bubble ^0.11 ^1.0 ^-0.0 0.239 0.239 0.239 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.11 ^1.0 ^-0.0 1.195 1.195 1.195 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.81 ^-0.59 ^0.0 0.239 0.239 0.239 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.81 ^-0.59 ^0.0 1.195 1.195 1.195 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.92 ^-0.41 ^0.0 0.239 0.239 0.239 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.92 ^-0.41 ^0.0 1.195 1.195 1.195 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 1.992 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_080.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_080.mcfunction new file mode 100644 index 000000000..55b39014e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/bubble_launcher_03/fc_080.mcfunction @@ -0,0 +1,10 @@ +# frame 240 / 240 +# Sample_01--Circle +particle bubble ^-0.0 ^1.0 ^-0.0 0.24 0.24 0.24 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.0 ^1.0 ^-0.0 1.2 1.2 1.2 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^0.87 ^-0.5 ^0.0 0.24 0.24 0.24 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^0.87 ^-0.5 ^0.0 1.2 1.2 1.2 0.0 3 force @a[distance=..64,tag=ShowParticles] +particle bubble ^-0.87 ^-0.5 ^0.0 0.24 0.24 0.24 0.0 5 force @a[distance=..64,tag=ShowParticles] +particle dolphin ^-0.87 ^-0.5 ^0.0 1.2 1.2 1.2 0.0 3 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Vert +playsound block.bubble_column.upwards_ambient hostile @a[distance=..64,tag=ShowParticles] ^-0.0 ^0.0 ^0.0 2.0 2.0 0.0 diff --git a/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction new file mode 100644 index 000000000..534039bf5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction @@ -0,0 +1,37 @@ +#> makeup:ai/skill/delay_action/casting/cast/normal/particle/ +execute rotated 0 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 10 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 20 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 30 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 40 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 50 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 60 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 70 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 80 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 90 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 100 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 110 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 120 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 130 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 140 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 150 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 160 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 170 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 180 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 190 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 200 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 210 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 220 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 230 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 240 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 250 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 260 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 270 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 280 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 290 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 300 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 310 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 320 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 330 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 340 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 350 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework diff --git a/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/firework.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/firework.mcfunction new file mode 100644 index 000000000..1f57a8a5c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/firework.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +particle minecraft:firework ^ ^ ^0.5 0 0 0 0 2 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/cast/normal/sound/portal_travel.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/sound/portal_travel.mcfunction new file mode 100644 index 000000000..d6835de74 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/sound/portal_travel.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/delay_action/casting/cast/normal/sound/portal_travel +playsound minecraft:block.portal.travel hostile @a ~ ~ ~ 0.1 2 diff --git a/data/makeup/function/ai/skill/delay_action/casting/charge/normal/particle/.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/charge/normal/particle/.mcfunction new file mode 100644 index 000000000..c2b499c5b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/charge/normal/particle/.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/delay_action/casting/charge/normal/particle/ +execute at @s positioned ^ ^ ^-3 run particle minecraft:firework ^ ^ ^ ^ ^ ^100000000000 0.0000000000025 0 force @a[tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/charge/normal/sound/.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/charge/normal/sound/.mcfunction new file mode 100644 index 000000000..b522291db --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/charge/normal/sound/.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/delay_action/casting/charge/normal/sound/ +##音量増幅のために2つ +playsound block.beacon.activate master @a ~ ~ ~ 2.0 1.3 +playsound block.beacon.activate master @a ~ ~ ~ 2.0 1.3 diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_001.mcfunction new file mode 100644 index 000000000..e764287f9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_001.mcfunction @@ -0,0 +1,6 @@ +# frame 1 / 30 +# heart--Vert.001 +particle heart ~3.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.0 ~0.0 ~3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-3.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.0 ~0.0 ~-3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_002.mcfunction new file mode 100644 index 000000000..b9e8ba348 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_002.mcfunction @@ -0,0 +1,6 @@ +# frame 2 / 30 +# heart--Vert.001 +particle heart ~3.0 ~0.0 ~0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.13 ~0.0 ~3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-3.0 ~0.0 ~-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.13 ~0.0 ~-3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_003.mcfunction new file mode 100644 index 000000000..8a1fe8f62 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_003.mcfunction @@ -0,0 +1,6 @@ +# frame 3 / 30 +# heart--Vert.001 +particle heart ~2.98 ~0.0 ~0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.28 ~0.0 ~2.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.98 ~0.0 ~-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.28 ~0.0 ~-2.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_004.mcfunction new file mode 100644 index 000000000..ff5ae6ea3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_004.mcfunction @@ -0,0 +1,6 @@ +# frame 4 / 30 +# heart--Vert.001 +particle heart ~2.95 ~0.0 ~0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.44 ~0.0 ~2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.95 ~0.0 ~-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.44 ~0.0 ~-2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_005.mcfunction new file mode 100644 index 000000000..ead39acc6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_005.mcfunction @@ -0,0 +1,6 @@ +# frame 5 / 30 +# heart--Vert.001 +particle heart ~2.9 ~0.0 ~0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.59 ~0.0 ~2.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.9 ~0.0 ~-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.59 ~0.0 ~-2.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_006.mcfunction new file mode 100644 index 000000000..d283b8f14 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_006.mcfunction @@ -0,0 +1,6 @@ +# frame 6 / 30 +# heart--Vert.001 +particle heart ~2.84 ~0.0 ~0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.74 ~0.0 ~2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.84 ~0.0 ~-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.74 ~0.0 ~-2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_007.mcfunction new file mode 100644 index 000000000..4723bdcf7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_007.mcfunction @@ -0,0 +1,6 @@ +# frame 7 / 30 +# heart--Vert.001 +particle heart ~2.76 ~0.0 ~0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.89 ~0.0 ~2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.76 ~0.0 ~-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.89 ~0.0 ~-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_008.mcfunction new file mode 100644 index 000000000..664a668b5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_008.mcfunction @@ -0,0 +1,6 @@ +# frame 8 / 30 +# heart--Vert.001 +particle heart ~2.66 ~0.0 ~1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.02 ~0.0 ~2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.66 ~0.0 ~-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.02 ~0.0 ~-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_009.mcfunction new file mode 100644 index 000000000..5d5e73a00 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_009.mcfunction @@ -0,0 +1,6 @@ +# frame 9 / 30 +# heart--Vert.001 +particle heart ~2.54 ~0.0 ~1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.14 ~0.0 ~2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.54 ~0.0 ~-1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.14 ~0.0 ~-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_010.mcfunction new file mode 100644 index 000000000..52a5db5ff --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_010.mcfunction @@ -0,0 +1,6 @@ +# frame 10 / 30 +# heart--Vert.001 +particle heart ~2.41 ~0.0 ~1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.25 ~0.0 ~2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.41 ~0.0 ~-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.25 ~0.0 ~-2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_011.mcfunction new file mode 100644 index 000000000..c05d17c65 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_011.mcfunction @@ -0,0 +1,6 @@ +# frame 11 / 30 +# heart--Vert.001 +particle heart ~2.28 ~0.0 ~1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.35 ~0.0 ~2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.28 ~0.0 ~-1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.35 ~0.0 ~-2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_012.mcfunction new file mode 100644 index 000000000..c36e61b8a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_012.mcfunction @@ -0,0 +1,6 @@ +# frame 12 / 30 +# heart--Vert.001 +particle heart ~2.16 ~0.0 ~1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.45 ~0.0 ~2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.16 ~0.0 ~-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.45 ~0.0 ~-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_013.mcfunction new file mode 100644 index 000000000..2e0f54373 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_013.mcfunction @@ -0,0 +1,6 @@ +# frame 13 / 30 +# heart--Vert.001 +particle heart ~2.05 ~0.0 ~1.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.55 ~0.0 ~2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.05 ~0.0 ~-1.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.55 ~0.0 ~-2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_014.mcfunction new file mode 100644 index 000000000..a92c35f12 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_014.mcfunction @@ -0,0 +1,6 @@ +# frame 14 / 30 +# heart--Vert.001 +particle heart ~1.95 ~0.0 ~1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.65 ~0.0 ~1.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.95 ~0.0 ~-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.65 ~0.0 ~-1.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_015.mcfunction new file mode 100644 index 000000000..4b3e743d4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_015.mcfunction @@ -0,0 +1,6 @@ +# frame 15 / 30 +# heart--Vert.001 +particle heart ~1.85 ~0.0 ~1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.75 ~0.0 ~1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.85 ~0.0 ~-1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.75 ~0.0 ~-1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_016.mcfunction new file mode 100644 index 000000000..b69f2412a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_016.mcfunction @@ -0,0 +1,6 @@ +# frame 16 / 30 +# heart--Vert.001 +particle heart ~1.76 ~0.0 ~1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.86 ~0.0 ~1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.76 ~0.0 ~-1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.86 ~0.0 ~-1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_017.mcfunction new file mode 100644 index 000000000..a7f486982 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_017.mcfunction @@ -0,0 +1,6 @@ +# frame 17 / 30 +# heart--Vert.001 +particle heart ~1.66 ~0.0 ~1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.96 ~0.0 ~1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.66 ~0.0 ~-1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~1.96 ~0.0 ~-1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_018.mcfunction new file mode 100644 index 000000000..c58d161bb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_018.mcfunction @@ -0,0 +1,6 @@ +# frame 18 / 30 +# heart--Vert.001 +particle heart ~1.57 ~0.0 ~2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.08 ~0.0 ~1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.57 ~0.0 ~-2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.08 ~0.0 ~-1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_019.mcfunction new file mode 100644 index 000000000..b3170a211 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_019.mcfunction @@ -0,0 +1,6 @@ +# frame 19 / 30 +# heart--Vert.001 +particle heart ~1.47 ~0.0 ~2.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.2 ~0.0 ~1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.47 ~0.0 ~-2.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.2 ~0.0 ~-1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_020.mcfunction new file mode 100644 index 000000000..0e7a7b481 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_020.mcfunction @@ -0,0 +1,6 @@ +# frame 20 / 30 +# heart--Vert.001 +particle heart ~1.38 ~0.0 ~2.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.34 ~0.0 ~1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.38 ~0.0 ~-2.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.34 ~0.0 ~-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_021.mcfunction new file mode 100644 index 000000000..86af6a78a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_021.mcfunction @@ -0,0 +1,6 @@ +# frame 21 / 30 +# heart--Vert.001 +particle heart ~1.28 ~0.0 ~2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.47 ~0.0 ~1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.28 ~0.0 ~-2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.47 ~0.0 ~-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_022.mcfunction new file mode 100644 index 000000000..b26d75260 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_022.mcfunction @@ -0,0 +1,6 @@ +# frame 22 / 30 +# heart--Vert.001 +particle heart ~1.16 ~0.0 ~2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.59 ~0.0 ~1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.16 ~0.0 ~-2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.59 ~0.0 ~-1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_023.mcfunction new file mode 100644 index 000000000..c39319703 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_023.mcfunction @@ -0,0 +1,6 @@ +# frame 23 / 30 +# heart--Vert.001 +particle heart ~1.03 ~0.0 ~2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.69 ~0.0 ~1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-1.03 ~0.0 ~-2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.69 ~0.0 ~-1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_024.mcfunction new file mode 100644 index 000000000..dbc4678d9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_024.mcfunction @@ -0,0 +1,6 @@ +# frame 24 / 30 +# heart--Vert.001 +particle heart ~0.89 ~0.0 ~2.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.78 ~0.0 ~0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.89 ~0.0 ~-2.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.78 ~0.0 ~-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_025.mcfunction new file mode 100644 index 000000000..6d1a60113 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_025.mcfunction @@ -0,0 +1,6 @@ +# frame 25 / 30 +# heart--Vert.001 +particle heart ~0.75 ~0.0 ~2.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.85 ~0.0 ~0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.75 ~0.0 ~-2.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.85 ~0.0 ~-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_026.mcfunction new file mode 100644 index 000000000..115b3c0dd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_026.mcfunction @@ -0,0 +1,6 @@ +# frame 26 / 30 +# heart--Vert.001 +particle heart ~0.59 ~0.0 ~2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.91 ~0.0 ~0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.59 ~0.0 ~-2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.91 ~0.0 ~-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_027.mcfunction new file mode 100644 index 000000000..9a4107724 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_027.mcfunction @@ -0,0 +1,6 @@ +# frame 27 / 30 +# heart--Vert.001 +particle heart ~0.44 ~0.0 ~2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.95 ~0.0 ~0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.44 ~0.0 ~-2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.95 ~0.0 ~-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_028.mcfunction new file mode 100644 index 000000000..cf8b60144 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_028.mcfunction @@ -0,0 +1,6 @@ +# frame 28 / 30 +# heart--Vert.001 +particle heart ~0.28 ~0.0 ~2.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-2.98 ~0.0 ~0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.28 ~0.0 ~-2.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~2.98 ~0.0 ~-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_029.mcfunction new file mode 100644 index 000000000..f97e50199 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_029.mcfunction @@ -0,0 +1,6 @@ +# frame 29 / 30 +# heart--Vert.001 +particle heart ~0.13 ~0.0 ~3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-3.0 ~0.0 ~0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-0.13 ~0.0 ~-3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~3.0 ~0.0 ~-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_030.mcfunction new file mode 100644 index 000000000..4487323d6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/circle_hearts/fc_030.mcfunction @@ -0,0 +1,6 @@ +# frame 30 / 30 +# heart--Vert.001 +particle heart ~-0.0 ~0.0 ~3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~-3.0 ~0.0 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~0.0 ~0.0 ~-3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle heart ~3.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_001.mcfunction new file mode 100644 index 000000000..da5bc6d64 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_001.mcfunction @@ -0,0 +1,48 @@ +# frame 1 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~1.76 ~1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.87 ~2.0 ~1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.22 ~2.21 ~1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.5 ~2.37 ~1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.67 ~2.47 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.73 ~2.5 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.67 ~2.47 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.5 ~2.37 ~-1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.22 ~2.21 ~-1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.87 ~2.0 ~-1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~1.76 ~-1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~1.24 ~-1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.87 ~1.0 ~-1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.22 ~0.79 ~-1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.5 ~0.63 ~-1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.67 ~0.53 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.73 ~0.5 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.67 ~0.53 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.5 ~0.63 ~1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.22 ~0.79 ~1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.87 ~1.0 ~1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~1.24 ~1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.0 ~1.5 ~2.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~1.24 ~1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.87 ~1.0 ~1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.22 ~0.79 ~1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.5 ~0.63 ~1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.67 ~0.53 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.73 ~0.5 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.67 ~0.53 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.5 ~0.63 ~-1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.22 ~0.79 ~-1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.87 ~1.0 ~-1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~1.24 ~-1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.0 ~1.5 ~-2.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~1.76 ~-1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.87 ~2.0 ~-1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.22 ~2.21 ~-1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.5 ~2.37 ~-1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.67 ~2.47 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.73 ~2.5 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.67 ~2.47 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.5 ~2.37 ~1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.22 ~2.21 ~1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.87 ~2.0 ~1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~1.76 ~1.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_002.mcfunction new file mode 100644 index 000000000..c85439454 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_002.mcfunction @@ -0,0 +1,48 @@ +# frame 2 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~1.79 ~1.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.94 ~2.06 ~1.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.22 ~2.29 ~1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.42 ~2.47 ~0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.52 ~2.58 ~0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.52 ~2.62 ~-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.41 ~2.58 ~-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.21 ~2.47 ~-1.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.93 ~2.29 ~-1.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.58 ~2.06 ~-1.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~1.79 ~-1.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~1.21 ~-1.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.94 ~0.94 ~-1.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.22 ~0.71 ~-1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.42 ~0.53 ~-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.52 ~0.42 ~-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.52 ~0.38 ~0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.41 ~0.42 ~0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.21 ~0.53 ~1.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.93 ~0.71 ~1.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.58 ~0.94 ~1.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~1.21 ~1.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.21 ~1.5 ~1.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.65 ~1.3 ~1.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.04 ~1.12 ~1.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.37 ~0.96 ~1.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.6 ~0.84 ~0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.72 ~0.76 ~0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.72 ~0.74 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.61 ~0.76 ~-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.39 ~0.84 ~-1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.07 ~0.96 ~-1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.68 ~1.12 ~-1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.25 ~1.3 ~-1.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.21 ~1.5 ~-1.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.65 ~1.7 ~-1.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.04 ~1.88 ~-1.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.37 ~2.04 ~-1.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.6 ~2.16 ~-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.72 ~2.24 ~-0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.72 ~2.26 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.61 ~2.24 ~0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.39 ~2.16 ~1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.07 ~2.04 ~1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.68 ~1.88 ~1.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.25 ~1.7 ~1.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_003.mcfunction new file mode 100644 index 000000000..e14f76d02 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_003.mcfunction @@ -0,0 +1,48 @@ +# frame 3 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.71 ~1.81 ~1.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.98 ~2.11 ~1.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.19 ~2.36 ~1.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.31 ~2.55 ~0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.34 ~2.67 ~0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.28 ~2.71 ~-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.14 ~2.67 ~-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.92 ~2.55 ~-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.63 ~2.36 ~-1.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.3 ~2.11 ~-1.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~1.81 ~-1.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.71 ~1.19 ~-1.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.98 ~0.89 ~-1.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.19 ~0.64 ~-1.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.31 ~0.45 ~-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.34 ~0.33 ~-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.28 ~0.29 ~0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.14 ~0.33 ~0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.92 ~0.45 ~1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.63 ~0.64 ~1.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.3 ~0.89 ~1.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~1.19 ~1.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.39 ~1.5 ~1.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.81 ~1.36 ~1.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.17 ~1.23 ~1.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.46 ~1.12 ~0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.64 ~1.04 ~0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.71 ~0.98 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.67 ~0.97 ~-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.51 ~0.98 ~-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.25 ~1.04 ~-1.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.9 ~1.12 ~-1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.49 ~1.23 ~-1.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~1.36 ~-1.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.39 ~1.5 ~-1.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.81 ~1.64 ~-1.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.17 ~1.77 ~-1.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.46 ~1.88 ~-0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.64 ~1.96 ~-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.71 ~2.02 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.67 ~2.03 ~0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.51 ~2.02 ~0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.25 ~1.96 ~1.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.9 ~1.88 ~1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.49 ~1.77 ~1.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~1.64 ~1.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_004.mcfunction new file mode 100644 index 000000000..0bc20b8ed --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_004.mcfunction @@ -0,0 +1,48 @@ +# frame 4 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.8 ~1.83 ~1.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.0 ~2.14 ~1.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.13 ~2.4 ~0.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.18 ~2.6 ~0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.15 ~2.73 ~0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.05 ~2.77 ~-0.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.87 ~2.73 ~-0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.63 ~2.6 ~-1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.35 ~2.4 ~-1.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~2.14 ~-1.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.26 ~1.83 ~-1.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.8 ~1.17 ~-1.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.0 ~0.86 ~-1.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.13 ~0.6 ~-0.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.18 ~0.4 ~-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.15 ~0.27 ~-0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.05 ~0.23 ~0.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.87 ~0.27 ~0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.63 ~0.4 ~1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.35 ~0.6 ~1.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~0.86 ~1.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.26 ~1.17 ~1.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.55 ~1.5 ~1.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.93 ~1.42 ~1.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.26 ~1.34 ~1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.49 ~1.27 ~0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.63 ~1.22 ~0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.65 ~1.19 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.56 ~1.18 ~-0.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.37 ~1.19 ~-0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.08 ~1.22 ~-1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.27 ~-1.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~1.34 ~-1.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.12 ~1.42 ~-1.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.55 ~1.5 ~-1.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.93 ~1.58 ~-1.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.26 ~1.66 ~-1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.49 ~1.73 ~-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.63 ~1.78 ~-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.65 ~1.81 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.56 ~1.82 ~0.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.37 ~1.81 ~0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.08 ~1.78 ~1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.73 ~1.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~1.66 ~1.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.12 ~1.58 ~1.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_005.mcfunction new file mode 100644 index 000000000..73129dca1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_005.mcfunction @@ -0,0 +1,48 @@ +# frame 5 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.86 ~1.84 ~1.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.99 ~2.15 ~1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.05 ~2.42 ~0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.04 ~2.62 ~0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.96 ~2.75 ~-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.81 ~2.8 ~-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.61 ~2.75 ~-0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.37 ~2.62 ~-1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.1 ~2.42 ~-1.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.18 ~2.15 ~-1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.44 ~1.84 ~-1.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.86 ~1.16 ~-1.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.99 ~0.85 ~-1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.05 ~0.58 ~-0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.04 ~0.38 ~-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.96 ~0.25 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.81 ~0.2 ~0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.61 ~0.25 ~0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.37 ~0.38 ~1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.1 ~0.58 ~1.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.18 ~0.85 ~1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.44 ~1.16 ~1.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.67 ~1.5 ~1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.02 ~1.47 ~1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.3 ~1.43 ~0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.48 ~1.41 ~0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.57 ~1.39 ~0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.55 ~1.37 ~-0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.42 ~1.37 ~-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.2 ~1.37 ~-1.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.9 ~1.39 ~-1.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.53 ~1.41 ~-1.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~1.43 ~-1.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.28 ~1.47 ~-1.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.67 ~1.5 ~-1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.02 ~1.53 ~-1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.3 ~1.57 ~-0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.48 ~1.59 ~-0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.57 ~1.61 ~-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.55 ~1.63 ~0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.42 ~1.63 ~0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.2 ~1.63 ~1.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.9 ~1.61 ~1.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.53 ~1.59 ~1.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~1.57 ~1.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.28 ~1.53 ~1.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_006.mcfunction new file mode 100644 index 000000000..0f7361aea --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_006.mcfunction @@ -0,0 +1,48 @@ +# frame 6 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.9 ~1.84 ~1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.97 ~2.15 ~0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.97 ~2.42 ~0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.9 ~2.62 ~0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.78 ~2.75 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.6 ~2.8 ~-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.38 ~2.75 ~-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~2.62 ~-0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.12 ~2.42 ~-1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.37 ~2.15 ~-1.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~1.84 ~-1.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.9 ~1.16 ~-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.97 ~0.85 ~-0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.97 ~0.58 ~-0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.9 ~0.38 ~-0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.78 ~0.25 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.6 ~0.2 ~0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.38 ~0.25 ~0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~0.38 ~0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.12 ~0.58 ~1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.37 ~0.85 ~1.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~1.16 ~1.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.77 ~1.5 ~1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.07 ~1.51 ~1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.3 ~1.52 ~0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.43 ~1.53 ~0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.47 ~1.54 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.41 ~1.54 ~-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.25 ~1.54 ~-0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.01 ~1.54 ~-1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.7 ~1.54 ~-1.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.34 ~1.53 ~-1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.04 ~1.52 ~-1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.42 ~1.51 ~-1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.77 ~1.5 ~-1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.07 ~1.49 ~-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.3 ~1.48 ~-0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.43 ~1.47 ~-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.47 ~1.46 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.41 ~1.46 ~0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.25 ~1.46 ~0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.01 ~1.46 ~1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.7 ~1.46 ~1.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.34 ~1.47 ~1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.04 ~1.48 ~1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.42 ~1.49 ~1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_007.mcfunction new file mode 100644 index 000000000..09098d699 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_007.mcfunction @@ -0,0 +1,48 @@ +# frame 7 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.92 ~1.83 ~0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.93 ~2.13 ~0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.88 ~2.4 ~0.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.77 ~2.6 ~0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.61 ~2.72 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.41 ~2.77 ~-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.17 ~2.72 ~-0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.07 ~2.6 ~-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~2.4 ~-0.99 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.52 ~2.13 ~-1.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.71 ~1.83 ~-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.92 ~1.17 ~-0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.93 ~0.87 ~-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.88 ~0.6 ~-0.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.77 ~0.4 ~-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.61 ~0.28 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.41 ~0.23 ~0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.17 ~0.28 ~0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.07 ~0.4 ~0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~0.6 ~0.99 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.52 ~0.87 ~1.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.71 ~1.17 ~1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.84 ~1.5 ~1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.09 ~1.55 ~0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.26 ~1.59 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.35 ~1.63 ~0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.35 ~1.66 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.25 ~1.68 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.07 ~1.69 ~-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.82 ~1.68 ~-1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.66 ~-1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.16 ~1.63 ~-1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~1.59 ~-1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.54 ~1.55 ~-1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.84 ~1.5 ~-1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.09 ~1.45 ~-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.26 ~1.41 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.35 ~1.37 ~-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.35 ~1.34 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.25 ~1.32 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.07 ~1.31 ~0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.82 ~1.32 ~1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.34 ~1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.16 ~1.37 ~1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~1.41 ~1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.54 ~1.45 ~1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_008.mcfunction new file mode 100644 index 000000000..9c527bc74 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_008.mcfunction @@ -0,0 +1,48 @@ +# frame 8 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.91 ~1.81 ~0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.89 ~2.11 ~0.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.8 ~2.36 ~0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.65 ~2.55 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.47 ~2.67 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.25 ~2.72 ~-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~2.67 ~-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.23 ~2.55 ~-0.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~2.36 ~-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.64 ~2.11 ~-0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.79 ~1.81 ~-0.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.91 ~1.19 ~-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.89 ~0.89 ~-0.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.8 ~0.64 ~-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.65 ~0.45 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.47 ~0.33 ~-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.25 ~0.28 ~0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~0.33 ~0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.23 ~0.45 ~0.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~0.64 ~0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.64 ~0.89 ~0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.79 ~1.19 ~0.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.88 ~1.5 ~0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.08 ~1.58 ~0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.2 ~1.66 ~0.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.24 ~1.72 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.2 ~1.77 ~-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.08 ~1.8 ~-0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.88 ~1.81 ~-0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.62 ~1.8 ~-1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.32 ~1.77 ~-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.0 ~1.72 ~-1.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.32 ~1.66 ~-1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.62 ~1.58 ~-1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.88 ~1.5 ~-0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.08 ~1.42 ~-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.2 ~1.34 ~-0.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.24 ~1.28 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.2 ~1.23 ~0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.08 ~1.2 ~0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.88 ~1.19 ~0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.62 ~1.2 ~1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.32 ~1.23 ~1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.0 ~1.28 ~1.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.32 ~1.34 ~1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.62 ~1.42 ~1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_009.mcfunction new file mode 100644 index 000000000..e5e574e1a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_009.mcfunction @@ -0,0 +1,48 @@ +# frame 9 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.89 ~1.8 ~0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.83 ~2.07 ~0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~2.31 ~0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.55 ~2.49 ~0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.35 ~2.6 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.12 ~2.64 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.11 ~2.6 ~-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.34 ~2.49 ~-0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.55 ~2.31 ~-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.71 ~2.07 ~-0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.83 ~1.8 ~-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.89 ~1.2 ~-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.83 ~0.93 ~-0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~0.69 ~-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.55 ~0.51 ~-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.35 ~0.4 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.12 ~0.36 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.11 ~0.4 ~0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.34 ~0.51 ~0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.55 ~0.69 ~0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.71 ~0.93 ~0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.83 ~1.2 ~0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.89 ~1.5 ~0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.04 ~1.61 ~0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.12 ~1.7 ~0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.12 ~1.79 ~-0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.04 ~1.85 ~-0.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.9 ~1.89 ~-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.69 ~1.91 ~-0.84 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.43 ~1.89 ~-1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.15 ~1.85 ~-1.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.14 ~1.79 ~-1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.43 ~1.7 ~-1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.68 ~1.61 ~-0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.89 ~1.5 ~-0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.04 ~1.39 ~-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.12 ~1.3 ~-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.12 ~1.21 ~0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.04 ~1.15 ~0.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.9 ~1.11 ~0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.69 ~1.09 ~0.84 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.43 ~1.11 ~1.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.15 ~1.15 ~1.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.14 ~1.21 ~1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.43 ~1.3 ~1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.68 ~1.39 ~0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_010.mcfunction new file mode 100644 index 000000000..6436d7794 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_010.mcfunction @@ -0,0 +1,48 @@ +# frame 10 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.86 ~1.77 ~0.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.78 ~2.03 ~0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.65 ~2.24 ~0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.47 ~2.41 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.26 ~2.52 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.03 ~2.55 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~2.52 ~-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.41 ~2.41 ~-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.6 ~2.24 ~-0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.75 ~2.03 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.84 ~1.77 ~-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.86 ~1.23 ~-0.54 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.78 ~0.97 ~-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.65 ~0.76 ~-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.47 ~0.59 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.26 ~0.48 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.03 ~0.45 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~0.48 ~0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.41 ~0.59 ~0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.6 ~0.76 ~0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.75 ~0.97 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.84 ~1.23 ~0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.88 ~1.5 ~0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.98 ~1.62 ~0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~1.02 ~1.74 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.99 ~1.84 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.89 ~1.91 ~-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.96 ~-0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.98 ~-0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.27 ~1.96 ~-0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.0 ~1.91 ~-0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.26 ~1.84 ~-0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.74 ~-0.89 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.62 ~-0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.88 ~1.5 ~-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.98 ~1.38 ~-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-1.02 ~1.26 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.99 ~1.16 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.89 ~1.09 ~0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.04 ~0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.02 ~0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.27 ~1.04 ~0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.0 ~1.09 ~0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.26 ~1.16 ~0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.26 ~0.89 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.38 ~0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_011.mcfunction new file mode 100644 index 000000000..3551093c0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_011.mcfunction @@ -0,0 +1,48 @@ +# frame 11 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.81 ~1.74 ~0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.97 ~0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.58 ~2.17 ~0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.4 ~2.32 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~2.41 ~0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.02 ~2.45 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.24 ~2.41 ~-0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.44 ~2.32 ~-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.61 ~2.17 ~-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.74 ~1.97 ~-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.82 ~1.74 ~-0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.81 ~1.26 ~-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.03 ~-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.58 ~0.83 ~-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.4 ~0.68 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~0.59 ~-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.02 ~0.55 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.24 ~0.59 ~0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.44 ~0.68 ~0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.61 ~0.83 ~0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.74 ~1.03 ~0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.82 ~1.26 ~0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.85 ~1.5 ~0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.91 ~1.63 ~0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.91 ~1.76 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.85 ~1.87 ~-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.73 ~1.95 ~-0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.56 ~2.0 ~-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.36 ~2.02 ~-0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~2.0 ~-0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.11 ~1.95 ~-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.34 ~1.87 ~-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.55 ~1.76 ~-0.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.63 ~-0.6 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.85 ~1.5 ~-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.91 ~1.37 ~-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.91 ~1.24 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.85 ~1.13 ~0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.73 ~1.05 ~0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.56 ~1.0 ~0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.36 ~0.98 ~0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~1.0 ~0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.11 ~1.05 ~0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.34 ~1.13 ~0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.55 ~1.24 ~0.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.37 ~0.6 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_012.mcfunction new file mode 100644 index 000000000..043d5689a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_012.mcfunction @@ -0,0 +1,48 @@ +# frame 12 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.75 ~1.71 ~0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.66 ~1.92 ~0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.52 ~2.09 ~0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.35 ~2.22 ~0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.16 ~2.3 ~0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~2.33 ~0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.25 ~2.3 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.44 ~2.22 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~2.09 ~-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.71 ~1.92 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.77 ~1.71 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.75 ~1.29 ~-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.66 ~1.08 ~-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.52 ~0.91 ~-0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.35 ~0.78 ~-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.16 ~0.7 ~-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~0.67 ~-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.25 ~0.7 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.44 ~0.78 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~0.91 ~0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.71 ~1.08 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.77 ~1.29 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.79 ~1.5 ~0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.82 ~1.64 ~0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.8 ~1.77 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.88 ~-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~1.96 ~-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.42 ~2.02 ~-0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.23 ~2.04 ~-0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.02 ~2.02 ~-0.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~1.96 ~-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.4 ~1.88 ~-0.64 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.57 ~1.77 ~-0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.7 ~1.64 ~-0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.79 ~1.5 ~-0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.82 ~1.36 ~-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.8 ~1.23 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.12 ~0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~1.04 ~0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.42 ~0.98 ~0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.23 ~0.96 ~0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.02 ~0.98 ~0.66 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~1.04 ~0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.4 ~1.12 ~0.64 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.57 ~1.23 ~0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.7 ~1.36 ~0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_013.mcfunction new file mode 100644 index 000000000..29c891f37 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_013.mcfunction @@ -0,0 +1,48 @@ +# frame 13 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.68 ~1.68 ~0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~1.85 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.47 ~2.0 ~0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~2.11 ~0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.14 ~2.18 ~0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~2.21 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.23 ~2.18 ~0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.4 ~2.11 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.54 ~2.0 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.64 ~1.85 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.7 ~1.68 ~-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.68 ~1.32 ~-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~1.15 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.47 ~1.0 ~-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~0.89 ~-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.14 ~0.82 ~-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~0.79 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.23 ~0.82 ~-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.4 ~0.89 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.54 ~1.0 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.64 ~1.15 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.7 ~1.32 ~0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.71 ~1.5 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.72 ~1.64 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.68 ~1.76 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~1.87 ~-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.47 ~1.96 ~-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~2.01 ~-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~2.03 ~-0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.06 ~2.01 ~-0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.25 ~1.96 ~-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.42 ~1.87 ~-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.56 ~1.76 ~-0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.66 ~1.64 ~-0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.71 ~1.5 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.72 ~1.36 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.68 ~1.24 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~1.13 ~0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.47 ~1.04 ~0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~0.99 ~0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~0.97 ~0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.06 ~0.99 ~0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.25 ~1.04 ~0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.42 ~1.13 ~0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.56 ~1.24 ~0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.66 ~1.36 ~0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_014.mcfunction new file mode 100644 index 000000000..8d88e94d2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_014.mcfunction @@ -0,0 +1,48 @@ +# frame 14 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.6 ~1.65 ~0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.53 ~1.79 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.42 ~1.91 ~0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.28 ~2.01 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~2.07 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.03 ~2.09 ~0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~2.07 ~0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.34 ~2.01 ~0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.47 ~1.91 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.56 ~1.79 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.61 ~1.65 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.6 ~1.35 ~-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.53 ~1.21 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.42 ~1.09 ~-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.28 ~0.99 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~0.93 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.03 ~0.91 ~-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~0.93 ~-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.34 ~0.99 ~-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.47 ~1.09 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.56 ~1.21 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.61 ~1.35 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.63 ~1.5 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.62 ~1.63 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.57 ~1.75 ~-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.48 ~1.85 ~-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.36 ~1.93 ~-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.21 ~1.98 ~-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~2.0 ~-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.11 ~1.98 ~-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.27 ~1.93 ~-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.4 ~1.85 ~-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.52 ~1.75 ~-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.59 ~1.63 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.63 ~1.5 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.62 ~1.37 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.57 ~1.25 ~0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.48 ~1.15 ~0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.36 ~1.07 ~0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.21 ~1.02 ~0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~1.0 ~0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.11 ~1.02 ~0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.27 ~1.07 ~0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.4 ~1.15 ~0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.52 ~1.25 ~0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.59 ~1.37 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_015.mcfunction new file mode 100644 index 000000000..4fcad7785 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_015.mcfunction @@ -0,0 +1,48 @@ +# frame 15 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.62 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~1.73 ~0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.37 ~1.83 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.26 ~1.9 ~0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~1.95 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~1.96 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.14 ~1.95 ~0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.27 ~1.9 ~0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.38 ~1.83 ~0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.46 ~1.73 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.62 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.38 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~1.27 ~-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.37 ~1.17 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.26 ~1.1 ~-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~1.05 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~1.04 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.14 ~1.05 ~-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.27 ~1.1 ~-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.38 ~1.17 ~-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.46 ~1.27 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.38 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.53 ~1.5 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.62 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.46 ~1.72 ~-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.38 ~1.82 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.27 ~1.89 ~-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.14 ~1.93 ~-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~1.95 ~-0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~1.93 ~-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.26 ~1.89 ~-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.37 ~1.82 ~-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.45 ~1.72 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.62 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.53 ~1.5 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.51 ~1.38 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.46 ~1.28 ~0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.38 ~1.18 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.27 ~1.11 ~0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.14 ~1.07 ~0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~1.05 ~0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~1.07 ~0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.26 ~1.11 ~0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.37 ~1.18 ~0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.45 ~1.28 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.51 ~1.38 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_016.mcfunction new file mode 100644 index 000000000..f524dc463 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_016.mcfunction @@ -0,0 +1,48 @@ +# frame 16 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.41 ~1.59 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.37 ~1.67 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~1.74 ~0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.23 ~1.8 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~1.83 ~0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.02 ~1.85 ~0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.83 ~0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~1.8 ~0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.28 ~1.74 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.35 ~1.67 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.4 ~1.59 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.41 ~1.41 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.37 ~1.33 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~1.26 ~-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.23 ~1.2 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~1.17 ~-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.02 ~1.15 ~-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.17 ~-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~1.2 ~-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.28 ~1.26 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.35 ~1.33 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.4 ~1.41 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.42 ~1.5 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.4 ~1.6 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.36 ~1.69 ~-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.29 ~1.77 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~1.83 ~-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.87 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~1.88 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.12 ~1.87 ~-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.22 ~1.83 ~-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~1.77 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.37 ~1.69 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.41 ~1.6 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.42 ~1.5 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.4 ~1.4 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.36 ~1.31 ~0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.29 ~1.23 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~1.17 ~0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.13 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~1.12 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.12 ~1.13 ~0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.22 ~1.17 ~0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~1.23 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.37 ~1.31 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.41 ~1.4 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_017.mcfunction new file mode 100644 index 000000000..239fefa3a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_017.mcfunction @@ -0,0 +1,48 @@ +# frame 17 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~1.56 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.29 ~1.62 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.25 ~1.67 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~1.71 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.12 ~1.73 ~0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.04 ~1.74 ~0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.04 ~1.73 ~0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.12 ~1.71 ~0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~1.67 ~0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.25 ~1.62 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.29 ~1.56 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~1.44 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.29 ~1.38 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.25 ~1.33 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~1.29 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.12 ~1.27 ~-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.04 ~1.26 ~-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.04 ~1.27 ~-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.12 ~1.29 ~-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~1.33 ~-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.25 ~1.38 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.29 ~1.44 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.31 ~1.5 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.29 ~1.58 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.26 ~1.65 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.21 ~1.71 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.14 ~1.76 ~-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.06 ~1.79 ~-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.02 ~1.8 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.1 ~1.79 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.17 ~1.76 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.23 ~1.71 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.28 ~1.65 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.3 ~1.58 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.31 ~1.5 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.29 ~1.42 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.26 ~1.35 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.21 ~1.29 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.14 ~1.24 ~0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.06 ~1.21 ~0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.02 ~1.2 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.1 ~1.21 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.17 ~1.24 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.23 ~1.29 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.28 ~1.35 ~-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.3 ~1.42 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_018.mcfunction new file mode 100644 index 000000000..ea48c8085 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_018.mcfunction @@ -0,0 +1,48 @@ +# frame 18 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.21 ~1.54 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~1.57 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.17 ~1.6 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.14 ~1.62 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.1 ~1.64 ~0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~1.64 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~1.64 ~0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.06 ~1.62 ~0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.11 ~1.6 ~0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.15 ~1.57 ~0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.18 ~1.54 ~0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.21 ~1.46 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~1.43 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.17 ~1.4 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.14 ~1.38 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.1 ~1.36 ~-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~1.36 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~1.36 ~-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.06 ~1.38 ~-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.11 ~1.4 ~-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.15 ~1.43 ~-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.18 ~1.46 ~-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~1.5 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.19 ~1.55 ~-0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.17 ~1.6 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.13 ~1.65 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.68 ~-0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.04 ~1.7 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~1.71 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.07 ~1.7 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.11 ~1.68 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.15 ~1.65 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.18 ~1.6 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~1.55 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.2 ~1.5 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.19 ~1.45 ~0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.17 ~1.4 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.13 ~1.35 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.32 ~0.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.04 ~1.3 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~1.29 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.07 ~1.3 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.11 ~1.32 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.15 ~1.35 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.18 ~1.4 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.2 ~1.45 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_019.mcfunction new file mode 100644 index 000000000..06b4fa35b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_019.mcfunction @@ -0,0 +1,48 @@ +# frame 19 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.1 ~1.52 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.1 ~1.53 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.54 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.08 ~1.55 ~0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.06 ~1.56 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.03 ~1.56 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.01 ~1.56 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.02 ~1.55 ~0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.04 ~1.54 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.07 ~1.53 ~0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.08 ~1.52 ~0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.1 ~1.48 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.1 ~1.47 ~-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.46 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.08 ~1.45 ~-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.06 ~1.44 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.03 ~1.44 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.01 ~1.44 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.02 ~1.45 ~-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.04 ~1.46 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.07 ~1.47 ~-0.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.08 ~1.48 ~-0.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.1 ~1.5 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.53 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.08 ~1.55 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.06 ~1.57 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.04 ~1.59 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.02 ~1.6 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.0 ~1.6 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.03 ~1.6 ~0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.05 ~1.59 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.07 ~1.57 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.55 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.53 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.1 ~1.5 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.09 ~1.47 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.08 ~1.45 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.06 ~1.43 ~0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.04 ~1.41 ~0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.02 ~1.4 ~0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.0 ~1.4 ~0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.03 ~1.4 ~-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.05 ~1.41 ~-0.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.07 ~1.43 ~-0.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.45 ~-0.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~0.09 ~1.47 ~-0.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_020.mcfunction new file mode 100644 index 000000000..96e0b8fa3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/cross_ring/cross_ring_020.mcfunction @@ -0,0 +1,3 @@ +# frame 20 / 20 +# 円 +particle dust{color:[0.560,0.0,0.0],scale:0.8} ~-0.0 ~1.5 ~0.0 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_01.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_01.mcfunction new file mode 100644 index 000000000..c949a13df --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_01.mcfunction @@ -0,0 +1,122 @@ +# frame 1 / 5 +# コレクション 1--円 +particle smoke ~-0.0 ~0.0 ~0.38 ~32.29 ~0.0 ~1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~0.37 ~98017152.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~0.37 ~195090400.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~0.36 ~290284768.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~0.35 ~382683520.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~0.33 ~471396832.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~0.31 ~555570176.0 ~0.0 ~831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~0.29 ~634393408.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~0.27 ~707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~0.24 ~773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~0.21 ~831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~0.18 ~881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~0.14 ~923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~0.11 ~956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.07 ~980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.04 ~995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.38 ~0.0 ~0.0 ~1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.04 ~995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.07 ~980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~-0.11 ~956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~-0.14 ~923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~-0.18 ~881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~-0.21 ~831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~-0.24 ~773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~-0.27 ~707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~-0.29 ~634393408.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~-0.31 ~555570176.0 ~0.0 ~-831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~-0.33 ~471396832.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~-0.35 ~382683520.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~-0.36 ~290284768.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~-0.37 ~195090400.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~-0.37 ~98017152.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.0 ~0.0 ~-0.38 ~32.29 ~0.0 ~-1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~-0.37 ~-98017096.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~-0.37 ~-195090288.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~-0.36 ~-290284640.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~-0.35 ~-382683424.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~-0.33 ~-471396704.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~-0.31 ~-555570176.0 ~0.0 ~-831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~-0.29 ~-634393280.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~-0.27 ~-707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~-0.24 ~-773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~-0.21 ~-831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~-0.18 ~-881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~-0.14 ~-923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~-0.11 ~-956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.07 ~-980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.04 ~-995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.38 ~0.0 ~0.0 ~-1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.04 ~-995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.07 ~-980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~0.11 ~-956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~0.14 ~-923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~0.18 ~-881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~0.21 ~-831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~0.24 ~-773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~0.27 ~-707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~0.29 ~-634393280.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~0.31 ~-555570176.0 ~0.0 ~831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~0.33 ~-471396704.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~0.35 ~-382683424.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~0.36 ~-290284640.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~0.37 ~-195090288.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~0.37 ~-98017096.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面 +particle flash ~-0.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面.001 +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-6.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~6.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-5.38 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-5.01 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-4.52 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-4.08 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-3.57 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.06 ~-3.2 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-2.67 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~-2.21 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-1.68 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-1.32 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-0.7 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-0.25 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~0.29 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.06 ~0.77 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.18 ~1.07 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~1.66 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~2.26 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~2.65 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~3.14 ~-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~3.58 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.08 ~3.99 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~4.51 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~5.02 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~5.39 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~5.76 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-5.8 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-5.29 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-4.78 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~-4.26 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-3.82 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~-3.33 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.17 ~-2.77 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-2.35 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-1.92 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-1.44 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-0.99 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-0.5 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-0.0 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~0.45 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~1.01 ~-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~1.64 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~1.89 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.08 ~2.46 ~-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~2.84 ~0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~3.36 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.08 ~4.06 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~4.5 ~0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~5.02 ~-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.12 ~5.36 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] + +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ~ ~ ~ 1.5 1.4 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_02.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_02.mcfunction new file mode 100644 index 000000000..5b6cb209a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_02.mcfunction @@ -0,0 +1,122 @@ +# frame 2 / 5 +# コレクション 1--円 +particle smoke ~-0.0 ~0.0 ~0.38 ~32.29 ~0.0 ~1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~0.37 ~98017152.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~0.37 ~195090400.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~0.36 ~290284768.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~0.35 ~382683520.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~0.33 ~471396832.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~0.31 ~555570176.0 ~0.0 ~831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~0.29 ~634393408.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~0.27 ~707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~0.24 ~773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~0.21 ~831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~0.18 ~881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~0.14 ~923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~0.11 ~956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.07 ~980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.04 ~995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.38 ~0.0 ~0.0 ~1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.04 ~995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.07 ~980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~-0.11 ~956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~-0.14 ~923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~-0.18 ~881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~-0.21 ~831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~-0.24 ~773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~-0.27 ~707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~-0.29 ~634393408.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~-0.31 ~555570176.0 ~0.0 ~-831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~-0.33 ~471396832.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~-0.35 ~382683520.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~-0.36 ~290284768.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~-0.37 ~195090400.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~-0.37 ~98017152.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.0 ~0.0 ~-0.38 ~32.29 ~0.0 ~-1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~-0.37 ~-98017096.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~-0.37 ~-195090288.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~-0.36 ~-290284640.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~-0.35 ~-382683424.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~-0.33 ~-471396704.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~-0.31 ~-555570176.0 ~0.0 ~-831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~-0.29 ~-634393280.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~-0.27 ~-707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~-0.24 ~-773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~-0.21 ~-831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~-0.18 ~-881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~-0.14 ~-923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~-0.11 ~-956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.07 ~-980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.04 ~-995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.38 ~0.0 ~0.0 ~-1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.04 ~-995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.07 ~-980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~0.11 ~-956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~0.14 ~-923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~0.18 ~-881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~0.21 ~-831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~0.24 ~-773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~0.27 ~-707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~0.29 ~-634393280.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~0.31 ~-555570176.0 ~0.0 ~831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~0.33 ~-471396704.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~0.35 ~-382683424.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~0.36 ~-290284640.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~0.37 ~-195090288.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~0.37 ~-98017096.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面 +particle flash ~-0.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面.001 +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.14 ~-6.14 ~-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~5.94 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~-5.63 ~-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-5.09 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~-4.61 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~-4.12 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.05 ~-3.7 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-3.12 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-2.62 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~-2.19 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-1.65 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-1.11 ~0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-0.72 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~-0.4 ~-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~0.25 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~0.75 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~1.14 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.08 ~1.62 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.05 ~2.0 ~-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~2.74 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~3.0 ~0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.11 ~3.47 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~4.06 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.07 ~4.6 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.15 ~5.25 ~-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~5.34 ~-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~5.78 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.07 ~-5.65 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-5.21 ~-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.08 ~-4.92 ~0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-4.28 ~0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-3.83 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.05 ~-3.25 ~0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.13 ~-2.64 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-2.41 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-1.94 ~0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-1.44 ~0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.09 ~-1.04 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.12 ~-0.58 ~-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~0.02 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~0.47 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~1.05 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~1.49 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.14 ~1.79 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~2.44 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~2.87 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~3.38 ~-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~3.8 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~4.3 ~-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~4.79 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.08 ~5.43 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] + +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ~ ~ ~ 1.5 1.45 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_03.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_03.mcfunction new file mode 100644 index 000000000..01a1a3f6d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_03.mcfunction @@ -0,0 +1,122 @@ +# frame 3 / 5 +# コレクション 1--円 +particle smoke ~-0.0 ~0.0 ~0.38 ~32.29 ~0.0 ~1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~0.37 ~98017152.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~0.37 ~195090400.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~0.36 ~290284768.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~0.35 ~382683520.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~0.33 ~471396832.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~0.31 ~555570176.0 ~0.0 ~831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~0.29 ~634393408.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~0.27 ~707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~0.24 ~773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~0.21 ~831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~0.18 ~881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~0.14 ~923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~0.11 ~956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.07 ~980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.04 ~995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.38 ~0.0 ~0.0 ~1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.04 ~995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.07 ~980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~-0.11 ~956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~-0.14 ~923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~-0.18 ~881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~-0.21 ~831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~-0.24 ~773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~-0.27 ~707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~-0.29 ~634393408.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~-0.31 ~555570176.0 ~0.0 ~-831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~-0.33 ~471396832.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~-0.35 ~382683520.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~-0.36 ~290284768.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~-0.37 ~195090400.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~-0.37 ~98017152.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.0 ~0.0 ~-0.38 ~32.29 ~0.0 ~-1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~-0.37 ~-98017096.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~-0.37 ~-195090288.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~-0.36 ~-290284640.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~-0.35 ~-382683424.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~-0.33 ~-471396704.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~-0.31 ~-555570176.0 ~0.0 ~-831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~-0.29 ~-634393280.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~-0.27 ~-707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~-0.24 ~-773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~-0.21 ~-831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~-0.18 ~-881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~-0.14 ~-923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~-0.11 ~-956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.07 ~-980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.04 ~-995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.38 ~0.0 ~0.0 ~-1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.04 ~-995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.07 ~-980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~0.11 ~-956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~0.14 ~-923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~0.18 ~-881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~0.21 ~-831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~0.24 ~-773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~0.27 ~-707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~0.29 ~-634393280.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~0.31 ~-555570176.0 ~0.0 ~831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~0.33 ~-471396704.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~0.35 ~-382683424.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~0.36 ~-290284640.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~0.37 ~-195090288.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~0.37 ~-98017096.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面 +particle flash ~-0.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面.001 +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-5.76 ~0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~6.05 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.05 ~-5.56 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.13 ~-4.97 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~-4.48 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-4.06 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~-3.56 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-3.15 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~-2.52 ~0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.13 ~-2.1 ~0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-1.65 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~-1.12 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~-0.65 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.11 ~-0.42 ~-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~0.23 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~0.9 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~1.11 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~1.83 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.08 ~1.94 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~2.65 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~3.17 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~3.67 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~4.1 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~4.62 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~5.1 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~5.58 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.11 ~5.6 ~-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-5.9 ~-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-5.22 ~-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~-4.89 ~0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-4.18 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-3.84 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-3.3 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~-2.58 ~0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-2.42 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-1.88 ~0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-1.37 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-0.97 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~-0.59 ~-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.1 ~-0.12 ~-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~0.37 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~0.95 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~1.45 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~1.95 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~2.3 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.15 ~2.81 ~0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.06 ~3.25 ~0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~3.77 ~-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~4.28 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~4.8 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~5.3 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] + +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ~ ~ ~ 1.5 1.5 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_04.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_04.mcfunction new file mode 100644 index 000000000..f99e3f8c6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_04.mcfunction @@ -0,0 +1,122 @@ +# frame 4 / 5 +# コレクション 1--円 +particle smoke ~-0.0 ~0.0 ~0.38 ~32.29 ~0.0 ~1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~0.37 ~98017152.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~0.37 ~195090400.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~0.36 ~290284768.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~0.35 ~382683520.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~0.33 ~471396832.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~0.31 ~555570176.0 ~0.0 ~831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~0.29 ~634393408.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~0.27 ~707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~0.24 ~773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~0.21 ~831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~0.18 ~881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~0.14 ~923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~0.11 ~956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.07 ~980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.04 ~995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.38 ~0.0 ~0.0 ~1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.04 ~995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.07 ~980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~-0.11 ~956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~-0.14 ~923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~-0.18 ~881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~-0.21 ~831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~-0.24 ~773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~-0.27 ~707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~-0.29 ~634393408.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~-0.31 ~555570176.0 ~0.0 ~-831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~-0.33 ~471396832.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~-0.35 ~382683520.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~-0.36 ~290284768.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~-0.37 ~195090400.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~-0.37 ~98017152.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.0 ~0.0 ~-0.38 ~32.29 ~0.0 ~-1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~-0.37 ~-98017096.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~-0.37 ~-195090288.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~-0.36 ~-290284640.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~-0.35 ~-382683424.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~-0.33 ~-471396704.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~-0.31 ~-555570176.0 ~0.0 ~-831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~-0.29 ~-634393280.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~-0.27 ~-707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~-0.24 ~-773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~-0.21 ~-831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~-0.18 ~-881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~-0.14 ~-923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~-0.11 ~-956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.07 ~-980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.04 ~-995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.38 ~0.0 ~0.0 ~-1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.04 ~-995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.07 ~-980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~0.11 ~-956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~0.14 ~-923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~0.18 ~-881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~0.21 ~-831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~0.24 ~-773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~0.27 ~-707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~0.29 ~-634393280.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~0.31 ~-555570176.0 ~0.0 ~831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~0.33 ~-471396704.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~0.35 ~-382683424.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~0.36 ~-290284640.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~0.37 ~-195090288.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~0.37 ~-98017096.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面 +particle flash ~-0.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面.001 +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-5.99 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~6.0 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-5.46 ~-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-5.04 ~0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.11 ~-4.5 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-3.97 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~-3.64 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-3.16 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-2.62 ~0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.16 ~-2.0 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.1 ~-1.62 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-1.18 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-0.64 ~0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.15 ~-0.36 ~-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.06 ~0.28 ~-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.11 ~0.84 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~1.08 ~0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.1 ~1.75 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~2.07 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.1 ~2.59 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~3.12 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~3.9 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.04 ~4.03 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~4.54 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~5.07 ~-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~5.52 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~5.58 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-5.81 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~-5.4 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-4.54 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~-4.25 ~0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-3.78 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-3.42 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-2.76 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~-2.48 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-1.66 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-1.34 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~-0.98 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-0.49 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~-0.02 ~-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.09 ~0.32 ~-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~0.98 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~1.43 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.12 ~2.05 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~2.35 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~2.89 ~-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.08 ~3.52 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.08 ~3.75 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.05 ~4.05 ~-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~4.86 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~5.28 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] + +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ~ ~ ~ 1.5 1.55 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_05.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_05.mcfunction new file mode 100644 index 000000000..82da54e34 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb2_05.mcfunction @@ -0,0 +1,122 @@ +# frame 5 / 5 +# コレクション 1--円 +particle smoke ~-0.0 ~0.0 ~0.38 ~32.29 ~0.0 ~1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~0.37 ~98017152.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~0.37 ~195090400.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~0.36 ~290284768.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~0.35 ~382683520.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~0.33 ~471396832.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~0.31 ~555570176.0 ~0.0 ~831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~0.29 ~634393408.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~0.27 ~707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~0.24 ~773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~0.21 ~831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~0.18 ~881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~0.14 ~923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~0.11 ~956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.07 ~980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~0.04 ~995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.38 ~0.0 ~0.0 ~1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.04 ~995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.37 ~0.0 ~-0.07 ~980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.36 ~0.0 ~-0.11 ~956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.35 ~0.0 ~-0.14 ~923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.33 ~0.0 ~-0.18 ~881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.31 ~0.0 ~-0.21 ~831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.29 ~0.0 ~-0.24 ~773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.27 ~0.0 ~-0.27 ~707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.24 ~0.0 ~-0.29 ~634393408.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.21 ~0.0 ~-0.31 ~555570176.0 ~0.0 ~-831469504.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.18 ~0.0 ~-0.33 ~471396832.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.14 ~0.0 ~-0.35 ~382683520.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.11 ~0.0 ~-0.36 ~290284768.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.07 ~0.0 ~-0.37 ~195090400.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~0.04 ~0.0 ~-0.37 ~98017152.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.0 ~0.0 ~-0.38 ~32.29 ~0.0 ~-1000000000.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~-0.37 ~-98017096.0 ~0.0 ~-995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~-0.37 ~-195090288.0 ~0.0 ~-980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~-0.36 ~-290284640.0 ~0.0 ~-956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~-0.35 ~-382683424.0 ~0.0 ~-923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~-0.33 ~-471396704.0 ~0.0 ~-881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~-0.31 ~-555570176.0 ~0.0 ~-831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~-0.29 ~-634393280.0 ~0.0 ~-773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~-0.27 ~-707106752.0 ~0.0 ~-707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~-0.24 ~-773010432.0 ~0.0 ~-634393280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~-0.21 ~-831469632.0 ~0.0 ~-555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~-0.18 ~-881921216.0 ~0.0 ~-471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~-0.14 ~-923879488.0 ~0.0 ~-382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~-0.11 ~-956940352.0 ~0.0 ~-290284640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.07 ~-980785280.0 ~0.0 ~-195090320.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~-0.04 ~-995184640.0 ~0.0 ~-98017096.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.38 ~0.0 ~0.0 ~-1000000000.0 ~0.0 ~19.87 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.04 ~-995184640.0 ~0.0 ~98017152.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.37 ~0.0 ~0.07 ~-980785280.0 ~0.0 ~195090368.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.36 ~0.0 ~0.11 ~-956940352.0 ~0.0 ~290284704.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.35 ~0.0 ~0.14 ~-923879488.0 ~0.0 ~382683456.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.33 ~0.0 ~0.18 ~-881921216.0 ~0.0 ~471396768.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.31 ~0.0 ~0.21 ~-831469504.0 ~0.0 ~555570176.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.29 ~0.0 ~0.24 ~-773010432.0 ~0.0 ~634393408.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.27 ~0.0 ~0.27 ~-707106752.0 ~0.0 ~707106752.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.24 ~0.0 ~0.29 ~-634393280.0 ~0.0 ~773010432.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.21 ~0.0 ~0.31 ~-555570176.0 ~0.0 ~831469632.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.18 ~0.0 ~0.33 ~-471396704.0 ~0.0 ~881921216.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.14 ~0.0 ~0.35 ~-382683424.0 ~0.0 ~923879488.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.11 ~0.0 ~0.36 ~-290284640.0 ~0.0 ~956940352.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.07 ~0.0 ~0.37 ~-195090288.0 ~0.0 ~980785280.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +particle smoke ~-0.04 ~0.0 ~0.37 ~-98017096.0 ~0.0 ~995184640.0 0.00000000056 0 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面 +particle flash ~-0.0 ~0.0 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +# コレクション 1--平面.001 +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.1 ~-5.93 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~6.08 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-5.51 ~-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-4.74 ~0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-4.51 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-3.92 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-3.51 ~0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-3.11 ~0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-2.51 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~-2.03 ~0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.07 ~-1.8 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-1.18 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.08 ~-0.61 ~0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.15 ~-0.33 ~-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~0.24 ~-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.08 ~0.51 ~-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~1.3 ~0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~1.68 ~0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.06 ~2.42 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~2.64 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~3.14 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~3.53 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~4.06 ~0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.11 ~4.35 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~5.03 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~5.7 ~0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.01 ~5.77 ~0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-5.75 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.17 ~-4.97 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~-4.65 ~0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~-4.23 ~0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~-3.84 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-3.3 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.14 ~-2.77 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~-2.3 ~0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~-1.94 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.0 ~-1.42 ~0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.12 ~-0.84 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.02 ~-0.51 ~0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.04 ~0.04 ~-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~0.51 ~-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.14 ~0.79 ~-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~1.46 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.13 ~2.11 ~0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.03 ~2.2 ~-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~2.86 ~-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.03 ~3.38 ~0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.05 ~4.09 ~0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.0 ~4.32 ~-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~0.02 ~4.77 ~-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.131,0.013,0.25],scale:0.75} ~-0.01 ~5.24 ~-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..16,tag=ShowParticles] + +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ~ ~ ~ 1.5 1.6 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_01.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_01.mcfunction new file mode 100644 index 000000000..0a62749d0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_01.mcfunction @@ -0,0 +1,94 @@ +# frame 1 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-3.0 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.17 ^-1.34 ^-1.58 ^723607360.0 ^447219520.0 ^525725312.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.83 ^-1.34 ^-2.55 ^-276388000.0 ^447219872.0 ^850649216.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.68 ^-1.34 ^0.0 ^-894426112.0 ^447215616.0 ^0.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.83 ^-1.34 ^2.55 ^-276388000.0 ^447219872.0 ^-850649216.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.17 ^-1.34 ^1.58 ^723607360.0 ^447219520.0 ^-525725312.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.83 ^1.34 ^-2.55 ^276388000.0 ^-447219872.0 ^850649216.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.17 ^1.34 ^-1.58 ^-723607360.0 ^-447219520.0 ^525725312.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.17 ^1.34 ^1.58 ^-723607360.0 ^-447219520.0 ^-525725312.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.83 ^1.34 ^2.55 ^276388000.0 ^-447219872.0 ^-850649216.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.68 ^1.34 ^0.0 ^894426112.0 ^-447215616.0 ^0.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^3.0 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000017 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^3.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.59 ^0.0 ^2.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.15 ^0.0 ^2.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.67 ^0.0 ^2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.12 ^0.0 ^2.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.49 ^0.0 ^1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.77 ^0.0 ^1.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.94 ^0.0 ^0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^3.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.94 ^0.0 ^-0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.77 ^0.0 ^-1.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.49 ^0.0 ^-1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.12 ^0.0 ^-2.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.67 ^0.0 ^-2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.15 ^0.0 ^-2.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.59 ^0.0 ^-2.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-3.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.59 ^0.0 ^-2.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.15 ^0.0 ^-2.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.67 ^0.0 ^-2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.12 ^0.0 ^-2.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.49 ^0.0 ^-1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.77 ^0.0 ^-1.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.94 ^0.0 ^-0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-3.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.94 ^0.0 ^0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.77 ^0.0 ^1.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.49 ^0.0 ^1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.12 ^0.0 ^2.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.67 ^0.0 ^2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.15 ^0.0 ^2.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.59 ^0.0 ^2.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.29 ^0.0 ^2.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.87 ^0.0 ^2.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.41 ^0.0 ^2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.89 ^0.0 ^2.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.31 ^0.0 ^1.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.63 ^0.0 ^1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.86 ^0.0 ^0.87 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.97 ^0.0 ^0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.97 ^0.0 ^-0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.86 ^0.0 ^-0.87 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.63 ^0.0 ^-1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.31 ^0.0 ^-1.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.89 ^0.0 ^-2.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.41 ^0.0 ^-2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.87 ^0.0 ^-2.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.29 ^0.0 ^-2.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.29 ^0.0 ^-2.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.87 ^0.0 ^-2.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.41 ^0.0 ^-2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.89 ^0.0 ^-2.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.31 ^0.0 ^-1.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.63 ^0.0 ^-1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.86 ^0.0 ^-0.87 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.97 ^0.0 ^-0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.97 ^0.0 ^0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.86 ^0.0 ^0.87 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.63 ^0.0 ^1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.31 ^0.0 ^1.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.89 ^0.0 ^2.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.41 ^0.0 ^2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.87 ^0.0 ^2.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.29 ^0.0 ^2.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.745 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_02.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_02.mcfunction new file mode 100644 index 000000000..6f388a081 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_02.mcfunction @@ -0,0 +1,94 @@ +# frame 2 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-2.84 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.43 ^-1.27 ^-0.75 ^855103040.0 ^447219488.0 ^262285120.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.04 ^-1.27 ^-2.54 ^14792836.0 ^447219904.0 ^894301760.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.4 ^-1.27 ^-0.83 ^-845963712.0 ^447215648.0 ^290419712.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.53 ^-1.27 ^2.03 ^-537617856.0 ^447219840.0 ^-714815616.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.46 ^-1.27 ^2.08 ^513697568.0 ^447219552.0 ^-732194944.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.53 ^1.27 ^-2.03 ^537617856.0 ^-447219840.0 ^714815616.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.46 ^1.27 ^-2.08 ^-513697568.0 ^-447219552.0 ^732194944.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.43 ^1.27 ^0.75 ^-855103040.0 ^-447219488.0 ^-262285120.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.04 ^1.27 ^2.54 ^-14792836.0 ^-447219904.0 ^-894301760.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.4 ^1.27 ^0.83 ^845963712.0 ^-447215648.0 ^-290419712.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^2.84 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000016 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^2.84 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.55 ^0.0 ^2.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.09 ^0.0 ^2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.01 ^0.0 ^2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.36 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.63 ^0.0 ^1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.79 ^0.0 ^0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.84 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.79 ^0.0 ^-0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.63 ^0.0 ^-1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.36 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.01 ^0.0 ^-2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^-2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.09 ^0.0 ^-2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.55 ^0.0 ^-2.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-2.84 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.55 ^0.0 ^-2.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.09 ^0.0 ^-2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^-2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.01 ^0.0 ^-2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.36 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.63 ^0.0 ^-1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.79 ^0.0 ^-0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.84 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.79 ^0.0 ^0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.63 ^0.0 ^1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.36 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.01 ^0.0 ^2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.09 ^0.0 ^2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.55 ^0.0 ^2.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.28 ^0.0 ^2.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.82 ^0.0 ^2.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.33 ^0.0 ^2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.79 ^0.0 ^2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.19 ^0.0 ^1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.49 ^0.0 ^1.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.71 ^0.0 ^0.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.81 ^0.0 ^0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.81 ^0.0 ^-0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.71 ^0.0 ^-0.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.49 ^0.0 ^-1.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.19 ^0.0 ^-1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.79 ^0.0 ^-2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.33 ^0.0 ^-2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.82 ^0.0 ^-2.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.28 ^0.0 ^-2.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.28 ^0.0 ^-2.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.82 ^0.0 ^-2.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.33 ^0.0 ^-2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.79 ^0.0 ^-2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.19 ^0.0 ^-1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.49 ^0.0 ^-1.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.71 ^0.0 ^-0.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.81 ^0.0 ^-0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.81 ^0.0 ^0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.71 ^0.0 ^0.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.49 ^0.0 ^1.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.19 ^0.0 ^1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.79 ^0.0 ^2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.33 ^0.0 ^2.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.82 ^0.0 ^2.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.28 ^0.0 ^2.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.74 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_03.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_03.mcfunction new file mode 100644 index 000000000..536176959 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_03.mcfunction @@ -0,0 +1,94 @@ +# frame 3 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-2.68 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.4 ^-1.2 ^0.08 ^893935040.0 ^447219488.0 ^-29577646.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.82 ^-1.2 ^-2.26 ^304370592.0 ^447219840.0 ^841042816.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.89 ^-1.2 ^-1.47 ^-705827968.0 ^447215648.0 ^549367936.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.99 ^-1.2 ^1.35 ^-740588480.0 ^447219840.0 ^-501520800.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.67 ^-1.2 ^2.31 ^248120752.0 ^447219552.0 ^-859319936.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.99 ^1.2 ^-1.35 ^740588480.0 ^-447219840.0 ^501520800.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.67 ^1.2 ^-2.31 ^-248120752.0 ^-447219552.0 ^859319936.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.4 ^1.2 ^-0.08 ^-893935040.0 ^-447219488.0 ^29577646.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.82 ^1.2 ^2.26 ^-304370592.0 ^-447219840.0 ^-841042816.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.89 ^1.2 ^1.47 ^705827968.0 ^-447215648.0 ^-549367936.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^2.68 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000015 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^2.68 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.52 ^0.0 ^2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.03 ^0.0 ^2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.49 ^0.0 ^2.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.9 ^0.0 ^1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.23 ^0.0 ^1.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.48 ^0.0 ^1.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.63 ^0.0 ^0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.68 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.63 ^0.0 ^-0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.48 ^0.0 ^-1.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.23 ^0.0 ^-1.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.9 ^0.0 ^-1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.49 ^0.0 ^-2.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.03 ^0.0 ^-2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.52 ^0.0 ^-2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-2.68 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.52 ^0.0 ^-2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.03 ^0.0 ^-2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.49 ^0.0 ^-2.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.9 ^0.0 ^-1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.23 ^0.0 ^-1.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.48 ^0.0 ^-1.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.63 ^0.0 ^-0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.68 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.63 ^0.0 ^0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.48 ^0.0 ^1.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.23 ^0.0 ^1.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.9 ^0.0 ^1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.49 ^0.0 ^2.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.03 ^0.0 ^2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.52 ^0.0 ^2.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.26 ^0.0 ^2.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.78 ^0.0 ^2.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.26 ^0.0 ^2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.69 ^0.0 ^2.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.06 ^0.0 ^1.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.36 ^0.0 ^1.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.56 ^0.0 ^0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.66 ^0.0 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.66 ^0.0 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.56 ^0.0 ^-0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.36 ^0.0 ^-1.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.06 ^0.0 ^-1.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.69 ^0.0 ^-2.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.26 ^0.0 ^-2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.78 ^0.0 ^-2.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.26 ^0.0 ^-2.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.26 ^0.0 ^-2.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.78 ^0.0 ^-2.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.26 ^0.0 ^-2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.69 ^0.0 ^-2.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.06 ^0.0 ^-1.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.36 ^0.0 ^-1.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.56 ^0.0 ^-0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.66 ^0.0 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.66 ^0.0 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.56 ^0.0 ^0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.36 ^0.0 ^1.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.06 ^0.0 ^1.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.69 ^0.0 ^2.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.26 ^0.0 ^2.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.78 ^0.0 ^2.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.26 ^0.0 ^2.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.735 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_04.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_04.mcfunction new file mode 100644 index 000000000..d4f148f76 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_04.mcfunction @@ -0,0 +1,94 @@ +# frame 4 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-2.53 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.11 ^-1.13 ^0.8 ^835895296.0 ^447219520.0 ^-318235296.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.42 ^-1.13 ^-1.76 ^560965120.0 ^447219808.0 ^696643776.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.24 ^-1.13 ^-1.89 ^-489204768.0 ^447215648.0 ^748783680.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.18 ^-1.13 ^0.59 ^-863304896.0 ^447219808.0 ^-233878288.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.11 ^-1.13 ^2.26 ^-44343872.0 ^447219520.0 ^-893324288.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.18 ^1.13 ^-0.59 ^863304896.0 ^-447219808.0 ^233878288.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.11 ^1.13 ^-2.26 ^44343872.0 ^-447219520.0 ^893324288.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.11 ^1.13 ^-0.8 ^-835895296.0 ^-447219520.0 ^318235296.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.42 ^1.13 ^1.76 ^-560965120.0 ^-447219808.0 ^-696643776.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.24 ^1.13 ^1.89 ^489204768.0 ^-447215648.0 ^-748783680.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^2.53 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000014 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^2.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.49 ^0.0 ^2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.97 ^0.0 ^2.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.4 ^0.0 ^2.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.79 ^0.0 ^1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.1 ^0.0 ^1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.33 ^0.0 ^0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.48 ^0.0 ^0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.53 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.48 ^0.0 ^-0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.33 ^0.0 ^-0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.1 ^0.0 ^-1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.79 ^0.0 ^-1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.4 ^0.0 ^-2.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.97 ^0.0 ^-2.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.49 ^0.0 ^-2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-2.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.49 ^0.0 ^-2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.97 ^0.0 ^-2.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.4 ^0.0 ^-2.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.79 ^0.0 ^-1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.1 ^0.0 ^-1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.33 ^0.0 ^-0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.48 ^0.0 ^-0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.53 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.48 ^0.0 ^0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.33 ^0.0 ^0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.1 ^0.0 ^1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.79 ^0.0 ^1.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.4 ^0.0 ^2.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.97 ^0.0 ^2.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.49 ^0.0 ^2.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.25 ^0.0 ^2.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^2.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.19 ^0.0 ^2.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.59 ^0.0 ^1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.94 ^0.0 ^1.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.22 ^0.0 ^1.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.41 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.5 ^0.0 ^0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.5 ^0.0 ^-0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.41 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.22 ^0.0 ^-1.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.94 ^0.0 ^-1.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.59 ^0.0 ^-1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.19 ^0.0 ^-2.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^-2.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.25 ^0.0 ^-2.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.25 ^0.0 ^-2.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^-2.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.19 ^0.0 ^-2.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.59 ^0.0 ^-1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.94 ^0.0 ^-1.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.22 ^0.0 ^-1.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.41 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.5 ^0.0 ^-0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.5 ^0.0 ^0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.41 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.22 ^0.0 ^1.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.94 ^0.0 ^1.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.59 ^0.0 ^1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.19 ^0.0 ^2.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^2.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.25 ^0.0 ^2.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.73 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_05.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_05.mcfunction new file mode 100644 index 000000000..ef183eceb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_05.mcfunction @@ -0,0 +1,94 @@ +# frame 5 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-2.37 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.63 ^-1.06 ^1.36 ^687273344.0 ^447219488.0 ^-572407232.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.79 ^-1.06 ^-1.13 ^756770368.0 ^447219808.0 ^476752576.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.52 ^-1.06 ^-2.05 ^-219568640.0 ^447215648.0 ^867056960.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^2.11 ^-1.06 ^-0.14 ^-892468736.0 ^447219808.0 ^59108552.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.79 ^-1.06 ^1.97 ^-332003136.0 ^447219488.0 ^-830523008.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-2.11 ^1.06 ^0.14 ^892468736.0 ^-447219808.0 ^-59108552.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.79 ^1.06 ^-1.97 ^332003136.0 ^-447219488.0 ^830523008.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.63 ^1.06 ^-1.36 ^-687273344.0 ^-447219488.0 ^572407232.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.79 ^1.06 ^1.13 ^-756770368.0 ^-447219808.0 ^-476752576.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.52 ^1.06 ^2.05 ^219568640.0 ^-447215648.0 ^-867056960.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^2.37 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^2.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.46 ^0.0 ^2.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.91 ^0.0 ^2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.32 ^0.0 ^1.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.67 ^0.0 ^1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.97 ^0.0 ^1.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.19 ^0.0 ^0.91 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.32 ^0.0 ^0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.37 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.32 ^0.0 ^-0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.19 ^0.0 ^-0.91 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.97 ^0.0 ^-1.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.67 ^0.0 ^-1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.32 ^0.0 ^-1.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.91 ^0.0 ^-2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.46 ^0.0 ^-2.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-2.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.46 ^0.0 ^-2.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.91 ^0.0 ^-2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.32 ^0.0 ^-1.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.67 ^0.0 ^-1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.97 ^0.0 ^-1.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.19 ^0.0 ^-0.91 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.32 ^0.0 ^-0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.37 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.32 ^0.0 ^0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.19 ^0.0 ^0.91 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.97 ^0.0 ^1.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.67 ^0.0 ^1.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.32 ^0.0 ^1.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.91 ^0.0 ^2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.46 ^0.0 ^2.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.23 ^0.0 ^2.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.68 ^0.0 ^2.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.11 ^0.0 ^2.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.5 ^0.0 ^1.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.82 ^0.0 ^1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.08 ^0.0 ^1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.26 ^0.0 ^0.68 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.35 ^0.0 ^0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.35 ^0.0 ^-0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.26 ^0.0 ^-0.68 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.08 ^0.0 ^-1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.82 ^0.0 ^-1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.5 ^0.0 ^-1.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.11 ^0.0 ^-2.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.68 ^0.0 ^-2.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.23 ^0.0 ^-2.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.23 ^0.0 ^-2.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.68 ^0.0 ^-2.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.11 ^0.0 ^-2.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.5 ^0.0 ^-1.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.82 ^0.0 ^-1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.08 ^0.0 ^-1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.26 ^0.0 ^-0.68 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.35 ^0.0 ^-0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.35 ^0.0 ^0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.26 ^0.0 ^0.68 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.08 ^0.0 ^1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.82 ^0.0 ^1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.5 ^0.0 ^1.82 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.11 ^0.0 ^2.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.68 ^0.0 ^2.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.23 ^0.0 ^2.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.725 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_06.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_06.mcfunction new file mode 100644 index 000000000..37b6a0cda --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_06.mcfunction @@ -0,0 +1,94 @@ +# frame 6 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-2.21 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.03 ^-0.99 ^1.69 ^464174528.0 ^447219552.0 ^-764549888.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.92 ^-0.99 ^-0.45 ^870567808.0 ^447219840.0 ^205197808.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.16 ^-0.99 ^-1.97 ^73861216.0 ^447215680.0 ^891371328.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.82 ^-0.99 ^-0.76 ^-824919872.0 ^447219872.0 ^345690144.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.29 ^-0.99 ^1.5 ^-583684800.0 ^447219552.0 ^-677721728.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.82 ^0.99 ^0.76 ^824919872.0 ^-447219872.0 ^-345690144.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.29 ^0.99 ^-1.5 ^583684800.0 ^-447219552.0 ^677721728.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.03 ^0.99 ^-1.69 ^-464174528.0 ^-447219552.0 ^764549888.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.92 ^0.99 ^0.45 ^-870567808.0 ^-447219840.0 ^-205197808.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.16 ^0.99 ^1.97 ^-73861216.0 ^-447215680.0 ^-891371328.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^2.21 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000013 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^2.21 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.43 ^0.0 ^2.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.85 ^0.0 ^2.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.23 ^0.0 ^1.84 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.56 ^0.0 ^1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.84 ^0.0 ^1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.04 ^0.0 ^0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.17 ^0.0 ^0.43 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.21 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.17 ^0.0 ^-0.43 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.04 ^0.0 ^-0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.84 ^0.0 ^-1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.56 ^0.0 ^-1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.23 ^0.0 ^-1.84 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.85 ^0.0 ^-2.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.43 ^0.0 ^-2.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-2.21 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.43 ^0.0 ^-2.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.85 ^0.0 ^-2.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.23 ^0.0 ^-1.84 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.56 ^0.0 ^-1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.84 ^0.0 ^-1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.04 ^0.0 ^-0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.17 ^0.0 ^-0.43 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.21 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.17 ^0.0 ^0.43 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.04 ^0.0 ^0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.84 ^0.0 ^1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.56 ^0.0 ^1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.23 ^0.0 ^1.84 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.85 ^0.0 ^2.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.43 ^0.0 ^2.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.64 ^0.0 ^2.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.04 ^0.0 ^1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.4 ^0.0 ^1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.7 ^0.0 ^1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.94 ^0.0 ^1.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.11 ^0.0 ^0.64 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.19 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.19 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.11 ^0.0 ^-0.64 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.94 ^0.0 ^-1.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.7 ^0.0 ^-1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.4 ^0.0 ^-1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.04 ^0.0 ^-1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.64 ^0.0 ^-2.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^-2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^-2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.64 ^0.0 ^-2.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.04 ^0.0 ^-1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.4 ^0.0 ^-1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.7 ^0.0 ^-1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.94 ^0.0 ^-1.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.11 ^0.0 ^-0.64 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.19 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.19 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.11 ^0.0 ^0.64 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.94 ^0.0 ^1.04 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.7 ^0.0 ^1.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.4 ^0.0 ^1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.04 ^0.0 ^1.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.64 ^0.0 ^2.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^2.19 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.72 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_07.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_07.mcfunction new file mode 100644 index 000000000..54427c902 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_07.mcfunction @@ -0,0 +1,94 @@ +# frame 7 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-2.05 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.39 ^-0.92 ^1.79 ^190775488.0 ^447219520.0 ^-873841792.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.83 ^-0.92 ^0.18 ^890025600.0 ^447219840.0 ^-88593144.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.74 ^-0.92 ^-1.68 ^359286848.0 ^447215616.0 ^819091584.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.37 ^-0.92 ^-1.22 ^-667978048.0 ^447219840.0 ^594810624.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.58 ^-0.92 ^0.93 ^-772114944.0 ^447219520.0 ^-451478848.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.37 ^0.92 ^1.22 ^667978048.0 ^-447219840.0 ^-594810624.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.58 ^0.92 ^-0.93 ^772114944.0 ^-447219520.0 ^451478848.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.39 ^0.92 ^-1.79 ^-190775488.0 ^-447219520.0 ^873841792.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.83 ^0.92 ^-0.18 ^-890025600.0 ^-447219840.0 ^88593144.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.74 ^0.92 ^1.68 ^-359286848.0 ^-447215616.0 ^-819091584.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^2.05 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000012 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^2.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.4 ^0.0 ^2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.14 ^0.0 ^1.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.45 ^0.0 ^1.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.71 ^0.0 ^1.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.9 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.01 ^0.0 ^0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.05 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.01 ^0.0 ^-0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.9 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.71 ^0.0 ^-1.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.45 ^0.0 ^-1.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.14 ^0.0 ^-1.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^-1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.4 ^0.0 ^-2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-2.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.4 ^0.0 ^-2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^-1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.14 ^0.0 ^-1.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.45 ^0.0 ^-1.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.71 ^0.0 ^-1.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.9 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.01 ^0.0 ^-0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.05 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.01 ^0.0 ^0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.9 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.71 ^0.0 ^1.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.45 ^0.0 ^1.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.14 ^0.0 ^1.71 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^1.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.4 ^0.0 ^2.01 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.2 ^0.0 ^2.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.59 ^0.0 ^1.95 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.96 ^0.0 ^1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.3 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^1.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.8 ^0.0 ^0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.95 ^0.0 ^0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.03 ^0.0 ^0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^2.03 ^0.0 ^-0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.95 ^0.0 ^-0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.8 ^0.0 ^-0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^-1.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.3 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.96 ^0.0 ^-1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.59 ^0.0 ^-1.95 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.2 ^0.0 ^-2.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.2 ^0.0 ^-2.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.59 ^0.0 ^-1.95 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.96 ^0.0 ^-1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.3 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^-1.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.8 ^0.0 ^-0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.95 ^0.0 ^-0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.03 ^0.0 ^-0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-2.03 ^0.0 ^0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.95 ^0.0 ^0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.8 ^0.0 ^0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^1.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.3 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.96 ^0.0 ^1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.59 ^0.0 ^1.95 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.2 ^0.0 ^2.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.715 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_08.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_08.mcfunction new file mode 100644 index 000000000..2729caaf8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_08.mcfunction @@ -0,0 +1,94 @@ +# frame 8 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-1.89 ^0.0 ^-0.0 ^999999936.0 ^0.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.2 ^-0.85 ^1.68 ^-103297416.0 ^447219552.0 ^-888439296.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.54 ^-0.85 ^0.71 ^813035456.0 ^447219840.0 ^-372783968.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.15 ^-0.85 ^-1.25 ^605778496.0 ^447215648.0 ^658050624.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.83 ^-0.85 ^-1.48 ^-438650336.0 ^447219840.0 ^779474368.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.66 ^-0.85 ^0.33 ^-876874624.0 ^447219456.0 ^-176310944.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.83 ^0.85 ^1.48 ^438650336.0 ^-447219840.0 ^-779474368.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.66 ^0.85 ^-0.33 ^876874624.0 ^-447219456.0 ^176310944.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.2 ^0.85 ^-1.68 ^103297416.0 ^-447219552.0 ^888439296.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.54 ^0.85 ^-0.71 ^-813035456.0 ^-447219840.0 ^372783968.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.15 ^0.85 ^1.25 ^-605778496.0 ^-447215648.0 ^-658050624.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^1.89 ^0.0 ^-0.0 ^-999999936.0 ^0.0 0.00000000011 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^1.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.37 ^0.0 ^1.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^1.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.05 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.34 ^0.0 ^1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.75 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.86 ^0.0 ^0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.89 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.86 ^0.0 ^-0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.75 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^-1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.34 ^0.0 ^-1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.05 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^-1.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.37 ^0.0 ^-1.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-1.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.37 ^0.0 ^-1.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^-1.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.05 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.34 ^0.0 ^-1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^-1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.75 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.86 ^0.0 ^-0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.89 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.86 ^0.0 ^0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.75 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.34 ^0.0 ^1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.05 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^1.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.37 ^0.0 ^1.86 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^1.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.55 ^0.0 ^1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.89 ^0.0 ^1.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.2 ^0.0 ^1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.46 ^0.0 ^1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.66 ^0.0 ^0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.8 ^0.0 ^0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.88 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.88 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.8 ^0.0 ^-0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.66 ^0.0 ^-0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.46 ^0.0 ^-1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.2 ^0.0 ^-1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.89 ^0.0 ^-1.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.55 ^0.0 ^-1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^-1.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^-1.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.55 ^0.0 ^-1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.89 ^0.0 ^-1.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.2 ^0.0 ^-1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.46 ^0.0 ^-1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.66 ^0.0 ^-0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.8 ^0.0 ^-0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.88 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.88 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.8 ^0.0 ^0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.66 ^0.0 ^0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.46 ^0.0 ^1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.2 ^0.0 ^1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.89 ^0.0 ^1.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.55 ^0.0 ^1.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^1.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.71 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_09.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_09.mcfunction new file mode 100644 index 000000000..646429013 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_09.mcfunction @@ -0,0 +1,94 @@ +# frame 9 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-1.74 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.67 ^-0.78 ^1.4 ^-386176064.0 ^447219584.0 ^-806760640.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.13 ^-0.78 ^1.07 ^647940288.0 ^447219872.0 ^-616577536.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.37 ^-0.78 ^-0.74 ^786624256.0 ^447215680.0 ^425699840.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.28 ^-0.78 ^-1.53 ^-161788336.0 ^447219872.0 ^879669760.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.54 ^-0.78 ^-0.2 ^-886611200.0 ^447219520.0 ^117962584.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.28 ^0.78 ^1.53 ^161788336.0 ^-447219872.0 ^-879669760.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.54 ^0.78 ^0.2 ^886611200.0 ^-447219520.0 ^-117962584.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.67 ^0.78 ^-1.4 ^386176064.0 ^-447219584.0 ^806760640.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.13 ^0.78 ^-1.07 ^-647940288.0 ^-447219872.0 ^616577536.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.37 ^0.78 ^0.74 ^-786624256.0 ^-447215680.0 ^-425699840.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^1.74 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000010 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^1.74 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.34 ^0.0 ^1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.66 ^0.0 ^1.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.96 ^0.0 ^1.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.23 ^0.0 ^1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.44 ^0.0 ^0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.6 ^0.0 ^0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.7 ^0.0 ^0.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.74 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.7 ^0.0 ^-0.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.6 ^0.0 ^-0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.44 ^0.0 ^-0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.23 ^0.0 ^-1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.96 ^0.0 ^-1.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.66 ^0.0 ^-1.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.34 ^0.0 ^-1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-1.74 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.34 ^0.0 ^-1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.66 ^0.0 ^-1.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.96 ^0.0 ^-1.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.23 ^0.0 ^-1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.44 ^0.0 ^-0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.6 ^0.0 ^-0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.7 ^0.0 ^-0.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.74 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.7 ^0.0 ^0.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.6 ^0.0 ^0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.44 ^0.0 ^0.96 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.23 ^0.0 ^1.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.96 ^0.0 ^1.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.66 ^0.0 ^1.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.34 ^0.0 ^1.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.17 ^0.0 ^1.72 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.5 ^0.0 ^1.65 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.81 ^0.0 ^1.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.1 ^0.0 ^1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.34 ^0.0 ^1.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.52 ^0.0 ^0.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.65 ^0.0 ^0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.72 ^0.0 ^0.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.72 ^0.0 ^-0.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.65 ^0.0 ^-0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.52 ^0.0 ^-0.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.34 ^0.0 ^-1.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.1 ^0.0 ^-1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.81 ^0.0 ^-1.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.5 ^0.0 ^-1.65 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.17 ^0.0 ^-1.72 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.17 ^0.0 ^-1.72 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.5 ^0.0 ^-1.65 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.81 ^0.0 ^-1.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.1 ^0.0 ^-1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.34 ^0.0 ^-1.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.52 ^0.0 ^-0.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.65 ^0.0 ^-0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.72 ^0.0 ^-0.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.72 ^0.0 ^0.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.65 ^0.0 ^0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.52 ^0.0 ^0.81 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.34 ^0.0 ^1.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.1 ^0.0 ^1.34 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.81 ^0.0 ^1.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.5 ^0.0 ^1.65 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.17 ^0.0 ^1.72 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.705 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_10.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_10.mcfunction new file mode 100644 index 000000000..5a081e70b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_10.mcfunction @@ -0,0 +1,94 @@ +# frame 10 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-1.58 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.99 ^-0.71 ^1.01 ^-627206656.0 ^447219456.0 ^-637656960.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.65 ^-0.71 ^1.25 ^412630656.0 ^447219776.0 ^-793555584.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.39 ^-0.71 ^-0.23 ^882227328.0 ^447215616.0 ^147217728.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.21 ^-0.71 ^-1.4 ^132606136.0 ^447219808.0 ^884539456.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.26 ^-0.71 ^-0.63 ^-800269824.0 ^447219456.0 ^399453216.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.21 ^0.71 ^1.4 ^-132606136.0 ^-447219808.0 ^-884539456.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.26 ^0.71 ^0.63 ^800269824.0 ^-447219456.0 ^-399453216.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.99 ^0.71 ^-1.01 ^627206656.0 ^-447219456.0 ^637656960.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.65 ^0.71 ^-1.25 ^-412630656.0 ^-447219776.0 ^793555584.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.39 ^0.71 ^0.23 ^-882227328.0 ^-447215616.0 ^-147217728.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^1.58 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000009 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.31 ^0.0 ^1.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.6 ^0.0 ^1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.88 ^0.0 ^1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.12 ^0.0 ^1.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.31 ^0.0 ^0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.46 ^0.0 ^0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.55 ^0.0 ^0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.58 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.55 ^0.0 ^-0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.46 ^0.0 ^-0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.31 ^0.0 ^-0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.12 ^0.0 ^-1.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.88 ^0.0 ^-1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.6 ^0.0 ^-1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.31 ^0.0 ^-1.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-1.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.31 ^0.0 ^-1.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.6 ^0.0 ^-1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.88 ^0.0 ^-1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.12 ^0.0 ^-1.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.31 ^0.0 ^-0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.46 ^0.0 ^-0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.55 ^0.0 ^-0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.58 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.55 ^0.0 ^0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.46 ^0.0 ^0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.31 ^0.0 ^0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.12 ^0.0 ^1.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.88 ^0.0 ^1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.6 ^0.0 ^1.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.31 ^0.0 ^1.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.46 ^0.0 ^1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.74 ^0.0 ^1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.0 ^0.0 ^1.21 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.21 ^0.0 ^1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.39 ^0.0 ^0.74 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.5 ^0.0 ^0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.56 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.56 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.5 ^0.0 ^-0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.39 ^0.0 ^-0.74 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.21 ^0.0 ^-1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.0 ^0.0 ^-1.21 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.74 ^0.0 ^-1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.46 ^0.0 ^-1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^-1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^-1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.46 ^0.0 ^-1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.74 ^0.0 ^-1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.0 ^0.0 ^-1.21 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.21 ^0.0 ^-1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.39 ^0.0 ^-0.74 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.5 ^0.0 ^-0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.56 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.56 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.5 ^0.0 ^0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.39 ^0.0 ^0.74 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.21 ^0.0 ^1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.0 ^0.0 ^1.21 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.74 ^0.0 ^1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.46 ^0.0 ^1.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^1.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.7 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_11.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_11.mcfunction new file mode 100644 index 000000000..18355822c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_11.mcfunction @@ -0,0 +1,94 @@ +# frame 11 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-1.42 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.14 ^-0.64 ^0.57 ^-800269888.0 ^447219552.0 ^-399453088.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.19 ^-0.64 ^1.26 ^132605944.0 ^447219840.0 ^-884539456.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.25 ^-0.64 ^0.21 ^882227328.0 ^447215648.0 ^-147217888.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.59 ^-0.64 ^-1.13 ^412630816.0 ^447219904.0 ^793555520.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.89 ^-0.64 ^-0.91 ^-627206656.0 ^447219552.0 ^637656960.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.59 ^0.64 ^1.13 ^-412630816.0 ^-447219904.0 ^-793555520.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.89 ^0.64 ^0.91 ^627206656.0 ^-447219552.0 ^-637656960.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.14 ^0.64 ^-0.57 ^800269888.0 ^-447219552.0 ^399453088.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.19 ^0.64 ^-1.26 ^-132605944.0 ^-447219840.0 ^884539456.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.25 ^0.64 ^-0.21 ^-882227328.0 ^-447215648.0 ^147217888.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^1.42 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000008 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^1.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.28 ^0.0 ^1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.54 ^0.0 ^1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^1.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.0 ^0.0 ^1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.18 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.31 ^0.0 ^0.54 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.39 ^0.0 ^0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.42 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.39 ^0.0 ^-0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.31 ^0.0 ^-0.54 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.18 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.0 ^0.0 ^-1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^-1.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.54 ^0.0 ^-1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.28 ^0.0 ^-1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-1.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.28 ^0.0 ^-1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.54 ^0.0 ^-1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^-1.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.0 ^0.0 ^-1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.18 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.31 ^0.0 ^-0.54 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.39 ^0.0 ^-0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.42 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.39 ^0.0 ^0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.31 ^0.0 ^0.54 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.18 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.0 ^0.0 ^1.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^1.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.54 ^0.0 ^1.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.28 ^0.0 ^1.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.14 ^0.0 ^1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.41 ^0.0 ^1.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.67 ^0.0 ^1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.9 ^0.0 ^1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.09 ^0.0 ^0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.25 ^0.0 ^0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.35 ^0.0 ^0.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.41 ^0.0 ^0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.41 ^0.0 ^-0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.35 ^0.0 ^-0.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.25 ^0.0 ^-0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.09 ^0.0 ^-0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.9 ^0.0 ^-1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.67 ^0.0 ^-1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.41 ^0.0 ^-1.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.14 ^0.0 ^-1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.14 ^0.0 ^-1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.41 ^0.0 ^-1.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.67 ^0.0 ^-1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.9 ^0.0 ^-1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.09 ^0.0 ^-0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.25 ^0.0 ^-0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.35 ^0.0 ^-0.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.41 ^0.0 ^-0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.41 ^0.0 ^0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.35 ^0.0 ^0.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.25 ^0.0 ^0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.09 ^0.0 ^0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.9 ^0.0 ^1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.67 ^0.0 ^1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.41 ^0.0 ^1.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.14 ^0.0 ^1.41 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.695 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_12.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_12.mcfunction new file mode 100644 index 000000000..d9b596d88 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_12.mcfunction @@ -0,0 +1,94 @@ +# frame 12 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-1.26 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^1.12 ^-0.56 ^0.15 ^-886611264.0 ^447219584.0 ^-117962392.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.2 ^-0.56 ^1.11 ^-161788496.0 ^447219840.0 ^-879669696.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.99 ^-0.56 ^0.54 ^786624256.0 ^447215712.0 ^-425700000.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.82 ^-0.56 ^-0.78 ^647940352.0 ^447219840.0 ^616577408.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.49 ^-0.56 ^-1.02 ^-386175936.0 ^447219584.0 ^806760704.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.82 ^0.56 ^0.78 ^-647940352.0 ^-447219840.0 ^-616577408.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.49 ^0.56 ^1.02 ^386175936.0 ^-447219584.0 ^-806760704.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-1.12 ^0.56 ^-0.15 ^886611264.0 ^-447219584.0 ^117962392.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.2 ^0.56 ^-1.11 ^161788496.0 ^-447219840.0 ^879669696.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.99 ^0.56 ^-0.54 ^-786624256.0 ^-447215712.0 ^425700000.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^1.26 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000007 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^1.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.25 ^0.0 ^1.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.48 ^0.0 ^1.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.7 ^0.0 ^1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.89 ^0.0 ^0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.05 ^0.0 ^0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.17 ^0.0 ^0.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.24 ^0.0 ^0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.26 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.24 ^0.0 ^-0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.17 ^0.0 ^-0.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.05 ^0.0 ^-0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.89 ^0.0 ^-0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.7 ^0.0 ^-1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.48 ^0.0 ^-1.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.25 ^0.0 ^-1.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-1.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.25 ^0.0 ^-1.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.48 ^0.0 ^-1.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.7 ^0.0 ^-1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.89 ^0.0 ^-0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.05 ^0.0 ^-0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.17 ^0.0 ^-0.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.24 ^0.0 ^-0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.26 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.24 ^0.0 ^0.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.17 ^0.0 ^0.48 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.05 ^0.0 ^0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.89 ^0.0 ^0.89 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.7 ^0.0 ^1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.48 ^0.0 ^1.17 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.25 ^0.0 ^1.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.36 ^0.0 ^1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.59 ^0.0 ^1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.8 ^0.0 ^0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.97 ^0.0 ^0.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.11 ^0.0 ^0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.2 ^0.0 ^0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.25 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.25 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.2 ^0.0 ^-0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.11 ^0.0 ^-0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.97 ^0.0 ^-0.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.8 ^0.0 ^-0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.59 ^0.0 ^-1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.36 ^0.0 ^-1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^-1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^-1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.36 ^0.0 ^-1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.59 ^0.0 ^-1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.8 ^0.0 ^-0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.97 ^0.0 ^-0.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.11 ^0.0 ^-0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.2 ^0.0 ^-0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.25 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.25 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.2 ^0.0 ^0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.11 ^0.0 ^0.59 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.97 ^0.0 ^0.8 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.8 ^0.0 ^0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.59 ^0.0 ^1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.36 ^0.0 ^1.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^1.25 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.69 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_13.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_13.mcfunction new file mode 100644 index 000000000..7e5b76a9c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_13.mcfunction @@ -0,0 +1,94 @@ +# frame 13 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-1.11 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.97 ^-0.49 ^-0.19 ^-876874560.0 ^447219456.0 ^176311168.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.48 ^-0.49 ^0.86 ^-438650496.0 ^447219808.0 ^-779474240.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.67 ^-0.49 ^0.73 ^605778368.0 ^447215616.0 ^-658050688.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.9 ^-0.49 ^-0.41 ^813035456.0 ^447219808.0 ^372783744.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.11 ^-0.49 ^-0.98 ^-103297256.0 ^447219520.0 ^888439296.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.9 ^0.49 ^0.41 ^-813035456.0 ^-447219808.0 ^-372783744.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.11 ^0.49 ^0.98 ^103297256.0 ^-447219520.0 ^-888439296.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.97 ^0.49 ^0.19 ^876874560.0 ^-447219456.0 ^-176311168.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.48 ^0.49 ^-0.86 ^438650496.0 ^-447219808.0 ^779474240.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.67 ^0.49 ^-0.73 ^-605778368.0 ^-447215616.0 ^658050688.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^1.11 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000006 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^1.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.42 ^0.0 ^1.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.61 ^0.0 ^0.92 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.78 ^0.0 ^0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.92 ^0.0 ^0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.02 ^0.0 ^0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.08 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.11 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.08 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.02 ^0.0 ^-0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.92 ^0.0 ^-0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.78 ^0.0 ^-0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.61 ^0.0 ^-0.92 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.42 ^0.0 ^-1.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^-1.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-1.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^-1.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.42 ^0.0 ^-1.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.61 ^0.0 ^-0.92 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.78 ^0.0 ^-0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.92 ^0.0 ^-0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.02 ^0.0 ^-0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.08 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.11 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.08 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.02 ^0.0 ^0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.92 ^0.0 ^0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.78 ^0.0 ^0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.61 ^0.0 ^0.92 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.42 ^0.0 ^1.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^1.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.11 ^0.0 ^1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.32 ^0.0 ^1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.52 ^0.0 ^0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.7 ^0.0 ^0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.85 ^0.0 ^0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.97 ^0.0 ^0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.05 ^0.0 ^0.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.09 ^0.0 ^0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.09 ^0.0 ^-0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^1.05 ^0.0 ^-0.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.97 ^0.0 ^-0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.85 ^0.0 ^-0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.7 ^0.0 ^-0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.52 ^0.0 ^-0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.32 ^0.0 ^-1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.11 ^0.0 ^-1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.11 ^0.0 ^-1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.32 ^0.0 ^-1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.52 ^0.0 ^-0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.7 ^0.0 ^-0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.85 ^0.0 ^-0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.97 ^0.0 ^-0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.05 ^0.0 ^-0.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.09 ^0.0 ^-0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.09 ^0.0 ^0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-1.05 ^0.0 ^0.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.97 ^0.0 ^0.52 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.85 ^0.0 ^0.7 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.7 ^0.0 ^0.85 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.52 ^0.0 ^0.97 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.32 ^0.0 ^1.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.11 ^0.0 ^1.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.685 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_14.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_14.mcfunction new file mode 100644 index 000000000..1672532a5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_14.mcfunction @@ -0,0 +1,94 @@ +# frame 14 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-0.95 ^0.0 ^-0.0 ^999999936.0 ^0.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.73 ^-0.42 ^-0.43 ^-772114944.0 ^447219584.0 ^451479008.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.63 ^-0.42 ^0.56 ^-667978176.0 ^447219904.0 ^-594810560.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.34 ^-0.42 ^0.78 ^359286752.0 ^447215648.0 ^-819091648.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.84 ^-0.42 ^-0.08 ^890025664.0 ^447219904.0 ^88593032.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.18 ^-0.42 ^-0.83 ^190775632.0 ^447219584.0 ^873841792.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.84 ^0.42 ^0.08 ^-890025664.0 ^-447219904.0 ^-88593032.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.18 ^0.42 ^0.83 ^-190775632.0 ^-447219584.0 ^-873841792.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.73 ^0.42 ^0.43 ^772114944.0 ^-447219584.0 ^-451479008.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.63 ^0.42 ^-0.56 ^667978176.0 ^-447219904.0 ^594810560.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.34 ^0.42 ^-0.78 ^-359286752.0 ^-447215648.0 ^819091648.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.95 ^0.0 ^-0.0 ^-999999936.0 ^0.0 0.00000000005 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.95 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^0.93 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.36 ^0.0 ^0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.53 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.67 ^0.0 ^0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.88 ^0.0 ^0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.93 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.95 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.93 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.88 ^0.0 ^-0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^-0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.67 ^0.0 ^-0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.53 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.36 ^0.0 ^-0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^-0.93 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-0.95 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^-0.93 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.36 ^0.0 ^-0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.53 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.67 ^0.0 ^-0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^-0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.88 ^0.0 ^-0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.93 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.95 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.93 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.88 ^0.0 ^0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.67 ^0.0 ^0.67 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.53 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.36 ^0.0 ^0.88 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^0.93 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^0.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.27 ^0.0 ^0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.44 ^0.0 ^0.83 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.6 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.83 ^0.0 ^0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.9 ^0.0 ^0.27 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.94 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.94 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.9 ^0.0 ^-0.27 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.83 ^0.0 ^-0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^-0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.6 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.44 ^0.0 ^-0.83 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.27 ^0.0 ^-0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^-0.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^-0.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.27 ^0.0 ^-0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.44 ^0.0 ^-0.83 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.6 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^-0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.83 ^0.0 ^-0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.9 ^0.0 ^-0.27 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.94 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.94 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.9 ^0.0 ^0.27 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.83 ^0.0 ^0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.6 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.44 ^0.0 ^0.83 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.27 ^0.0 ^0.9 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^0.94 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.6799999999999999 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_15.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_15.mcfunction new file mode 100644 index 000000000..f38fe3358 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_15.mcfunction @@ -0,0 +1,94 @@ +# frame 15 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-0.79 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.46 ^-0.35 ^-0.54 ^-583684416.0 ^447219520.0 ^677722048.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.65 ^-0.35 ^0.27 ^-824920064.0 ^447219808.0 ^-345689696.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.06 ^-0.35 ^0.7 ^73860744.0 ^447215616.0 ^-891371264.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.69 ^-0.35 ^0.16 ^870567616.0 ^447219808.0 ^-205198304.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.37 ^-0.35 ^-0.6 ^464174976.0 ^447219520.0 ^764549760.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.69 ^0.35 ^-0.16 ^-870567616.0 ^-447219808.0 ^205198304.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.37 ^0.35 ^0.6 ^-464174976.0 ^-447219520.0 ^-764549760.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.46 ^0.35 ^0.54 ^583684416.0 ^-447219520.0 ^-677722048.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.65 ^0.35 ^-0.27 ^824920064.0 ^-447219808.0 ^345689696.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.06 ^0.35 ^-0.7 ^-73860744.0 ^-447215616.0 ^891371264.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.79 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^0.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.44 ^0.0 ^0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.56 ^0.0 ^0.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.66 ^0.0 ^0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.77 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.79 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.77 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.73 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.66 ^0.0 ^-0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.56 ^0.0 ^-0.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.44 ^0.0 ^-0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^-0.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-0.79 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^-0.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^-0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.44 ^0.0 ^-0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.56 ^0.0 ^-0.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.66 ^0.0 ^-0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.77 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.79 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.77 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.73 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.66 ^0.0 ^0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.56 ^0.0 ^0.56 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.44 ^0.0 ^0.66 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^0.73 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^0.77 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.08 ^0.0 ^0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.23 ^0.0 ^0.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.37 ^0.0 ^0.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.5 ^0.0 ^0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.61 ^0.0 ^0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.69 ^0.0 ^0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.75 ^0.0 ^0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.78 ^0.0 ^0.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.78 ^0.0 ^-0.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.75 ^0.0 ^-0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.69 ^0.0 ^-0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.61 ^0.0 ^-0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.5 ^0.0 ^-0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.37 ^0.0 ^-0.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.23 ^0.0 ^-0.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.08 ^0.0 ^-0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.08 ^0.0 ^-0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.23 ^0.0 ^-0.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.37 ^0.0 ^-0.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.5 ^0.0 ^-0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.61 ^0.0 ^-0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.69 ^0.0 ^-0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.75 ^0.0 ^-0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.78 ^0.0 ^-0.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.78 ^0.0 ^0.08 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.75 ^0.0 ^0.23 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.69 ^0.0 ^0.37 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.61 ^0.0 ^0.5 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.5 ^0.0 ^0.61 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.37 ^0.0 ^0.69 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.23 ^0.0 ^0.75 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.08 ^0.0 ^0.78 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.675 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_16.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_16.mcfunction new file mode 100644 index 000000000..de076c220 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_16.mcfunction @@ -0,0 +1,94 @@ +# frame 16 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-0.63 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.21 ^-0.28 ^-0.52 ^-332003040.0 ^447219584.0 ^830523200.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.56 ^-0.28 ^0.04 ^-892468736.0 ^447219840.0 ^-59108360.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.14 ^-0.28 ^0.55 ^-219568816.0 ^447215680.0 ^-867056896.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.48 ^-0.28 ^0.3 ^756770240.0 ^447219840.0 ^-476752832.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.43 ^-0.28 ^-0.36 ^687273472.0 ^447219584.0 ^572407104.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.48 ^0.28 ^-0.3 ^-756770240.0 ^-447219840.0 ^476752832.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.43 ^0.28 ^0.36 ^-687273472.0 ^-447219584.0 ^-572407104.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.21 ^0.28 ^0.52 ^332003040.0 ^-447219584.0 ^-830523200.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.56 ^0.28 ^-0.04 ^892468736.0 ^-447219840.0 ^59108360.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.14 ^0.28 ^-0.55 ^219568816.0 ^-447215680.0 ^867056896.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.63 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000004 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^0.62 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.24 ^0.0 ^0.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.35 ^0.0 ^0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.45 ^0.0 ^0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.53 ^0.0 ^0.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.58 ^0.0 ^0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.62 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.63 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.62 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.58 ^0.0 ^-0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.53 ^0.0 ^-0.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.45 ^0.0 ^-0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.35 ^0.0 ^-0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.24 ^0.0 ^-0.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^-0.62 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-0.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^-0.62 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.24 ^0.0 ^-0.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.35 ^0.0 ^-0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.45 ^0.0 ^-0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.53 ^0.0 ^-0.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.58 ^0.0 ^-0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.62 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.63 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.62 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.58 ^0.0 ^0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.53 ^0.0 ^0.35 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.45 ^0.0 ^0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.35 ^0.0 ^0.53 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.24 ^0.0 ^0.58 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^0.62 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.06 ^0.0 ^0.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.4 ^0.0 ^0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.49 ^0.0 ^0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.55 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.6 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.63 ^0.0 ^0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.63 ^0.0 ^-0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.6 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.55 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.49 ^0.0 ^-0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.4 ^0.0 ^-0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^-0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^-0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.06 ^0.0 ^-0.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.06 ^0.0 ^-0.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^-0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^-0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.4 ^0.0 ^-0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.49 ^0.0 ^-0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.55 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.6 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.63 ^0.0 ^-0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.63 ^0.0 ^0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.6 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.55 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.49 ^0.0 ^0.4 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.4 ^0.0 ^0.49 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^0.55 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^0.6 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.06 ^0.0 ^0.63 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.67 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_17.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_17.mcfunction new file mode 100644 index 000000000..a81842ca7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_17.mcfunction @@ -0,0 +1,94 @@ +# frame 17 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-0.47 ^0.0 ^-0.0 ^999999936.0 ^0.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.02 ^-0.21 ^-0.42 ^-44343876.0 ^447219552.0 ^893324288.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.41 ^-0.21 ^-0.11 ^-863304896.0 ^447219840.0 ^233878240.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.23 ^-0.21 ^0.35 ^-489204704.0 ^447215648.0 ^-748783616.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.27 ^-0.21 ^0.33 ^560965184.0 ^447219904.0 ^-696643840.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.4 ^-0.21 ^-0.15 ^835895296.0 ^447219520.0 ^318235296.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.27 ^0.21 ^-0.33 ^-560965184.0 ^-447219904.0 ^696643840.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.4 ^0.21 ^0.15 ^-835895296.0 ^-447219520.0 ^-318235296.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.02 ^0.21 ^0.42 ^44343876.0 ^-447219552.0 ^-893324288.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.41 ^0.21 ^0.11 ^863304896.0 ^-447219840.0 ^-233878240.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.23 ^0.21 ^-0.35 ^489204704.0 ^-447215648.0 ^748783616.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.47 ^0.0 ^-0.0 ^-999999936.0 ^0.0 0.00000000003 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.47 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.26 ^0.0 ^0.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.33 ^0.0 ^0.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.39 ^0.0 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.44 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.46 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.47 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.46 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.44 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.39 ^0.0 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.33 ^0.0 ^-0.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.26 ^0.0 ^-0.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^-0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^-0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-0.47 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^-0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^-0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.26 ^0.0 ^-0.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.33 ^0.0 ^-0.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.39 ^0.0 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.44 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.46 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.47 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.46 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.44 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.39 ^0.0 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.33 ^0.0 ^0.33 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.26 ^0.0 ^0.39 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^0.44 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^0.46 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.05 ^0.0 ^0.47 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.14 ^0.0 ^0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.36 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.42 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.45 ^0.0 ^0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.47 ^0.0 ^0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.47 ^0.0 ^-0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.45 ^0.0 ^-0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.42 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.36 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^-0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^-0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.14 ^0.0 ^-0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.05 ^0.0 ^-0.47 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.05 ^0.0 ^-0.47 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.14 ^0.0 ^-0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^-0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^-0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.36 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.42 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.45 ^0.0 ^-0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.47 ^0.0 ^-0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.47 ^0.0 ^0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.45 ^0.0 ^0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.42 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.36 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^0.36 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^0.42 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.14 ^0.0 ^0.45 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.05 ^0.0 ^0.47 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.665 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_18.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_18.mcfunction new file mode 100644 index 000000000..ff63f3896 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_18.mcfunction @@ -0,0 +1,94 @@ +# frame 18 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-0.32 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.08 ^-0.14 ^-0.27 ^248120896.0 ^447219584.0 ^859319936.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.23 ^-0.14 ^-0.16 ^-740588352.0 ^447219840.0 ^501520864.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.22 ^-0.14 ^0.17 ^-705828032.0 ^447215680.0 ^-549367808.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.1 ^-0.14 ^0.27 ^304370432.0 ^447219840.0 ^-841042816.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.28 ^-0.14 ^-0.01 ^893935168.0 ^447219584.0 ^29577490.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.1 ^0.14 ^-0.27 ^-304370432.0 ^-447219840.0 ^841042816.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.28 ^0.14 ^0.01 ^-893935168.0 ^-447219584.0 ^-29577490.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.08 ^0.14 ^0.27 ^-248120896.0 ^-447219584.0 ^-859319936.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.23 ^0.14 ^0.16 ^740588352.0 ^-447219840.0 ^-501520864.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.22 ^0.14 ^-0.17 ^705828032.0 ^-447215680.0 ^549367808.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.32 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000002 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.06 ^0.0 ^0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.26 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.29 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.31 ^0.0 ^0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.32 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.31 ^0.0 ^-0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.29 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.26 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.22 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.18 ^0.0 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^-0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.06 ^0.0 ^-0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-0.32 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.06 ^0.0 ^-0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^-0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^-0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.26 ^0.0 ^-0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.29 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.31 ^0.0 ^-0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.32 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.31 ^0.0 ^0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.29 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.26 ^0.0 ^0.18 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.22 ^0.0 ^0.22 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.18 ^0.0 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^0.29 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.06 ^0.0 ^0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.03 ^0.0 ^0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.2 ^0.0 ^0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.24 ^0.0 ^0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.28 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.31 ^0.0 ^0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.31 ^0.0 ^-0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.3 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.28 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.24 ^0.0 ^-0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.2 ^0.0 ^-0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^-0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.03 ^0.0 ^-0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.03 ^0.0 ^-0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^-0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^-0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.2 ^0.0 ^-0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.24 ^0.0 ^-0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.28 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.31 ^0.0 ^-0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.31 ^0.0 ^0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.3 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.28 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.24 ^0.0 ^0.2 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.2 ^0.0 ^0.24 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^0.28 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^0.3 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.03 ^0.0 ^0.31 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.66 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_19.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_19.mcfunction new file mode 100644 index 000000000..e2ab4122f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_19.mcfunction @@ -0,0 +1,94 @@ +# frame 19 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^-0.16 ^0.0 ^-0.0 ^1000000000.0 ^0.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.08 ^-0.07 ^-0.12 ^513697504.0 ^447219520.0 ^732195008.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.08 ^-0.07 ^-0.11 ^-537617920.0 ^447219840.0 ^714815616.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.13 ^-0.07 ^0.05 ^-845963648.0 ^447215648.0 ^-290419776.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^-0.07 ^0.14 ^14792877.0 ^447219808.0 ^-894301696.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.14 ^-0.07 ^0.04 ^855103104.0 ^447219584.0 ^-262285120.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.0 ^0.07 ^-0.14 ^-14792877.0 ^-447219808.0 ^894301696.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.14 ^0.07 ^-0.04 ^-855103104.0 ^-447219584.0 ^262285120.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^0.08 ^0.07 ^0.12 ^-513697504.0 ^-447219520.0 ^-732195008.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.08 ^0.07 ^0.11 ^537617920.0 ^-447219840.0 ^-714815616.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.13 ^0.07 ^-0.05 ^845963648.0 ^-447215648.0 ^290419776.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.16 ^0.0 ^-0.0 ^-1000000000.0 ^0.0 0.00000000001 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.03 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.06 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^0.13 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.11 ^0.0 ^0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.13 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.16 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^-0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^-0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.13 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.11 ^0.0 ^-0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.09 ^0.0 ^-0.13 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.06 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.03 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.03 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.06 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^-0.13 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.11 ^0.0 ^-0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.13 ^0.0 ^-0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^-0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^-0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.16 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^0.03 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^0.06 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.13 ^0.0 ^0.09 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.11 ^0.0 ^0.11 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.09 ^0.0 ^0.13 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.06 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.03 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.02 ^0.0 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.05 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.07 ^0.0 ^0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.1 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^0.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.14 ^0.0 ^0.07 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.16 ^0.0 ^0.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.16 ^0.0 ^-0.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.15 ^0.0 ^-0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.14 ^0.0 ^-0.07 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.12 ^0.0 ^-0.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.1 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.07 ^0.0 ^-0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.05 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^0.02 ^0.0 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.02 ^0.0 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.05 ^0.0 ^-0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.07 ^0.0 ^-0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.1 ^0.0 ^-0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^-0.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.14 ^0.0 ^-0.07 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^-0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.16 ^0.0 ^-0.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.16 ^0.0 ^0.02 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.15 ^0.0 ^0.05 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.14 ^0.0 ^0.07 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.12 ^0.0 ^0.1 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.1 ^0.0 ^0.12 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.07 ^0.0 ^0.14 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.05 ^0.0 ^0.15 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.02 ^0.0 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.655 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_20.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_20.mcfunction new file mode 100644 index 000000000..020e5858c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_bomb/doom_bomb_20.mcfunction @@ -0,0 +1,94 @@ +# frame 20 / 20 +# ICO球 +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +particle dragon_breath ^-0.0 ^0.0 ^0.0 ^-0.0 ^0.0 ^0.0 0.00000000000 0 force @a[distance=..16,tag=ShowParticles] +# ICO球.001 +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^-0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.27 ^-0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.08 ^-0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.22 ^-0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^-0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^-0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^0.22 ^0.13 ^0.16 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.08 ^0.13 ^0.26 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.27 ^0.13 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[2,0,100000000],scale:1.5} ^-0.0 ^0.3 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 円 +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +particle dust{color:[0.5,0.,100000000.],scale:0.9} ^-0.0 ^0.0 ^0.0 0 0 0 1 0 force @a[distance=..16,tag=ShowParticles] +# 平面 +playsound minecraft:block.conduit.deactivate hostile @a[distance=..32] ~ ~ ~ 1.5 0.65 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_01.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_01.mcfunction new file mode 100644 index 000000000..8fb57a0d2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_01.mcfunction @@ -0,0 +1,43 @@ +# frame 1 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.69 ^0.29 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.62 ^0.42 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.42 ^0.62 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.29 ^0.69 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.15 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.0 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.15 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.29 ^0.69 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.42 ^0.62 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.62 ^0.42 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.69 ^0.29 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.69 ^-0.29 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.62 ^-0.42 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.42 ^-0.62 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.29 ^-0.69 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.15 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.0 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.15 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.29 ^-0.69 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.42 ^-0.62 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.62 ^-0.42 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.69 ^-0.29 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-3.54 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.0 ^-3.54 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.0 ^3.54 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^3.54 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.53 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.04 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_02.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_02.mcfunction new file mode 100644 index 000000000..0a00c1b6d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_02.mcfunction @@ -0,0 +1,43 @@ +# frame 2 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.6 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.5 ^0.56 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.38 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.25 ^0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.1 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.04 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.19 ^0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.33 ^0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.45 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.56 ^0.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.65 ^0.38 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^0.25 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.04 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^-0.19 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.6 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.5 ^-0.56 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.38 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.25 ^-0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.1 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.04 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.19 ^-0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.33 ^-0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.45 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.56 ^-0.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.65 ^-0.38 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^-0.25 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.04 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^0.19 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-3.24 ^-0.74 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.74 ^-3.24 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.74 ^3.24 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^3.24 ^0.74 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.56 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.08 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_03.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_03.mcfunction new file mode 100644 index 000000000..3e1cd1a32 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_03.mcfunction @@ -0,0 +1,43 @@ +# frame 3 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.47 ^0.59 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.34 ^0.67 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.21 ^0.72 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.06 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.08 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.23 ^0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.36 ^0.66 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.48 ^0.57 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.59 ^0.47 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.67 ^0.34 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.72 ^0.21 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.06 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.08 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^-0.23 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.66 ^-0.36 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.57 ^-0.48 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.47 ^-0.59 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.34 ^-0.67 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.21 ^-0.72 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.06 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.08 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.23 ^-0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.36 ^-0.66 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.48 ^-0.57 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.59 ^-0.47 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.67 ^-0.34 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.72 ^-0.21 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.06 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.08 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^0.23 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.66 ^0.36 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.57 ^0.48 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-2.8 ^-1.35 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.35 ^-2.8 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.35 ^2.8 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^2.8 ^1.35 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.59 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.12 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_04.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_04.mcfunction new file mode 100644 index 000000000..622ae71bf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_04.mcfunction @@ -0,0 +1,43 @@ +# frame 4 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.17 ^0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.02 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.13 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.27 ^0.7 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.4 ^0.64 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.52 ^0.54 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.61 ^0.43 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^0.31 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^0.17 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.02 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.13 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.7 ^-0.27 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.64 ^-0.4 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.54 ^-0.52 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.43 ^-0.61 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.31 ^-0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.17 ^-0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.02 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.13 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.27 ^-0.7 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.4 ^-0.64 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.52 ^-0.54 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.61 ^-0.43 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^-0.31 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^-0.17 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.02 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.13 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.7 ^0.27 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.64 ^0.4 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.54 ^0.52 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.43 ^0.61 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.31 ^0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-2.26 ^-1.8 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.8 ^-2.26 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.8 ^2.26 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^2.26 ^1.8 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.62 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.16 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_05.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_05.mcfunction new file mode 100644 index 000000000..05c3c6ef2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_05.mcfunction @@ -0,0 +1,43 @@ +# frame 5 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.17 ^0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.31 ^0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.43 ^0.61 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.54 ^0.52 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.64 ^0.4 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.7 ^0.27 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.13 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.02 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^-0.17 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^-0.31 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.61 ^-0.43 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.52 ^-0.54 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.4 ^-0.64 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.27 ^-0.7 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.13 ^-0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.02 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.17 ^-0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.31 ^-0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.43 ^-0.61 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.54 ^-0.52 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.64 ^-0.4 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.7 ^-0.27 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.13 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.02 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^0.17 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^0.31 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.61 ^0.43 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.52 ^0.54 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.4 ^0.64 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.27 ^0.7 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.13 ^0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.02 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.67 ^-2.09 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^2.09 ^-1.67 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-2.09 ^1.67 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.67 ^2.09 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.65 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.2 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_06.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_06.mcfunction new file mode 100644 index 000000000..7f36a4543 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_06.mcfunction @@ -0,0 +1,43 @@ +# frame 6 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.47 ^0.59 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.57 ^0.48 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.66 ^0.36 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^0.23 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.08 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.06 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.72 ^-0.21 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.67 ^-0.34 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.59 ^-0.47 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.48 ^-0.57 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.36 ^-0.66 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.23 ^-0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.08 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.06 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.21 ^-0.72 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.34 ^-0.67 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.47 ^-0.59 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.57 ^-0.48 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.66 ^-0.36 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^-0.23 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.08 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.06 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.72 ^0.21 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.67 ^0.34 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.59 ^0.47 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.48 ^0.57 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.36 ^0.66 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.23 ^0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.08 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.06 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.21 ^0.72 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.34 ^0.67 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.07 ^-2.22 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^2.22 ^-1.07 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-2.22 ^1.07 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.07 ^2.22 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.68 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.24 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_07.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_07.mcfunction new file mode 100644 index 000000000..fa979de4f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_07.mcfunction @@ -0,0 +1,43 @@ +# frame 7 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^0.19 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.04 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^-0.25 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.65 ^-0.38 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.56 ^-0.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.45 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.33 ^-0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.19 ^-0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.04 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.1 ^-0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.25 ^-0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.38 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.5 ^-0.56 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.6 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^-0.19 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.04 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^0.25 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.65 ^0.38 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.56 ^0.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.45 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.33 ^0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.19 ^0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.04 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.1 ^0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.25 ^0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.38 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.5 ^0.56 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.6 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.5 ^-2.19 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^2.19 ^-0.5 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-2.19 ^0.5 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.5 ^2.19 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.71 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.28 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_08.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_08.mcfunction new file mode 100644 index 000000000..c907a6261 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_08.mcfunction @@ -0,0 +1,43 @@ +# frame 8 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.69 ^-0.29 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.62 ^-0.42 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.42 ^-0.62 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.29 ^-0.69 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.15 ^-0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.0 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.15 ^-0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.29 ^-0.69 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.42 ^-0.62 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.62 ^-0.42 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.69 ^-0.29 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.69 ^0.29 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.62 ^0.42 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.42 ^0.62 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.29 ^0.69 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.15 ^0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.0 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.15 ^0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.29 ^0.69 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.42 ^0.62 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.62 ^0.42 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.69 ^0.29 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.0 ^-2.03 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^2.03 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-2.03 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.0 ^2.03 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.74 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.32 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_09.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_09.mcfunction new file mode 100644 index 000000000..2732fed24 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_09.mcfunction @@ -0,0 +1,43 @@ +# frame 9 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.6 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.5 ^-0.56 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.38 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.25 ^-0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.1 ^-0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.04 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.19 ^-0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.33 ^-0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.45 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.56 ^-0.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.65 ^-0.38 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^-0.25 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.04 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^0.19 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.6 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.5 ^0.56 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.38 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.25 ^0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.1 ^0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.04 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.19 ^0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.33 ^0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.45 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.56 ^0.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.65 ^0.38 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^0.25 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.04 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^-0.19 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.4 ^-1.77 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.77 ^0.4 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.77 ^-0.4 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.4 ^1.77 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.77 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.3599999999999999 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_10.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_10.mcfunction new file mode 100644 index 000000000..b7a13b3ae --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_10.mcfunction @@ -0,0 +1,43 @@ +# frame 10 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.47 ^-0.59 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.34 ^-0.67 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.21 ^-0.72 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.06 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.08 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.23 ^-0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.36 ^-0.66 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.48 ^-0.57 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.59 ^-0.47 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.67 ^-0.34 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.72 ^-0.21 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.06 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.08 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^0.23 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.66 ^0.36 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.57 ^0.48 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.47 ^0.59 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.34 ^0.67 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.21 ^0.72 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.06 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.08 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.23 ^0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.36 ^0.66 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.48 ^0.57 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.59 ^0.47 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.67 ^0.34 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.72 ^0.21 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.06 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.08 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^-0.23 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.66 ^-0.36 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.57 ^-0.48 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.7 ^-1.44 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.44 ^0.7 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.44 ^-0.7 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.7 ^1.44 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.8 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.4 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_11.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_11.mcfunction new file mode 100644 index 000000000..e1de9bbbb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_11.mcfunction @@ -0,0 +1,43 @@ +# frame 11 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.17 ^-0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.02 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.13 ^-0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.27 ^-0.7 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.4 ^-0.64 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.52 ^-0.54 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.61 ^-0.43 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^-0.31 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^-0.17 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.02 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.13 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.7 ^0.27 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.64 ^0.4 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.54 ^0.52 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.43 ^0.61 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.31 ^0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.17 ^0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.02 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.13 ^0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.27 ^0.7 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.4 ^0.64 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.52 ^0.54 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.61 ^0.43 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^0.31 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^0.17 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.02 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.13 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.7 ^-0.27 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.64 ^-0.4 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.54 ^-0.52 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.43 ^-0.61 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.31 ^-0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.87 ^-1.09 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^1.09 ^0.87 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-1.09 ^-0.87 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.87 ^1.09 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.83 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.44 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_12.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_12.mcfunction new file mode 100644 index 000000000..17c81e510 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_12.mcfunction @@ -0,0 +1,43 @@ +# frame 12 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.17 ^-0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.31 ^-0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.43 ^-0.61 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.54 ^-0.52 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.64 ^-0.4 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.7 ^-0.27 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.13 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.02 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^0.17 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^0.31 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.61 ^0.43 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.52 ^0.54 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.4 ^0.64 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.27 ^0.7 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.13 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.02 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.17 ^0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.31 ^0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.43 ^0.61 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.54 ^0.52 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.64 ^0.4 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.7 ^0.27 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.13 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.02 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^-0.17 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^-0.31 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.61 ^-0.43 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.52 ^-0.54 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.4 ^-0.64 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.27 ^-0.7 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.13 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.02 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.92 ^-0.73 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.73 ^0.92 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.73 ^-0.92 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.92 ^0.73 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.8599999999999999 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.48 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_13.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_13.mcfunction new file mode 100644 index 000000000..ee6f2e39f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_13.mcfunction @@ -0,0 +1,43 @@ +# frame 13 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.47 ^-0.59 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.57 ^-0.48 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.66 ^-0.36 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^-0.23 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.08 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.06 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.72 ^0.21 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.67 ^0.34 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.59 ^0.47 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.48 ^0.57 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.36 ^0.66 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.23 ^0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.08 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.06 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.21 ^0.72 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.34 ^0.67 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.47 ^0.59 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.57 ^0.48 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.66 ^0.36 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^0.23 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.08 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.06 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.72 ^-0.21 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.67 ^-0.34 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.59 ^-0.47 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.48 ^-0.57 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.36 ^-0.66 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.23 ^-0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.08 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.06 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.21 ^-0.72 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.34 ^-0.67 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.86 ^-0.42 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.42 ^0.86 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.42 ^-0.86 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.86 ^0.42 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.8900000000000001 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.52 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_14.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_14.mcfunction new file mode 100644 index 000000000..3c84df7b0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_14.mcfunction @@ -0,0 +1,43 @@ +# frame 14 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.68 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.73 ^-0.19 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^-0.04 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.71 ^0.25 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.65 ^0.38 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.56 ^0.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.45 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.33 ^0.68 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.19 ^0.73 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.04 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.1 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.25 ^0.71 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.38 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.5 ^0.56 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.6 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.68 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.73 ^0.19 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^0.04 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.71 ^-0.25 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.65 ^-0.38 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.56 ^-0.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.45 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.33 ^-0.68 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.19 ^-0.73 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.04 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.1 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.25 ^-0.71 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.38 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.5 ^-0.56 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.6 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.73 ^-0.17 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.17 ^0.73 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.17 ^-0.73 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.73 ^0.17 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.92 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.56 diff --git a/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_15.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_15.mcfunction new file mode 100644 index 000000000..fa0164820 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/doom_cast/doom_cast_15.mcfunction @@ -0,0 +1,43 @@ +# frame 15 / 15 +# 円 +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.69 ^0.29 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.62 ^0.42 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.42 ^0.62 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.29 ^0.69 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.15 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.0 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.15 ^0.74 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.29 ^0.69 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.42 ^0.62 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.62 ^0.42 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.69 ^0.29 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.75 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.74 ^-0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.69 ^-0.29 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.62 ^-0.42 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.42 ^-0.62 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.29 ^-0.69 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^-0.15 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.0 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.15 ^-0.74 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.29 ^-0.69 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.42 ^-0.62 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.62 ^-0.42 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.69 ^-0.29 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.700,0.35,0.875],scale:0.75} ^0.74 ^-0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.53 ^-0.0 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^0.0 ^0.53 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.0 ^-0.53 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.385,0.175,0.7],scale:1.5} ^-0.53 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 5 force @a[distance=..32,tag=ShowParticles] +# 平面.001 +playsound minecraft:entity.mooshroom.convert_2 hostile @a ~ ~ ~ 0.5 1.95 +# 平面.002 +playsound minecraft:entity.illusioner.prepare_mirror hostile @a ~ ~ ~ 1.5 1.6 diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_001.mcfunction new file mode 100644 index 000000000..9fd9581ee --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_001.mcfunction @@ -0,0 +1,64 @@ +# frame 1 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.5 0 +# Circle +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-0.0 ^0.0 ^5.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^2.5 ^0.0 ^4.33 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^4.33 ^0.0 ^2.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^5.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^4.33 ^0.0 ^-2.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^2.5 ^0.0 ^-4.33 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-0.0 ^0.0 ^-5.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-2.5 ^0.0 ^-4.33 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-4.33 ^0.0 ^-2.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-5.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-4.33 ^0.0 ^2.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[1.0,0.0,0.0],scale:2.0} ^-2.5 ^0.0 ^4.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.0 ^0.0 ^4.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.79 ^1.25 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.3 ^2.21 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.52 ^-3.02 ^-0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.74 ^-0.33 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.84 ^-3.0 ^-2.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.83 ^-2.2 ^-3.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.32 ^-3.44 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.28 ^3.07 ^-1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.45 ^-2.61 ^1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.35 ^-1.84 ^2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.01 ^-3.32 ^-3.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.82 ^-4.23 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.14 ^-1.9 ^-2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.62 ^-2.3 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.93 ^1.05 ^-4.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.18 ^3.89 ^3.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.45 ^3.8 ^-3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.02 ^4.08 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^5.23 ^-0.22 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.22 ^1.37 ^-3.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.77 ^-4.52 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.93 ^-4.84 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.43 ^0.06 ^4.05 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_002.mcfunction new file mode 100644 index 000000000..67ea6a12a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_002.mcfunction @@ -0,0 +1,64 @@ +# frame 2 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.503 0 +# Circle +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^0.11 ^0.0 ^4.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^2.56 ^0.0 ^4.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^4.32 ^0.0 ^2.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^4.93 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^4.21 ^0.0 ^-2.56 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^2.37 ^0.0 ^-4.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^-0.11 ^0.0 ^-4.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^-2.56 ^0.0 ^-4.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^-4.32 ^0.0 ^-2.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^-4.93 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^-4.21 ^0.0 ^2.56 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.986,0.0,0.0],scale:2.014} ^-2.37 ^0.0 ^4.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.27 ^0.0 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.72 ^1.42 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.13 ^2.42 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.34 ^-3.09 ^-0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.78 ^-0.08 ^-1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.07 ^-2.86 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.89 ^-1.96 ^-3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.46 ^-3.29 ^2.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.04 ^3.28 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.26 ^-2.68 ^1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.22 ^-1.68 ^2.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.69 ^-3.34 ^-3.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.97 ^-4.12 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.35 ^-1.72 ^-2.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.73 ^-2.28 ^-1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.0 ^1.33 ^-4.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.38 ^3.65 ^3.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.22 ^3.64 ^-3.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.33 ^4.02 ^-3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^5.18 ^-0.59 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.96 ^1.62 ^-4.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.45 ^-4.68 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.62 ^-4.89 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.16 ^0.21 ^4.23 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_003.mcfunction new file mode 100644 index 000000000..aaae4869b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_003.mcfunction @@ -0,0 +1,64 @@ +# frame 3 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.512 0 +# Circle +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^0.23 ^0.0 ^4.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^2.62 ^0.0 ^4.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^4.31 ^0.0 ^2.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^4.85 ^0.0 ^-0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^4.08 ^0.0 ^-2.62 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^2.22 ^0.0 ^-4.31 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^-0.23 ^0.0 ^-4.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^-2.62 ^0.0 ^-4.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^-4.31 ^0.0 ^-2.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^-4.85 ^0.0 ^0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^-4.08 ^0.0 ^2.62 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.97,0.0,0.0],scale:2.03} ^-2.22 ^0.0 ^4.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.6 ^0.0 ^3.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.64 ^1.62 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.92 ^2.68 ^0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.13 ^-3.17 ^-1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.81 ^0.23 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.34 ^-2.69 ^-2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.96 ^-1.66 ^-3.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.62 ^-3.1 ^2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.75 ^3.53 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.01 ^-2.76 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.05 ^-1.49 ^3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.31 ^-3.36 ^-3.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.14 ^-3.98 ^0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.59 ^-1.5 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.86 ^-2.26 ^-1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.08 ^1.68 ^-4.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.63 ^3.37 ^4.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.95 ^3.43 ^-3.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.77 ^3.94 ^-3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^5.11 ^-1.02 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.65 ^1.92 ^-4.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.05 ^-4.87 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.25 ^-4.93 ^-1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.83 ^0.4 ^4.45 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_004.mcfunction new file mode 100644 index 000000000..1b84bf10b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_004.mcfunction @@ -0,0 +1,64 @@ +# frame 4 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.524 0 +# Circle +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^0.35 ^0.0 ^4.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^2.68 ^0.0 ^3.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^4.29 ^0.0 ^2.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^4.76 ^0.0 ^-0.35 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^3.95 ^0.0 ^-2.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^2.08 ^0.0 ^-4.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^-0.35 ^0.0 ^-4.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^-2.68 ^0.0 ^-3.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^-4.29 ^0.0 ^-2.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^-4.76 ^0.0 ^0.35 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^-3.95 ^0.0 ^2.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.953,0.0,0.0],scale:2.047} ^-2.08 ^0.0 ^4.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.94 ^0.0 ^3.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.51 ^1.81 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.67 ^2.91 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.88 ^-3.21 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.8 ^0.54 ^-1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.61 ^-2.47 ^-2.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.03 ^-1.34 ^-3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.77 ^-2.87 ^2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.42 ^3.74 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.72 ^-2.81 ^2.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.84 ^-1.27 ^3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.08 ^-3.35 ^-3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.29 ^-3.8 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.81 ^-1.26 ^-2.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.95 ^-2.21 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.15 ^2.02 ^-3.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.87 ^3.03 ^4.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.66 ^3.17 ^-4.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.21 ^3.81 ^-3.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.98 ^-1.46 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.29 ^2.2 ^-4.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.62 ^-5.0 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.85 ^-4.92 ^-1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.45 ^0.59 ^4.63 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_005.mcfunction new file mode 100644 index 000000000..da760d083 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_005.mcfunction @@ -0,0 +1,64 @@ +# frame 5 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.538 0 +# Circle +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^0.46 ^0.0 ^4.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^2.73 ^0.0 ^3.81 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^4.27 ^0.0 ^1.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^4.66 ^0.0 ^-0.46 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^3.81 ^0.0 ^-2.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^1.93 ^0.0 ^-4.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^-0.46 ^0.0 ^-4.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^-2.73 ^0.0 ^-3.81 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^-4.27 ^0.0 ^-1.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^-4.66 ^0.0 ^0.46 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^-3.81 ^0.0 ^2.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.937,0.0,0.0],scale:2.063} ^-1.93 ^0.0 ^4.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.27 ^0.0 ^3.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.34 ^1.98 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.39 ^3.11 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.61 ^-3.22 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.75 ^0.85 ^-0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.87 ^-2.23 ^-2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.08 ^-1.0 ^-3.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.92 ^-2.6 ^2.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.05 ^3.92 ^-1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.4 ^-2.83 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.6 ^-1.04 ^3.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.48 ^-3.3 ^-3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.42 ^-3.57 ^1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.98 ^-1.0 ^-1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.0 ^-2.14 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.21 ^2.34 ^-3.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.11 ^2.66 ^4.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.36 ^2.87 ^-4.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.64 ^3.64 ^-3.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.8 ^-1.89 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.91 ^2.46 ^-4.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.17 ^-5.09 ^0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.44 ^-4.86 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.04 ^0.77 ^4.75 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_006.mcfunction new file mode 100644 index 000000000..16f0d102b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_006.mcfunction @@ -0,0 +1,64 @@ +# frame 6 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.554 0 +# Circle +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^0.58 ^0.0 ^4.57 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^2.78 ^0.0 ^3.67 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^4.24 ^0.0 ^1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^4.57 ^0.0 ^-0.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^3.67 ^0.0 ^-2.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^1.78 ^0.0 ^-4.24 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^-0.58 ^0.0 ^-4.57 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^-2.78 ^0.0 ^-3.67 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^-4.24 ^0.0 ^-1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^-4.57 ^0.0 ^0.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^-3.67 ^0.0 ^2.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.92,0.0,0.0],scale:2.08} ^-1.78 ^0.0 ^4.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.58 ^0.0 ^3.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.14 ^2.13 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.09 ^3.29 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.32 ^-3.19 ^-1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.67 ^1.16 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.1 ^-1.97 ^-2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.13 ^-0.65 ^-3.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.07 ^-2.31 ^2.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.67 ^4.05 ^-1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.06 ^-2.82 ^2.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.33 ^-0.79 ^3.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.88 ^-3.21 ^-3.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.53 ^-3.3 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.11 ^-0.73 ^-1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.01 ^-2.04 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.26 ^2.63 ^-3.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.34 ^2.26 ^4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.05 ^2.55 ^-4.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.05 ^3.43 ^-3.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.57 ^-2.3 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.51 ^2.7 ^-4.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.7 ^-5.12 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.03 ^-4.75 ^-2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.61 ^0.94 ^4.83 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_007.mcfunction new file mode 100644 index 000000000..a2a93b19b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_007.mcfunction @@ -0,0 +1,112 @@ +# frame 7 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.572 0 +# Circle +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^0.68 ^0.0 ^4.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^2.83 ^0.0 ^3.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^4.21 ^0.0 ^1.64 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^4.47 ^0.0 ^-0.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^3.53 ^0.0 ^-2.83 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^1.64 ^0.0 ^-4.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^-0.68 ^0.0 ^-4.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^-2.83 ^0.0 ^-3.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^-4.21 ^0.0 ^-1.64 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^-4.47 ^0.0 ^0.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^-3.53 ^0.0 ^2.83 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.903,0.0,0.0],scale:2.097} ^-1.64 ^0.0 ^4.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.88 ^0.0 ^3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.61 ^3.01 ^-2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.91 ^2.26 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.88 ^-3.79 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.77 ^3.42 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.33 ^-2.6 ^-3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.02 ^-3.13 ^-2.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.91 ^0.35 ^3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.54 ^1.44 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.15 ^-0.12 ^-2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.31 ^-1.68 ^-2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.39 ^-0.6 ^3.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.16 ^-0.29 ^-3.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.02 ^-0.47 ^3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.19 ^-2.0 ^3.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.57 ^1.6 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.27 ^4.15 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.02 ^-2.26 ^4.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.7 ^-2.78 ^3.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.99 ^-0.84 ^-4.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.04 ^-0.54 ^3.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.1 ^-2.64 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.26 ^-3.09 ^-2.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.39 ^4.35 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.61 ^-3.0 ^1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^4.55 ^0.69 ^0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.2 ^-0.45 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.46 ^2.56 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.97 ^-1.92 ^0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.13 ^4.2 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.29 ^2.9 ^-3.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.37 ^-3.25 ^2.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.55 ^1.84 ^4.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.0 ^0.65 ^-4.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.25 ^2.2 ^-4.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.53 ^-3.41 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.44 ^3.19 ^-3.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.73 ^-4.44 ^-0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.29 ^-2.68 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.97 ^2.11 ^4.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.09 ^2.91 ^-4.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.11 ^-4.86 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.23 ^-5.09 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.78 ^3.83 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.39 ^-4.59 ^-2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.15 ^1.55 ^4.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.17 ^1.11 ^4.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.95 ^2.68 ^-4.48 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_008.mcfunction new file mode 100644 index 000000000..a1c27a734 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_008.mcfunction @@ -0,0 +1,112 @@ +# frame 8 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.591 0 +# Circle +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^0.79 ^0.0 ^4.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^2.87 ^0.0 ^3.39 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^4.18 ^0.0 ^1.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^4.37 ^0.0 ^-0.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^3.39 ^0.0 ^-2.87 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^1.5 ^0.0 ^-4.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^-0.79 ^0.0 ^-4.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^-2.87 ^0.0 ^-3.39 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^-4.18 ^0.0 ^-1.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^-4.37 ^0.0 ^0.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^-3.39 ^0.0 ^2.87 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.886,0.0,0.0],scale:2.114} ^-1.5 ^0.0 ^4.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.15 ^0.0 ^3.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.61 ^3.14 ^-1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.65 ^2.36 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.61 ^-3.81 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.43 ^3.52 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.1 ^-2.48 ^-3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.72 ^-3.04 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.82 ^0.1 ^3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.38 ^1.71 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.96 ^-0.09 ^-2.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.5 ^-1.38 ^-2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.28 ^-0.85 ^3.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.18 ^0.06 ^-3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.2 ^-0.62 ^3.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.31 ^-1.67 ^3.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.67 ^1.42 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.86 ^4.19 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.2 ^-2.05 ^4.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.32 ^-2.71 ^3.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.83 ^-1.11 ^-4.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.73 ^-0.29 ^4.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.99 ^-2.87 ^-1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.63 ^-2.94 ^-2.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.47 ^4.25 ^-0.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.66 ^-2.67 ^2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^4.56 ^0.38 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^4.24 ^-0.17 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.29 ^2.56 ^-1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.9 ^-1.79 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.84 ^4.19 ^-1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.31 ^3.13 ^-2.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.57 ^-3.23 ^2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.75 ^1.4 ^4.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.15 ^0.95 ^-4.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.55 ^1.84 ^-4.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.76 ^-3.27 ^1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.8 ^2.92 ^-3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.77 ^-4.31 ^-1.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.96 ^-3.03 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.62 ^2.1 ^4.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.67 ^3.08 ^-3.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.99 ^-4.9 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.24 ^-5.02 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.97 ^3.58 ^3.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.79 ^-4.38 ^-2.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.1 ^1.2 ^5.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.71 ^1.26 ^4.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.22 ^2.83 ^-4.3 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_009.mcfunction new file mode 100644 index 000000000..c49024c21 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_009.mcfunction @@ -0,0 +1,112 @@ +# frame 9 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.611 0 +# Circle +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^0.89 ^0.0 ^4.26 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^2.9 ^0.0 ^3.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^4.13 ^0.0 ^1.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^4.26 ^0.0 ^-0.89 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^3.25 ^0.0 ^-2.9 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^1.36 ^0.0 ^-4.13 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^-0.89 ^0.0 ^-4.26 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^-2.9 ^0.0 ^-3.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^-4.13 ^0.0 ^-1.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^-4.26 ^0.0 ^0.89 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^-3.25 ^0.0 ^2.9 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.869,0.0,0.0],scale:2.131} ^-1.36 ^0.0 ^4.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.39 ^0.0 ^2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.62 ^3.29 ^-1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.36 ^2.44 ^-1.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.29 ^-3.83 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.08 ^3.58 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.17 ^-2.32 ^-3.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.41 ^-2.92 ^-2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.71 ^-0.21 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.18 ^1.96 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.73 ^-0.06 ^-2.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.65 ^-1.07 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.15 ^-1.15 ^3.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.18 ^0.41 ^-3.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.4 ^-0.8 ^3.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.41 ^-1.33 ^3.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.78 ^1.19 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.45 ^4.19 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.47 ^-1.8 ^4.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.93 ^-2.61 ^3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.64 ^-1.44 ^-4.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.41 ^-0.04 ^4.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.84 ^-3.15 ^-1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.97 ^-2.76 ^-2.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.55 ^4.13 ^-1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.68 ^-2.32 ^2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^4.57 ^0.02 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^4.23 ^0.11 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.09 ^2.54 ^-2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.77 ^-1.63 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.5 ^4.17 ^-1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.32 ^3.32 ^-2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.8 ^-3.21 ^1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.91 ^0.96 ^4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.33 ^1.31 ^-4.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.84 ^1.45 ^-4.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^4.02 ^-3.11 ^1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.12 ^2.61 ^-2.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.81 ^-4.13 ^-1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.6 ^-3.33 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.2 ^2.08 ^4.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.24 ^3.22 ^-3.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.84 ^-4.94 ^-0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.7 ^-4.88 ^0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.2 ^3.27 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.18 ^-4.12 ^-2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.05 ^0.77 ^5.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.26 ^1.39 ^4.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.54 ^3.02 ^-4.06 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_010.mcfunction new file mode 100644 index 000000000..8b90d6012 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_010.mcfunction @@ -0,0 +1,112 @@ +# frame 10 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.632 0 +# Circle +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^0.98 ^0.0 ^4.15 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^2.93 ^0.0 ^3.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^4.09 ^0.0 ^1.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^4.15 ^0.0 ^-0.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^3.11 ^0.0 ^-2.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^1.23 ^0.0 ^-4.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^-0.98 ^0.0 ^-4.15 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^-2.93 ^0.0 ^-3.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^-4.09 ^0.0 ^-1.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^-4.15 ^0.0 ^0.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^-3.11 ^0.0 ^2.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.852,0.0,0.0],scale:2.148} ^-1.23 ^0.0 ^4.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.6 ^0.0 ^2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.61 ^3.41 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.05 ^2.48 ^-1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.05 ^-3.81 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.72 ^3.59 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.45 ^-2.14 ^-3.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.1 ^-2.76 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.58 ^-0.53 ^3.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.95 ^2.17 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.46 ^-0.03 ^-3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.77 ^-0.76 ^-2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.02 ^-1.44 ^3.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.17 ^0.75 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.59 ^-0.98 ^2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.49 ^-0.97 ^3.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.85 ^0.94 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.04 ^4.14 ^-0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.74 ^-1.51 ^4.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.54 ^-2.48 ^3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.42 ^-1.77 ^-3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.07 ^0.21 ^4.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.66 ^-3.4 ^-1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.28 ^-2.55 ^-2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.62 ^3.96 ^-1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.66 ^-1.94 ^2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.52 ^-0.36 ^0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^4.18 ^0.38 ^-0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.85 ^2.5 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.61 ^-1.46 ^1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.14 ^4.11 ^-2.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.31 ^3.47 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.02 ^-3.15 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.06 ^0.51 ^4.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.48 ^1.68 ^-4.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.11 ^1.06 ^-4.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.25 ^-2.9 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.39 ^2.28 ^-2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.83 ^-3.91 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.2 ^-3.59 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.76 ^2.04 ^4.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.18 ^3.31 ^-3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.67 ^-4.92 ^-0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.14 ^-4.69 ^0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.43 ^2.91 ^4.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.54 ^-3.82 ^-2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.99 ^0.32 ^5.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.18 ^1.5 ^4.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.86 ^3.18 ^-3.77 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_011.mcfunction new file mode 100644 index 000000000..46f4b6278 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_011.mcfunction @@ -0,0 +1,112 @@ +# frame 11 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.653 0 +# Circle +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^1.07 ^0.0 ^4.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^2.95 ^0.0 ^2.97 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^4.04 ^0.0 ^1.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^4.04 ^0.0 ^-1.07 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^2.97 ^0.0 ^-2.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^1.09 ^0.0 ^-4.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^-1.07 ^0.0 ^-4.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^-2.95 ^0.0 ^-2.97 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^-4.04 ^0.0 ^-1.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^-4.04 ^0.0 ^1.07 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^-2.97 ^0.0 ^2.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.835,0.0,0.0],scale:2.165} ^-1.09 ^0.0 ^4.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.77 ^0.0 ^2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.58 ^3.5 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.72 ^2.49 ^-1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.39 ^-3.74 ^-1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.37 ^3.55 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.73 ^-1.93 ^-3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.2 ^-2.57 ^-2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.43 ^-0.85 ^3.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.68 ^2.35 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.16 ^0.0 ^-3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.84 ^-0.44 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.12 ^-1.73 ^3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.15 ^1.06 ^-3.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.74 ^-1.15 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.54 ^-0.62 ^3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.88 ^0.68 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.36 ^4.03 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.01 ^-1.21 ^4.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.15 ^-2.32 ^3.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.18 ^-2.07 ^-3.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.73 ^0.45 ^4.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.44 ^-3.62 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.55 ^-2.31 ^-2.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.68 ^3.74 ^-1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.61 ^-1.55 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.43 ^-0.74 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^4.07 ^0.63 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.57 ^2.43 ^-2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.4 ^-1.28 ^1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.23 ^4.0 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.28 ^3.57 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.2 ^-3.06 ^1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.17 ^0.07 ^4.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.62 ^2.02 ^-4.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.36 ^0.67 ^-4.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.44 ^-2.66 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.62 ^1.94 ^-2.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.81 ^-3.64 ^-2.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.77 ^-3.8 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.3 ^1.98 ^4.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.58 ^3.36 ^-3.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.47 ^-4.85 ^-1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.55 ^-4.44 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.64 ^2.51 ^4.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.88 ^-3.48 ^-2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.91 ^-0.14 ^5.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.61 ^1.6 ^4.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.16 ^3.3 ^-3.43 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_012.mcfunction new file mode 100644 index 000000000..1fc46a284 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_012.mcfunction @@ -0,0 +1,112 @@ +# frame 12 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.676 0 +# Circle +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^1.16 ^0.0 ^3.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^2.97 ^0.0 ^2.83 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^3.98 ^0.0 ^0.97 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^3.93 ^0.0 ^-1.16 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^2.83 ^0.0 ^-2.97 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^0.97 ^0.0 ^-3.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^-1.16 ^0.0 ^-3.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^-2.97 ^0.0 ^-2.83 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^-3.98 ^0.0 ^-0.97 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^-3.93 ^0.0 ^1.16 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^-2.83 ^0.0 ^2.97 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.818,0.0,0.0],scale:2.182} ^-0.97 ^0.0 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.9 ^0.0 ^1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.53 ^3.55 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.38 ^2.47 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.72 ^-3.64 ^-1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.02 ^3.48 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.0 ^-1.7 ^-3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.49 ^-2.35 ^-2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.26 ^-1.15 ^3.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.39 ^2.5 ^0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.84 ^0.04 ^-3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.89 ^-0.13 ^-1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.26 ^-1.99 ^3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.11 ^1.36 ^-3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.88 ^-1.31 ^2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.58 ^-0.27 ^3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.88 ^0.41 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.74 ^3.88 ^-0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.26 ^-0.89 ^4.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.22 ^-2.14 ^3.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.93 ^-2.36 ^-3.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.39 ^0.68 ^3.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.2 ^-3.8 ^-0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.78 ^-2.05 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.72 ^3.48 ^-2.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.54 ^-1.16 ^2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.29 ^-1.11 ^0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.91 ^0.87 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.27 ^2.34 ^-3.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.16 ^-1.08 ^2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.59 ^3.85 ^-2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.24 ^3.62 ^-1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.35 ^-2.94 ^0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.25 ^-0.36 ^4.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.72 ^2.35 ^-3.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.58 ^0.28 ^-4.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.58 ^-2.39 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.79 ^1.57 ^-2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.76 ^-3.33 ^-2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.32 ^-3.96 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.17 ^1.89 ^4.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.97 ^3.37 ^-3.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.26 ^-4.73 ^-1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.93 ^-4.15 ^0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.84 ^2.1 ^4.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.18 ^-3.11 ^-2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.82 ^-0.6 ^5.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.03 ^1.66 ^4.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.43 ^3.39 ^-3.07 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_013.mcfunction new file mode 100644 index 000000000..ece91879c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_013.mcfunction @@ -0,0 +1,160 @@ +# frame 13 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.698 0 +# Circle +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^1.23 ^0.0 ^3.82 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^2.98 ^0.0 ^2.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^3.93 ^0.0 ^0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^3.82 ^0.0 ^-1.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^2.69 ^0.0 ^-2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^0.84 ^0.0 ^-3.93 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^-1.23 ^0.0 ^-3.82 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^-2.98 ^0.0 ^-2.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^-3.93 ^0.0 ^-0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^-3.82 ^0.0 ^1.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^-2.69 ^0.0 ^2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.801,0.0,0.0],scale:2.199} ^-0.84 ^0.0 ^3.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.99 ^0.0 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.47 ^3.56 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.62 ^2.35 ^1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.03 ^2.41 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.05 ^-3.49 ^-1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.87 ^-2.73 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.32 ^3.35 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.26 ^-1.46 ^-3.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.4 ^-1.21 ^-1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.76 ^-2.11 ^-2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.08 ^-1.44 ^3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.54 ^-1.98 ^3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.08 ^2.61 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.5 ^0.07 ^-3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.58 ^-1.63 ^-3.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.88 ^0.17 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.39 ^-2.23 ^3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.73 ^-3.75 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.05 ^1.62 ^-2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.97 ^-1.45 ^1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.98 ^-3.44 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.59 ^0.08 ^2.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.83 ^0.14 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.17 ^-2.44 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.1 ^3.68 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.5 ^-0.56 ^4.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.98 ^-0.18 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.58 ^-1.94 ^3.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.67 ^-2.62 ^-3.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.38 ^-2.55 ^-3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.06 ^0.88 ^3.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.94 ^-3.94 ^-0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.12 ^-4.42 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.96 ^-1.77 ^-1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.74 ^3.19 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.51 ^0.67 ^-2.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.42 ^-0.76 ^2.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.1 ^-1.47 ^0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.72 ^-3.62 ^-0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.7 ^1.09 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.94 ^2.22 ^-3.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.05 ^-0.52 ^-4.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.88 ^-0.88 ^2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.94 ^3.66 ^-2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.65 ^1.23 ^-4.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.18 ^3.62 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.46 ^-2.78 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.3 ^-3.07 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.3 ^-0.76 ^3.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.8 ^2.65 ^-3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.7 ^4.99 ^-1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.78 ^-0.11 ^-4.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.67 ^-2.1 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^5.11 ^1.44 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.9 ^1.2 ^-1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.68 ^-2.99 ^-3.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.94 ^0.33 ^-3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.85 ^-4.04 ^-0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.62 ^1.79 ^4.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.18 ^3.25 ^2.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.32 ^3.32 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.04 ^-4.57 ^-2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.38 ^-3.85 ^-2.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.27 ^-3.81 ^0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.01 ^1.66 ^4.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^4.59 ^-0.08 ^2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.44 ^-2.7 ^-2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.72 ^-1.04 ^4.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.27 ^-2.7 ^3.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.41 ^1.71 ^3.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.68 ^3.45 ^-2.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^5.03 ^1.37 ^-0.97 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_014.mcfunction new file mode 100644 index 000000000..199193f6f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_014.mcfunction @@ -0,0 +1,160 @@ +# frame 14 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.722 0 +# Circle +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^1.31 ^0.0 ^3.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^2.99 ^0.0 ^2.56 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^3.86 ^0.0 ^0.72 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^3.71 ^0.0 ^-1.31 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^2.56 ^0.0 ^-2.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^0.72 ^0.0 ^-3.86 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^-1.31 ^0.0 ^-3.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^-2.99 ^0.0 ^-2.56 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^-3.86 ^0.0 ^-0.72 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^-3.71 ^0.0 ^1.31 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^-2.56 ^0.0 ^2.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.784,0.0,0.0],scale:2.216} ^-0.72 ^0.0 ^3.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.02 ^0.0 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.39 ^3.54 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.77 ^2.32 ^1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.68 ^2.32 ^-2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.36 ^-3.32 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.67 ^-2.88 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.64 ^3.18 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.5 ^-1.2 ^-3.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.28 ^-1.46 ^-1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.02 ^-1.85 ^-2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.89 ^-1.72 ^3.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.5 ^-1.74 ^3.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.75 ^2.67 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.15 ^0.1 ^-3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.34 ^-1.76 ^-3.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.84 ^0.46 ^-1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.52 ^-2.45 ^2.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.92 ^-3.63 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.99 ^1.85 ^-2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.04 ^-1.57 ^1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.87 ^-3.44 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.58 ^0.41 ^2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.74 ^-0.13 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.24 ^-2.32 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.43 ^3.43 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.72 ^-0.24 ^4.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.91 ^-0.48 ^2.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.92 ^-1.71 ^3.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.41 ^-2.85 ^-3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.3 ^-2.33 ^-3.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.26 ^1.07 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.66 ^-4.03 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.01 ^-4.37 ^-0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.1 ^-1.48 ^-1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.74 ^2.87 ^-2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.63 ^0.87 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.28 ^-0.36 ^2.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.88 ^-1.81 ^0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.89 ^-3.41 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.45 ^1.29 ^0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.6 ^2.08 ^-3.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.35 ^-0.53 ^-4.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.57 ^-0.67 ^2.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.28 ^3.44 ^-2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.36 ^1.34 ^-4.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.1 ^3.57 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.53 ^-2.6 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.18 ^-3.29 ^-2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.31 ^-1.15 ^3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.84 ^2.92 ^-2.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.55 ^4.87 ^-1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.94 ^-0.47 ^-3.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^4.71 ^-1.79 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^5.12 ^1.32 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.95 ^0.83 ^-1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.58 ^-2.62 ^-3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^4.13 ^0.13 ^-3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.38 ^-4.08 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.07 ^1.67 ^4.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.88 ^3.47 ^2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.65 ^3.24 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.81 ^-4.35 ^-2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.34 ^-4.05 ^-2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.56 ^-3.42 ^0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.17 ^1.21 ^4.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^4.6 ^0.27 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.66 ^-2.28 ^-2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.62 ^-1.48 ^4.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.34 ^-2.37 ^4.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.75 ^1.72 ^3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.9 ^3.47 ^-2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^4.97 ^1.25 ^-1.31 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_015.mcfunction new file mode 100644 index 000000000..40fc95138 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_015.mcfunction @@ -0,0 +1,160 @@ +# frame 15 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.746 0 +# Circle +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^1.38 ^0.0 ^3.59 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^2.99 ^0.0 ^2.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^3.8 ^0.0 ^0.6 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^3.59 ^0.0 ^-1.38 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^2.42 ^0.0 ^-2.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^0.6 ^0.0 ^-3.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^-1.38 ^0.0 ^-3.59 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^-2.99 ^0.0 ^-2.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^-3.8 ^0.0 ^-0.6 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^-3.59 ^0.0 ^1.38 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^-2.42 ^0.0 ^2.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.767,0.0,0.0],scale:2.233} ^-0.6 ^0.0 ^3.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.01 ^0.0 ^0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.3 ^3.47 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.95 ^2.29 ^1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.34 ^2.2 ^-2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.65 ^-3.1 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.42 ^-3.06 ^0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.93 ^2.97 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.72 ^-0.93 ^-3.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.14 ^-1.76 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.23 ^-1.57 ^-2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.7 ^-1.96 ^3.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.44 ^-1.46 ^3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.4 ^2.69 ^0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.79 ^0.13 ^-3.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.05 ^-1.92 ^-3.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.75 ^0.73 ^-1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.64 ^-2.63 ^2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.14 ^-3.49 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.91 ^2.04 ^-2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.07 ^-1.68 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.74 ^-3.43 ^1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.54 ^0.71 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.61 ^-0.39 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.32 ^-2.17 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.71 ^3.14 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.92 ^0.09 ^3.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.82 ^-0.85 ^2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.22 ^-1.47 ^3.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.14 ^-3.04 ^-3.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.18 ^-2.06 ^-3.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.55 ^1.23 ^3.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.37 ^-4.08 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.87 ^-4.31 ^-1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.17 ^-1.17 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.72 ^2.52 ^-3.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.75 ^1.1 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.11 ^0.02 ^2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.61 ^-2.12 ^1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.09 ^-3.16 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.15 ^1.45 ^0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.24 ^1.91 ^-3.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.71 ^-0.53 ^-4.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.24 ^-0.46 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.6 ^3.17 ^-2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.0 ^1.47 ^-4.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.02 ^3.45 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.56 ^-2.39 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.03 ^-3.54 ^-2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.29 ^-1.49 ^3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.85 ^3.15 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.36 ^4.72 ^-2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.06 ^-0.81 ^-3.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^4.69 ^-1.46 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^5.12 ^1.17 ^0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.94 ^0.46 ^-1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.44 ^-2.23 ^-3.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^4.36 ^-0.1 ^-3.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.9 ^-4.03 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.49 ^1.53 ^4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.52 ^3.72 ^2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.93 ^3.1 ^-1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.58 ^-4.09 ^-2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.29 ^-4.28 ^-2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.8 ^-3.0 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.29 ^0.75 ^4.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^4.6 ^0.71 ^2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.82 ^-1.83 ^-2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.51 ^-1.88 ^4.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.42 ^-1.97 ^4.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.05 ^1.71 ^3.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.08 ^3.44 ^-1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^4.88 ^1.11 ^-1.72 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_016.mcfunction new file mode 100644 index 000000000..ac02ccf2c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_016.mcfunction @@ -0,0 +1,160 @@ +# frame 16 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.77 0 +# Circle +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^1.44 ^0.0 ^3.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^2.98 ^0.0 ^2.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^3.73 ^0.0 ^0.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^3.47 ^0.0 ^-1.44 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^2.29 ^0.0 ^-2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^0.49 ^0.0 ^-3.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^-1.44 ^0.0 ^-3.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^-2.98 ^0.0 ^-2.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^-3.73 ^0.0 ^-0.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^-3.47 ^0.0 ^1.44 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^-2.29 ^0.0 ^2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.75,0.0,0.0],scale:2.25} ^-0.49 ^0.0 ^3.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.95 ^0.0 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.19 ^3.36 ^0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.1 ^2.23 ^1.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.01 ^2.05 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.92 ^-2.86 ^-1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.14 ^-3.21 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.19 ^2.72 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.91 ^-0.66 ^-3.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.96 ^-2.05 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.42 ^-1.28 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.5 ^-2.19 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.37 ^-1.14 ^3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.06 ^2.66 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.43 ^0.16 ^-3.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.25 ^-2.05 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.62 ^0.97 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.75 ^-2.78 ^2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.36 ^-3.3 ^1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.82 ^2.18 ^-1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.06 ^-1.76 ^0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.58 ^-3.39 ^1.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.48 ^0.99 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.44 ^-0.64 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.36 ^-2.0 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.96 ^2.81 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.09 ^0.4 ^3.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.68 ^-1.22 ^2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.49 ^-1.22 ^2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.11 ^-3.19 ^-2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.04 ^-1.77 ^-3.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.83 ^1.36 ^3.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.07 ^-4.08 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.72 ^-4.2 ^-1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.19 ^-0.87 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.68 ^2.14 ^-3.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.84 ^1.33 ^-2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.91 ^0.38 ^2.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.3 ^-2.4 ^1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.26 ^-2.86 ^-1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.82 ^1.58 ^1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.88 ^1.73 ^-3.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.06 ^-0.53 ^-4.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.88 ^-0.26 ^2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.9 ^2.88 ^-2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.62 ^1.58 ^-4.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.92 ^3.29 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.55 ^-2.15 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.85 ^-3.76 ^-1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.22 ^-1.79 ^2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.83 ^3.33 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.17 ^4.51 ^-2.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.14 ^-1.11 ^-3.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^4.62 ^-1.12 ^-1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^5.07 ^1.01 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.85 ^0.1 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.28 ^-1.82 ^-3.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.54 ^-0.34 ^-2.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.44 ^-3.93 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.9 ^1.38 ^4.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.12 ^3.94 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.16 ^2.92 ^-1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.34 ^-3.78 ^-3.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.22 ^-4.47 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.97 ^-2.55 ^0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.38 ^0.29 ^4.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.55 ^1.15 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.92 ^-1.38 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.4 ^-2.26 ^4.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.47 ^-1.53 ^4.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.3 ^1.67 ^2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.22 ^3.38 ^-1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.73 ^0.95 ^-2.12 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_017.mcfunction new file mode 100644 index 000000000..6a27d3103 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_017.mcfunction @@ -0,0 +1,160 @@ +# frame 17 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.795 0 +# Circle +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^1.5 ^0.0 ^3.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^2.98 ^0.0 ^2.16 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^3.66 ^0.0 ^0.38 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^3.36 ^0.0 ^-1.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^2.16 ^0.0 ^-2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^0.38 ^0.0 ^-3.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^-1.5 ^0.0 ^-3.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^-2.98 ^0.0 ^-2.16 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^-3.66 ^0.0 ^-0.38 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^-3.36 ^0.0 ^1.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^-2.16 ^0.0 ^2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.732,0.0,0.0],scale:2.268} ^-0.38 ^0.0 ^3.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.83 ^0.0 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.07 ^3.21 ^1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.22 ^2.14 ^0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.3 ^1.86 ^-2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.15 ^-2.58 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.83 ^-3.32 ^1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.41 ^2.43 ^-0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.08 ^-0.38 ^-2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.75 ^-2.33 ^-1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.57 ^-0.98 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.3 ^-2.37 ^2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.28 ^-0.82 ^3.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.71 ^2.58 ^0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.08 ^0.18 ^-3.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.55 ^-2.17 ^-3.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.45 ^1.18 ^-0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.84 ^-2.88 ^1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.57 ^-3.07 ^1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.72 ^2.28 ^-1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.02 ^-1.82 ^0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.4 ^-3.3 ^1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.4 ^1.23 ^2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.22 ^-0.88 ^1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.37 ^-1.79 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.15 ^2.45 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.23 ^0.7 ^3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.5 ^-1.59 ^2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.71 ^-0.96 ^2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.36 ^-3.3 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.88 ^-1.44 ^-3.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.07 ^1.46 ^2.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.76 ^-4.02 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.56 ^-4.03 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.15 ^-0.56 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.62 ^1.75 ^-3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.89 ^1.55 ^-1.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.68 ^0.71 ^2.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.96 ^-2.64 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.4 ^-2.53 ^-1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.45 ^1.68 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.52 ^1.53 ^-3.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.4 ^-0.53 ^-3.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.51 ^-0.06 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.16 ^2.56 ^-2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.23 ^1.68 ^-4.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.8 ^3.08 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.49 ^-1.9 ^-1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.65 ^-3.95 ^-1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.12 ^-2.03 ^2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.77 ^3.47 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.02 ^4.25 ^-3.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.17 ^-1.38 ^-2.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^4.49 ^-0.78 ^-1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.96 ^0.83 ^1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.71 ^-0.24 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.1 ^-1.39 ^-4.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.67 ^-0.58 ^-2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.0 ^-3.76 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.26 ^1.21 ^3.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.69 ^4.12 ^2.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.34 ^2.69 ^-1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.1 ^-3.44 ^-3.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.11 ^-4.62 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.08 ^-2.09 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.45 ^-0.16 ^4.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.45 ^1.58 ^2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.96 ^-0.93 ^-2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.29 ^-2.59 ^3.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.49 ^-1.08 ^4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.49 ^1.6 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.31 ^3.27 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.53 ^0.77 ^-2.5 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_018.mcfunction new file mode 100644 index 000000000..e198f9077 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_018.mcfunction @@ -0,0 +1,160 @@ +# frame 18 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.82 0 +# Circle +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^1.55 ^0.0 ^3.24 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^2.96 ^0.0 ^2.03 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^3.58 ^0.0 ^0.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^3.24 ^0.0 ^-1.55 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^2.03 ^0.0 ^-2.96 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^0.27 ^0.0 ^-3.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^-1.55 ^0.0 ^-3.24 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^-2.96 ^0.0 ^-2.03 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^-3.58 ^0.0 ^-0.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^-3.24 ^0.0 ^1.55 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^-2.03 ^0.0 ^2.96 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.715,0.0,0.0],scale:2.285} ^-0.27 ^0.0 ^3.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.66 ^0.0 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.95 ^3.03 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.3 ^2.03 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.57 ^1.65 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.35 ^-2.28 ^-1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.5 ^-3.41 ^1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.59 ^2.11 ^-0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.21 ^-0.11 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.51 ^-2.57 ^-1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.68 ^-0.69 ^-1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.1 ^-2.52 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.18 ^-0.48 ^3.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.37 ^2.45 ^0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.27 ^0.21 ^-3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.84 ^-2.26 ^-3.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.24 ^1.34 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.93 ^-2.95 ^1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.77 ^-2.81 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.61 ^2.31 ^-1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.93 ^-1.85 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.21 ^-3.18 ^1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.29 ^1.43 ^1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.98 ^-1.1 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.35 ^-1.57 ^-1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.28 ^2.06 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.34 ^0.99 ^3.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.29 ^-1.93 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.88 ^-0.7 ^2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.6 ^-3.36 ^-2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.7 ^-1.11 ^-4.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.27 ^1.52 ^2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.45 ^-3.92 ^0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.39 ^-3.83 ^-2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^3.04 ^-0.27 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.54 ^1.35 ^-3.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.9 ^1.75 ^-1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.44 ^1.0 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.6 ^-2.84 ^1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.5 ^-2.17 ^-1.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.06 ^1.73 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.16 ^1.32 ^-3.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.71 ^-0.52 ^-3.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.14 ^0.12 ^2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.39 ^2.21 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.16 ^1.76 ^-4.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.68 ^2.81 ^1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.39 ^-1.63 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.43 ^-4.09 ^-1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.98 ^-2.21 ^1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.68 ^3.57 ^-1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.22 ^3.94 ^-3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.15 ^-1.6 ^-2.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^4.31 ^-0.44 ^-1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.8 ^0.65 ^1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.49 ^-0.54 ^-0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.9 ^-0.97 ^-4.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.76 ^-0.81 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.41 ^-3.51 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.59 ^1.03 ^3.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.25 ^4.25 ^2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.45 ^2.42 ^-0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.13 ^-3.06 ^-3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.99 ^-4.71 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.12 ^-1.61 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.47 ^-0.59 ^3.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.31 ^1.99 ^2.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.94 ^-0.5 ^-1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.18 ^-2.89 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.5 ^-0.61 ^4.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.61 ^1.5 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.37 ^3.13 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.28 ^0.59 ^-2.86 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_019.mcfunction new file mode 100644 index 000000000..9355bb5f1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_019.mcfunction @@ -0,0 +1,160 @@ +# frame 19 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.846 0 +# Circle +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^1.6 ^0.0 ^3.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^2.95 ^0.0 ^1.9 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^3.5 ^0.0 ^0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^3.12 ^0.0 ^-1.6 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^1.9 ^0.0 ^-2.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^0.17 ^0.0 ^-3.5 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^-1.6 ^0.0 ^-3.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^-2.95 ^0.0 ^-1.9 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^-3.5 ^0.0 ^-0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^-3.12 ^0.0 ^1.6 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^-1.9 ^0.0 ^2.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.698,0.0,0.0],scale:2.302} ^-0.17 ^0.0 ^3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.45 ^0.0 ^-0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.81 ^2.81 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.35 ^1.91 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.82 ^1.42 ^-1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.51 ^-1.96 ^-1.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.16 ^-3.45 ^1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.71 ^1.77 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.31 ^0.15 ^-2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.24 ^-2.79 ^-1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.73 ^-0.4 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.09 ^-2.63 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.07 ^-0.14 ^3.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.06 ^2.28 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.6 ^0.22 ^-3.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.12 ^-2.33 ^-2.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.99 ^1.46 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.99 ^-2.98 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.94 ^-2.52 ^2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.5 ^2.29 ^-0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.81 ^-1.86 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.01 ^-3.03 ^2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.16 ^1.57 ^1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.7 ^-1.29 ^1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.29 ^-1.34 ^-1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.34 ^1.66 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.41 ^1.25 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.04 ^-2.26 ^2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.99 ^-0.44 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.82 ^-3.37 ^-1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.5 ^-0.76 ^-4.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.42 ^1.53 ^1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.14 ^-3.76 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.22 ^-3.59 ^-2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.87 ^0.01 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.44 ^0.95 ^-3.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.87 ^1.93 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.18 ^1.24 ^2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.21 ^-2.99 ^1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.56 ^-1.79 ^-1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.65 ^1.73 ^1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.19 ^1.1 ^-3.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.99 ^-0.5 ^-3.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.77 ^0.29 ^2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.57 ^1.84 ^-2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.55 ^1.82 ^-4.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.56 ^2.5 ^1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.25 ^-1.34 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.2 ^-4.19 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.81 ^-2.33 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.55 ^3.6 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.41 ^3.6 ^-3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.09 ^-1.76 ^-1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^4.07 ^-0.1 ^-1.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.59 ^0.46 ^2.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-3.21 ^-0.81 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.67 ^-0.54 ^-4.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.8 ^-1.03 ^-1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.78 ^-3.21 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.86 ^0.85 ^3.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.79 ^4.34 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.5 ^2.12 ^-0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.35 ^-2.65 ^-3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.84 ^-4.76 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-3.08 ^-1.13 ^0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.46 ^-1.0 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.12 ^2.38 ^1.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.85 ^-0.09 ^-1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.06 ^-3.13 ^3.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.47 ^-0.13 ^4.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.66 ^1.37 ^1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.36 ^2.94 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.99 ^0.4 ^-3.18 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_020.mcfunction new file mode 100644 index 000000000..b0ceb6224 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_020.mcfunction @@ -0,0 +1,208 @@ +# frame 20 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.872 0 +# Circle +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^1.64 ^0.0 ^3.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^2.92 ^0.0 ^1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^3.42 ^0.0 ^0.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^3.0 ^0.0 ^-1.64 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^1.78 ^0.0 ^-2.92 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^0.08 ^0.0 ^-3.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^-1.64 ^0.0 ^-3.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^-2.92 ^0.0 ^-1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^-3.42 ^0.0 ^-0.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^-3.0 ^0.0 ^1.64 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^-1.78 ^0.0 ^2.92 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.681,0.0,0.0],scale:2.319} ^-0.08 ^0.0 ^3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.18 ^0.0 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.67 ^2.56 ^1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.37 ^1.76 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.01 ^-3.6 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.02 ^1.18 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.63 ^-1.63 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.81 ^-3.46 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.17 ^3.61 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.78 ^1.42 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.37 ^0.4 ^-2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.95 ^-2.98 ^-1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.0 ^1.75 ^3.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.74 ^-0.13 ^-1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.28 ^-2.7 ^1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.94 ^0.19 ^3.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.14 ^0.68 ^-3.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.23 ^2.06 ^1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.91 ^0.24 ^-3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.39 ^-2.38 ^-2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.57 ^-0.61 ^3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.71 ^1.53 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.04 ^-2.96 ^0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.09 ^-2.21 ^2.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.54 ^1.12 ^-3.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.38 ^2.21 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.66 ^-1.84 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.8 ^-2.85 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.87 ^0.4 ^-2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.01 ^1.67 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.39 ^-1.46 ^1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.19 ^-1.09 ^-1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.73 ^-1.42 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.34 ^1.25 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.44 ^1.48 ^2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.76 ^-2.55 ^2.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.13 ^1.12 ^-4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.04 ^-0.19 ^1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.03 ^-3.33 ^-1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.28 ^-0.41 ^-4.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.04 ^1.99 ^3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.52 ^1.51 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.15 ^-3.56 ^1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.05 ^-3.31 ^-2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.19 ^3.16 ^1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.64 ^0.26 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.32 ^0.54 ^-3.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.8 ^2.09 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.91 ^-4.16 ^1.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.92 ^1.43 ^2.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.8 ^-3.09 ^1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.59 ^-1.4 ^-2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-4.43 ^0.05 ^-1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.24 ^1.69 ^1.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.53 ^0.87 ^-3.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.23 ^-0.48 ^-2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.53 ^-3.12 ^2.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.41 ^0.43 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.71 ^1.47 ^-2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.93 ^1.86 ^-3.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.08 ^-4.41 ^1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.43 ^2.16 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.06 ^-1.05 ^-1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.96 ^-4.24 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.34 ^2.62 ^-1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.6 ^-2.38 ^1.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.39 ^3.59 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.6 ^3.22 ^-3.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.13 ^-1.12 ^4.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.98 ^-1.86 ^-1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.79 ^0.22 ^-2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^4.34 ^0.27 ^2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.9 ^3.54 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.87 ^-1.03 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.43 ^-0.12 ^-4.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^4.78 ^-1.24 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.08 ^4.34 ^2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.09 ^-2.85 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.08 ^0.66 ^2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.33 ^4.39 ^2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.0 ^-1.25 ^-5.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.48 ^1.79 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.55 ^-2.22 ^-3.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.68 ^-4.76 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.45 ^4.59 ^1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.96 ^-0.67 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.42 ^-1.38 ^3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.88 ^2.74 ^1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.65 ^-2.74 ^-4.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.69 ^0.29 ^-1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.04 ^-3.32 ^2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.42 ^0.34 ^4.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.83 ^-0.3 ^-4.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.64 ^1.22 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.32 ^2.73 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.66 ^0.21 ^-3.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.22 ^-3.73 ^3.57 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_021.mcfunction new file mode 100644 index 000000000..0cef835f9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_021.mcfunction @@ -0,0 +1,208 @@ +# frame 21 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.898 0 +# Circle +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^1.68 ^0.0 ^2.88 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^2.9 ^0.0 ^1.65 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^3.34 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^2.88 ^0.0 ^-1.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^1.65 ^0.0 ^-2.9 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^-0.02 ^0.0 ^-3.34 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^-1.68 ^0.0 ^-2.88 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^-2.9 ^0.0 ^-1.65 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^-3.34 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^-2.88 ^0.0 ^1.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^-1.65 ^0.0 ^2.9 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.664,0.0,0.0],scale:2.336} ^0.02 ^0.0 ^3.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.88 ^0.0 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.52 ^2.28 ^2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.34 ^1.59 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.8 ^-3.57 ^1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.16 ^0.92 ^-1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.69 ^-1.28 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.46 ^-3.43 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.37 ^3.5 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.78 ^1.06 ^-0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.39 ^0.63 ^-1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.64 ^-3.13 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.26 ^1.67 ^3.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.69 ^0.12 ^-1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.45 ^-2.72 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.81 ^0.52 ^3.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.36 ^0.6 ^-3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.48 ^1.8 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.18 ^0.25 ^-2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.63 ^-2.39 ^-2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.67 ^-0.8 ^2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.41 ^1.55 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.07 ^-2.89 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.21 ^-1.88 ^2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.67 ^0.88 ^-3.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.27 ^2.07 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.46 ^-1.78 ^-0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.58 ^-2.63 ^2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.85 ^0.12 ^-2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.85 ^1.69 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.06 ^-1.6 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.06 ^-0.84 ^-1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.61 ^-1.67 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.26 ^0.85 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.43 ^1.68 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.45 ^-2.81 ^2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.18 ^1.08 ^-4.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.02 ^0.03 ^1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.2 ^-3.24 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.06 ^-0.06 ^-4.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.31 ^1.92 ^3.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.56 ^1.44 ^1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.43 ^-3.31 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.11 ^-3.0 ^-3.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.4 ^2.94 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.35 ^0.47 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.19 ^0.15 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.68 ^2.22 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.63 ^-4.25 ^1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.66 ^1.55 ^1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.38 ^-3.14 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.57 ^-1.0 ^-2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-4.36 ^-0.21 ^-1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.83 ^1.6 ^1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.83 ^0.63 ^-3.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.43 ^-0.45 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.48 ^-3.3 ^2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.08 ^0.54 ^2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.8 ^1.08 ^-1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.29 ^1.87 ^-3.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.01 ^-4.47 ^1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.3 ^1.78 ^1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.83 ^-0.75 ^-2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.71 ^-4.24 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.32 ^2.42 ^-2.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.37 ^-2.34 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.2 ^3.51 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.77 ^2.81 ^-4.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.24 ^-0.78 ^4.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.81 ^-1.89 ^-0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.45 ^0.53 ^-2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^4.03 ^0.08 ^2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.64 ^3.79 ^-0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.47 ^-1.2 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.18 ^0.27 ^-3.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^4.71 ^-1.43 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.79 ^4.51 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.33 ^-2.44 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.24 ^0.47 ^2.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.12 ^4.38 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.25 ^-0.98 ^-5.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.37 ^1.44 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.74 ^-1.77 ^-3.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.5 ^-4.7 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.75 ^4.42 ^0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.76 ^-0.24 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.34 ^-1.71 ^2.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.61 ^3.07 ^1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.29 ^-2.78 ^-4.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.46 ^0.61 ^-1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.15 ^-3.44 ^2.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.34 ^0.79 ^4.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.12 ^-0.46 ^-4.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.53 ^1.05 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.22 ^2.47 ^0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.29 ^0.02 ^-3.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.86 ^-3.81 ^3.56 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_022.mcfunction new file mode 100644 index 000000000..abda3cfe1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_022.mcfunction @@ -0,0 +1,208 @@ +# frame 22 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.925 0 +# Circle +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^1.71 ^0.0 ^2.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^2.86 ^0.0 ^1.54 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^3.25 ^0.0 ^-0.1 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^2.76 ^0.0 ^-1.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^1.54 ^0.0 ^-2.86 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^-0.1 ^0.0 ^-3.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^-1.71 ^0.0 ^-2.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^-2.86 ^0.0 ^-1.54 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^-3.25 ^0.0 ^0.1 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^-2.76 ^0.0 ^1.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^-1.54 ^0.0 ^2.86 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.646,0.0,0.0],scale:2.354} ^0.1 ^0.0 ^3.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.55 ^0.0 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.37 ^1.97 ^2.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.27 ^1.41 ^-0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.54 ^-3.52 ^1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.24 ^0.66 ^-1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.71 ^-0.93 ^-0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.11 ^-3.35 ^1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.62 ^3.36 ^2.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.71 ^0.7 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.37 ^0.84 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.33 ^-3.24 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.57 ^1.56 ^3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.58 ^0.32 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.6 ^-2.69 ^1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.67 ^0.84 ^3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.61 ^0.5 ^-2.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.68 ^1.51 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.43 ^0.25 ^-2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.86 ^-2.38 ^-2.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.8 ^-1.04 ^2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.1 ^1.5 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.08 ^-2.78 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.3 ^-1.53 ^2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.83 ^0.59 ^-3.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.16 ^1.87 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.24 ^-1.71 ^-1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.36 ^-2.4 ^2.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.83 ^-0.21 ^-2.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.67 ^1.65 ^0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.72 ^-1.7 ^1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.9 ^-0.58 ^-2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.46 ^-1.95 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.11 ^0.47 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.38 ^1.83 ^1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.12 ^-3.03 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.56 ^1.03 ^-4.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.92 ^0.22 ^0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.34 ^-3.1 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.82 ^0.28 ^-4.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.64 ^1.82 ^3.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.54 ^1.32 ^0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.68 ^-3.01 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.28 ^-2.66 ^-3.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.64 ^2.66 ^0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.01 ^0.64 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.05 ^-0.22 ^-3.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.52 ^2.32 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.28 ^-4.33 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.4 ^1.59 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.97 ^-3.13 ^1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.51 ^-0.59 ^-2.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-4.26 ^-0.52 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.45 ^1.46 ^1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.11 ^0.4 ^-3.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.59 ^-0.42 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.42 ^-3.52 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.2 ^0.62 ^2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.84 ^0.7 ^-1.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.63 ^1.87 ^-3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.07 ^-4.54 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.18 ^1.39 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.57 ^-0.46 ^-2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.46 ^-4.19 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.29 ^2.18 ^-2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.11 ^-2.22 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.98 ^3.38 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.94 ^2.38 ^-4.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.37 ^-0.36 ^4.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.6 ^-1.84 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.08 ^0.8 ^-2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.69 ^-0.11 ^3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.31 ^4.08 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.04 ^-1.29 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.92 ^0.65 ^-3.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^4.58 ^-1.6 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.44 ^4.71 ^1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.49 ^-1.99 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.34 ^0.28 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.57 ^4.32 ^2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.54 ^-0.65 ^-5.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.2 ^1.08 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.9 ^-1.32 ^-3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.31 ^-4.58 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.11 ^4.21 ^0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.48 ^0.15 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.23 ^-2.0 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.3 ^3.35 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.15 ^-2.83 ^-4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.17 ^0.87 ^-0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.24 ^-3.5 ^1.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.23 ^1.23 ^4.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.46 ^-0.66 ^-4.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.34 ^0.86 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.07 ^2.19 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.89 ^-0.16 ^-3.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.43 ^-3.89 ^3.55 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_023.mcfunction new file mode 100644 index 000000000..6b28df7e2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_023.mcfunction @@ -0,0 +1,208 @@ +# frame 23 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.951 0 +# Circle +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^1.74 ^0.0 ^2.64 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^2.83 ^0.0 ^1.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^3.16 ^0.0 ^-0.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^2.64 ^0.0 ^-1.74 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^1.42 ^0.0 ^-2.83 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^-0.19 ^0.0 ^-3.16 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^-1.74 ^0.0 ^-2.64 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^-2.83 ^0.0 ^-1.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^-3.16 ^0.0 ^0.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^-2.64 ^0.0 ^1.74 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^-1.42 ^0.0 ^2.83 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.629,0.0,0.0],scale:2.371} ^0.19 ^0.0 ^3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.2 ^0.0 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.23 ^1.65 ^2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.17 ^1.22 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.27 ^-3.43 ^1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.25 ^0.42 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.67 ^-0.58 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.24 ^-3.24 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.86 ^3.19 ^2.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.58 ^0.37 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.3 ^1.02 ^-1.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.0 ^-3.3 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.89 ^1.44 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.42 ^0.48 ^-0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.73 ^-2.61 ^0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.53 ^1.13 ^3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.85 ^0.39 ^-2.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.82 ^1.19 ^0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.63 ^0.25 ^-2.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.05 ^-2.33 ^-1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.89 ^-1.27 ^2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.79 ^1.39 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.07 ^-2.62 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.37 ^-1.18 ^2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.98 ^0.28 ^-3.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.06 ^1.62 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.98 ^-1.6 ^-1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.15 ^-2.13 ^2.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.77 ^-0.55 ^-2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.5 ^1.55 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.36 ^-1.76 ^1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.7 ^-0.32 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.26 ^-2.23 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.89 ^0.12 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.29 ^1.94 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.78 ^-3.21 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.95 ^0.97 ^-4.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.75 ^0.37 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.45 ^-2.91 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.59 ^0.61 ^-4.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.94 ^1.7 ^3.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.45 ^1.17 ^0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.91 ^-2.68 ^1.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.43 ^-2.3 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.86 ^2.34 ^0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.63 ^0.75 ^0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.89 ^-0.57 ^-3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.32 ^2.39 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.07 ^-4.38 ^1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.17 ^1.56 ^1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.56 ^-3.06 ^0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.41 ^-0.19 ^-2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-4.11 ^-0.83 ^-1.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.1 ^1.28 ^1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.35 ^0.18 ^-2.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.7 ^-0.38 ^-1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.33 ^-3.7 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.44 ^0.66 ^1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.82 ^0.33 ^-1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.94 ^1.84 ^-3.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.16 ^-4.56 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.06 ^0.99 ^1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.28 ^-0.18 ^-2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.21 ^-4.09 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.22 ^1.91 ^-2.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.85 ^-2.02 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.74 ^3.2 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.08 ^1.92 ^-4.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.47 ^0.08 ^3.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.35 ^-1.72 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.67 ^1.05 ^-2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.31 ^-0.3 ^3.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.94 ^4.34 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.58 ^-1.32 ^0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.66 ^0.98 ^-3.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^4.4 ^-1.74 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.07 ^4.86 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.56 ^-1.52 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.37 ^0.09 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.99 ^4.2 ^1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.83 ^-0.3 ^-4.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.95 ^0.73 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.04 ^-0.87 ^-3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.1 ^-4.41 ^1.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.44 ^3.94 ^0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-2.13 ^0.47 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.07 ^-2.24 ^2.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.95 ^3.58 ^0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.6 ^-2.85 ^-4.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.83 ^1.05 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.33 ^-3.49 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.1 ^1.64 ^3.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.79 ^-0.86 ^-4.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-2.08 ^0.66 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.87 ^1.89 ^1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.47 ^-0.34 ^-4.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.02 ^-3.94 ^3.5 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_024.mcfunction new file mode 100644 index 000000000..d409d4dfe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_024.mcfunction @@ -0,0 +1,208 @@ +# frame 24 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 0.978 0 +# Circle +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^1.76 ^0.0 ^2.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^2.79 ^0.0 ^1.31 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^3.07 ^0.0 ^-0.26 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^2.53 ^0.0 ^-1.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^1.31 ^0.0 ^-2.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^-0.26 ^0.0 ^-3.07 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^-1.76 ^0.0 ^-2.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^-2.79 ^0.0 ^-1.31 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^-3.07 ^0.0 ^0.26 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^-2.53 ^0.0 ^1.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^-1.31 ^0.0 ^2.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.612,0.0,0.0],scale:2.388} ^0.26 ^0.0 ^3.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.84 ^0.0 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.09 ^1.32 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.03 ^1.01 ^-1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.01 ^-3.3 ^2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.19 ^0.19 ^-0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.58 ^-0.25 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.57 ^-3.09 ^1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.1 ^2.97 ^2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.38 ^0.08 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.19 ^1.16 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.67 ^-3.32 ^-0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.2 ^1.29 ^3.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.2 ^0.59 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.84 ^-2.48 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.38 ^1.41 ^3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.05 ^0.27 ^-2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.88 ^0.86 ^0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.78 ^0.25 ^-1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.21 ^-2.26 ^-1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.96 ^-1.48 ^2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.48 ^1.22 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.04 ^-2.41 ^-0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.4 ^-0.82 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.12 ^-0.04 ^-3.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.03 ^1.32 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.71 ^-1.47 ^-1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.07 ^-1.85 ^2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.68 ^-0.89 ^-2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.32 ^1.37 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.0 ^-1.78 ^1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.48 ^-0.06 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.03 ^-2.48 ^-0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.59 ^-0.17 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.15 ^2.01 ^0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.42 ^-3.34 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.33 ^0.9 ^-4.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.51 ^0.48 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.52 ^-2.67 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.35 ^0.92 ^-3.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.21 ^1.56 ^2.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.29 ^0.97 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.1 ^-2.31 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.58 ^-1.91 ^-3.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-4.03 ^2.0 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.23 ^0.8 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.73 ^-0.87 ^-2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.09 ^2.43 ^0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.43 ^-4.37 ^1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.03 ^1.44 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.17 ^-2.93 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.27 ^0.2 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.91 ^-1.14 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.18 ^1.05 ^1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.54 ^-0.04 ^-2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.76 ^-0.34 ^-1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.21 ^-3.84 ^1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.6 ^0.65 ^1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.74 ^-0.01 ^-1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.21 ^1.79 ^-2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.24 ^-4.53 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.03 ^0.61 ^1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.96 ^0.09 ^-2.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.03 ^-3.94 ^0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.12 ^1.62 ^-2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.58 ^-1.74 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.48 ^2.95 ^1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.21 ^1.46 ^-4.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.53 ^0.52 ^3.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.07 ^-1.52 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.23 ^1.25 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.89 ^-0.47 ^3.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.53 ^4.55 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.11 ^-1.26 ^0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.41 ^1.27 ^-3.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^4.17 ^-1.86 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.67 ^4.97 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.52 ^-1.05 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^3.32 ^-0.08 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.39 ^4.04 ^1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.09 ^0.05 ^-4.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.63 ^0.4 ^0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.14 ^-0.44 ^-3.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.89 ^-4.19 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.74 ^3.62 ^0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.72 ^0.7 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.89 ^-2.4 ^1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.58 ^3.76 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.05 ^-2.83 ^-4.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.44 ^1.13 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.4 ^-3.4 ^0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.95 ^2.02 ^3.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.09 ^-1.05 ^-4.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.74 ^0.46 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.62 ^1.57 ^1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.02 ^-0.51 ^-4.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.48 ^-3.94 ^3.41 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_025.mcfunction new file mode 100644 index 000000000..a6c36af9d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_025.mcfunction @@ -0,0 +1,208 @@ +# frame 25 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.005 0 +# Circle +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^1.78 ^0.0 ^2.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^2.75 ^0.0 ^1.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^2.98 ^0.0 ^-0.34 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^2.41 ^0.0 ^-1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^1.2 ^0.0 ^-2.75 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^-0.34 ^0.0 ^-2.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^-1.78 ^0.0 ^-2.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^-2.75 ^0.0 ^-1.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^-2.98 ^0.0 ^0.34 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^-2.41 ^0.0 ^1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^-1.2 ^0.0 ^2.75 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.595,0.0,0.0],scale:2.405} ^0.34 ^0.0 ^2.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.5 ^0.0 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.04 ^0.98 ^2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.84 ^0.8 ^-1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.29 ^-3.14 ^2.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.05 ^0.0 ^-0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.44 ^0.06 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.88 ^-2.9 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.33 ^2.72 ^2.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.12 ^-0.15 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.04 ^1.27 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.34 ^-3.29 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.51 ^1.14 ^3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.94 ^0.62 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.92 ^-2.31 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.24 ^1.65 ^2.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.23 ^0.15 ^-2.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.86 ^0.54 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.87 ^0.24 ^-1.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.33 ^-2.16 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.99 ^-1.69 ^1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.21 ^1.0 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.98 ^-2.17 ^-0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.39 ^-0.46 ^2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.25 ^-0.35 ^-3.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.09 ^0.98 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.41 ^-1.31 ^-1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.27 ^-1.55 ^2.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.56 ^-1.21 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.16 ^1.12 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.64 ^-1.76 ^1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.22 ^0.19 ^-2.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.76 ^-2.71 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.24 ^-0.37 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.98 ^2.02 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.05 ^-3.42 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.69 ^0.82 ^-4.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.21 ^0.52 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.55 ^-2.39 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.11 ^1.21 ^-3.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.46 ^1.4 ^2.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.07 ^0.74 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.25 ^-1.92 ^1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.71 ^-1.52 ^-3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-4.16 ^1.63 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.82 ^0.77 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.57 ^-1.14 ^-2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.82 ^2.43 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.79 ^-4.33 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.18 ^1.24 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.19 ^-2.75 ^0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.08 ^0.58 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.68 ^-1.44 ^-2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.39 ^0.8 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.68 ^-0.23 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.76 ^-0.3 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.07 ^-3.95 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.68 ^0.59 ^0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.6 ^-0.34 ^-1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.45 ^1.72 ^-2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.32 ^-4.46 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.1 ^0.27 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.62 ^0.33 ^-2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.27 ^-3.74 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.98 ^1.3 ^-3.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.33 ^-1.38 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.21 ^2.67 ^1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.32 ^0.99 ^-4.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.55 ^0.95 ^3.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.76 ^-1.24 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.78 ^1.41 ^-2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.46 ^-0.63 ^3.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.1 ^4.72 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.66 ^-1.11 ^0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.17 ^1.51 ^-2.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.89 ^-1.95 ^1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.27 ^5.02 ^1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.37 ^-0.61 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^3.21 ^-0.23 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.76 ^3.82 ^1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.34 ^0.4 ^-4.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.26 ^0.12 ^0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.21 ^-0.03 ^-3.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.67 ^-3.92 ^2.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.01 ^3.27 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.27 ^0.82 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.68 ^-2.5 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.19 ^3.87 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.48 ^-2.79 ^-4.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.03 ^1.1 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.45 ^-3.25 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.77 ^2.35 ^3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.36 ^-1.23 ^-3.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.34 ^0.27 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.34 ^1.24 ^1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.57 ^-0.66 ^-4.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.93 ^-3.9 ^3.28 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_026.mcfunction new file mode 100644 index 000000000..c380a8ea7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_026.mcfunction @@ -0,0 +1,256 @@ +# frame 26 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.033 0 +# Circle +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^1.79 ^0.0 ^2.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^2.7 ^0.0 ^1.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^2.88 ^0.0 ^-0.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^2.29 ^0.0 ^-1.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^1.09 ^0.0 ^-2.7 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^-0.41 ^0.0 ^-2.88 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^-1.79 ^0.0 ^-2.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^-2.7 ^0.0 ^-1.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^-2.88 ^0.0 ^0.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^-2.29 ^0.0 ^1.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^-1.09 ^0.0 ^2.7 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.578,0.0,0.0],scale:2.422} ^0.41 ^0.0 ^2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.21 ^0.0 ^-0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.16 ^0.65 ^2.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.63 ^0.59 ^-1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.57 ^-2.94 ^2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.78 ^1.29 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.83 ^-0.13 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.25 ^0.34 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.16 ^-2.68 ^1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.55 ^2.45 ^2.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.03 ^1.59 ^-3.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.8 ^-0.29 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.84 ^1.33 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.02 ^-3.22 ^-0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.79 ^0.97 ^3.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.66 ^3.2 ^-1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.65 ^0.57 ^-0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.96 ^-2.09 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.09 ^1.86 ^2.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.36 ^0.03 ^-1.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.76 ^-2.06 ^-2.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.74 ^0.26 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.91 ^0.22 ^-1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.42 ^-2.03 ^-0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.0 ^-1.87 ^1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.58 ^3.96 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.0 ^0.72 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.91 ^-1.9 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.35 ^-0.11 ^2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.37 ^-0.66 ^-3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.88 ^0.95 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.12 ^0.63 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.11 ^-1.14 ^-1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.46 ^-1.24 ^2.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.42 ^-1.53 ^-2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.18 ^2.92 ^-1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.03 ^0.82 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.31 ^-1.69 ^1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.95 ^0.42 ^-2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.47 ^-2.91 ^-0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.75 ^1.89 ^3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.85 ^-0.47 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.77 ^1.97 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.69 ^-3.45 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.04 ^0.73 ^-3.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.69 ^3.56 ^1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.86 ^0.48 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.54 ^-2.07 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.11 ^1.47 ^-3.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.66 ^1.23 ^2.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.82 ^-2.44 ^2.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.79 ^0.5 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.35 ^-1.52 ^1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.82 ^-1.11 ^-3.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-4.25 ^1.25 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.3 ^0.78 ^3.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.44 ^0.66 ^0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.4 ^-1.35 ^-2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.52 ^2.39 ^1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.14 ^-4.23 ^0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^4.16 ^0.26 ^-1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.26 ^0.95 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.52 ^-2.51 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.86 ^0.93 ^-2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.4 ^-1.72 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.1 ^0.5 ^4.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.49 ^0.53 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.76 ^-0.4 ^-1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.7 ^-0.25 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.91 ^-4.01 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.07 ^3.34 ^0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.66 ^0.48 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.41 ^-0.62 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.64 ^1.62 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.4 ^-4.34 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.69 ^1.21 ^3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.14 ^0.0 ^0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.26 ^0.54 ^-2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.49 ^-3.5 ^1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.81 ^0.98 ^-3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.49 ^3.69 ^1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.12 ^-0.97 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.93 ^2.33 ^1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.4 ^0.53 ^-4.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.54 ^1.37 ^3.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-4.25 ^-2.1 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.47 ^-0.91 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.32 ^1.52 ^-2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.0 ^-0.78 ^3.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.64 ^4.84 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.6 ^-2.82 ^-4.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.28 ^-0.88 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.06 ^1.69 ^-2.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.56 ^-2.01 ^1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.13 ^5.02 ^1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-4.68 ^-1.4 ^-2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-1.11 ^-0.23 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^3.01 ^-0.37 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.08 ^3.56 ^1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.56 ^0.75 ^-4.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.28 ^-5.08 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.85 ^-0.09 ^0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.24 ^0.34 ^-2.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.45 ^-3.6 ^2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.22 ^2.89 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.91 ^2.46 ^-2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.81 ^0.81 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.44 ^-2.52 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.78 ^3.93 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.9 ^-2.72 ^-3.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.94 ^-2.63 ^2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.63 ^0.96 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.49 ^-3.02 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.57 ^2.64 ^3.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.6 ^-1.4 ^-3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-4.76 ^-1.85 ^-1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.91 ^0.1 ^-0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.02 ^0.9 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.11 ^-0.8 ^-4.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.37 ^-3.82 ^3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.78 ^3.68 ^2.62 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_027.mcfunction new file mode 100644 index 000000000..ee40cd73f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_027.mcfunction @@ -0,0 +1,256 @@ +# frame 27 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.06 0 +# Circle +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^1.8 ^0.0 ^2.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^2.65 ^0.0 ^0.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^2.78 ^0.0 ^-0.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^2.18 ^0.0 ^-1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^0.99 ^0.0 ^-2.65 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^-0.47 ^0.0 ^-2.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^-1.8 ^0.0 ^-2.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^-2.65 ^0.0 ^-0.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^-2.78 ^0.0 ^0.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^-2.18 ^0.0 ^1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^-0.99 ^0.0 ^2.65 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.56,0.0,0.0],scale:2.44} ^0.47 ^0.0 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.01 ^0.0 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.26 ^0.33 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.38 ^0.38 ^-1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.83 ^-2.72 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.85 ^1.02 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.54 ^-0.18 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.0 ^0.58 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.41 ^-2.42 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.74 ^2.15 ^2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.13 ^1.81 ^-3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.47 ^-0.32 ^-0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.61 ^1.34 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.28 ^-3.09 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.05 ^0.8 ^3.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.76 ^3.26 ^-1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.36 ^0.44 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.97 ^-1.83 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.04 ^2.02 ^2.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.46 ^-0.09 ^-1.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.67 ^-1.91 ^-2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.54 ^0.04 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.88 ^0.2 ^-0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.45 ^-1.87 ^-0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.97 ^-2.03 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.65 ^3.91 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.13 ^0.43 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.81 ^-1.59 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.28 ^0.23 ^2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.47 ^-0.96 ^-3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.81 ^1.12 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.12 ^0.31 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.81 ^-0.95 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.64 ^-0.93 ^2.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.25 ^-1.82 ^-2.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.95 ^3.01 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.05 ^0.49 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.0 ^-1.58 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.66 ^0.64 ^-2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.16 ^-3.08 ^-0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.01 ^1.88 ^3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.46 ^-0.45 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.53 ^1.87 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.33 ^-3.41 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.36 ^0.64 ^-3.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.79 ^3.55 ^0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.49 ^0.38 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.47 ^-1.72 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.32 ^1.69 ^-3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.82 ^1.05 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.76 ^-2.21 ^2.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.48 ^0.26 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.39 ^-1.11 ^1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.92 ^-0.71 ^-3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-4.29 ^0.86 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.16 ^1.06 ^3.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.13 ^0.48 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.24 ^-1.48 ^-1.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.19 ^2.32 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.47 ^-4.09 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^4.25 ^0.05 ^-1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.26 ^0.6 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.79 ^-2.21 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.6 ^1.25 ^-2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.09 ^-1.98 ^-2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.37 ^0.63 ^4.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.46 ^0.27 ^0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.77 ^-0.54 ^-1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.59 ^-0.2 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.73 ^-4.02 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.15 ^3.16 ^1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.52 ^0.33 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.16 ^-0.85 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.77 ^1.5 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.47 ^-4.17 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.57 ^0.95 ^3.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.13 ^-0.16 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.91 ^0.71 ^-2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.7 ^-3.2 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.62 ^0.65 ^-3.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.21 ^3.85 ^1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.03 ^-0.55 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.65 ^1.96 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.45 ^0.08 ^-3.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.49 ^1.78 ^3.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-4.01 ^-2.29 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.2 ^-0.54 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.88 ^1.57 ^-2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.53 ^-0.9 ^3.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.17 ^4.9 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.93 ^-2.67 ^-4.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.01 ^-0.58 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.25 ^1.78 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.19 ^-2.03 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.52 ^4.96 ^0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-4.82 ^-1.2 ^-1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.75 ^0.04 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.74 ^-0.47 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.36 ^3.25 ^1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.75 ^1.08 ^-4.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.2 ^-5.16 ^1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.45 ^-0.2 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.23 ^0.65 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.24 ^-3.24 ^2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^4.39 ^2.48 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.81 ^2.75 ^-2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.39 ^0.65 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.18 ^-2.46 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.36 ^3.92 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.3 ^-2.62 ^-3.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-4.06 ^-2.69 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.27 ^0.69 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.51 ^-2.72 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.36 ^2.87 ^2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.79 ^-1.55 ^-2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-4.67 ^-1.73 ^-1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.48 ^-0.01 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.67 ^0.58 ^2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.65 ^-0.92 ^-3.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.79 ^-3.7 ^2.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.97 ^3.4 ^2.75 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_028.mcfunction new file mode 100644 index 000000000..c335c3eb1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_028.mcfunction @@ -0,0 +1,256 @@ +# frame 28 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.088 0 +# Circle +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^1.8 ^0.0 ^2.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^2.59 ^0.0 ^0.89 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^2.69 ^0.0 ^-0.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^2.06 ^0.0 ^-1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^0.89 ^0.0 ^-2.59 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^-0.53 ^0.0 ^-2.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^-1.8 ^0.0 ^-2.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^-2.59 ^0.0 ^-0.89 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^-2.69 ^0.0 ^0.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^-2.06 ^0.0 ^1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^-0.89 ^0.0 ^2.59 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.543,0.0,0.0],scale:2.457} ^0.53 ^0.0 ^2.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.09 ^0.0 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.33 ^0.05 ^1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.11 ^0.17 ^-2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.08 ^-2.47 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.92 ^0.7 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.23 ^-0.14 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.72 ^0.76 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.63 ^-2.14 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.91 ^1.84 ^2.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.25 ^2.08 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.16 ^-0.22 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.35 ^1.3 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.57 ^-2.93 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.28 ^0.62 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.87 ^3.32 ^-1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.11 ^0.22 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.95 ^-1.53 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.17 ^2.15 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.52 ^-0.2 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.56 ^-1.74 ^-2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.26 ^-0.06 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.79 ^0.17 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.45 ^-1.69 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.9 ^-2.17 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.75 ^3.85 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.13 ^0.15 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.7 ^-1.26 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.17 ^0.54 ^1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.55 ^-1.24 ^-3.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.72 ^1.32 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.08 ^0.06 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.51 ^-0.74 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.79 ^-0.62 ^2.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.06 ^-2.09 ^-2.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.65 ^3.11 ^-1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.07 ^0.17 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.27 ^-1.42 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.35 ^0.83 ^-2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.82 ^-3.2 ^-0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.33 ^1.87 ^3.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.13 ^-0.27 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.26 ^1.71 ^-0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.02 ^-3.33 ^0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.64 ^0.54 ^-3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.91 ^3.52 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.16 ^0.19 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.36 ^-1.36 ^1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.52 ^1.87 ^-2.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.94 ^0.85 ^1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.69 ^-1.93 ^3.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.17 ^0.07 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.38 ^-0.72 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.0 ^-0.32 ^-3.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-4.28 ^0.47 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.98 ^1.4 ^3.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.04 ^0.22 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.09 ^-1.55 ^-1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.85 ^2.21 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.77 ^-3.91 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^4.34 ^-0.2 ^-1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.17 ^0.24 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.99 ^-1.87 ^0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.32 ^1.53 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.76 ^-2.21 ^-2.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.69 ^0.78 ^4.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.28 ^0.06 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.72 ^-0.63 ^-1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.43 ^-0.15 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.53 ^-3.99 ^-0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.25 ^2.94 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.27 ^0.15 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.86 ^-1.01 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.85 ^1.37 ^-1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.54 ^-3.96 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.42 ^0.64 ^3.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.08 ^-0.17 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.57 ^0.83 ^-1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.88 ^-2.87 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.4 ^0.31 ^-3.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.87 ^4.03 ^1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.08 ^-0.18 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.38 ^1.57 ^1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.48 ^-0.35 ^-3.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.39 ^2.15 ^2.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.7 ^-2.52 ^2.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.02 ^-0.19 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.46 ^1.55 ^-1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.07 ^-1.0 ^3.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.7 ^4.9 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.31 ^-2.48 ^-4.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.12 ^-0.25 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.42 ^1.8 ^-1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.79 ^-2.01 ^1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.9 ^4.85 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-4.98 ^-0.95 ^-1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.33 ^0.14 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.41 ^-0.55 ^-0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.58 ^2.91 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.91 ^1.4 ^-3.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.1 ^-5.24 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.12 ^-0.17 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.17 ^0.91 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.03 ^-2.84 ^2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^4.51 ^2.05 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.69 ^3.1 ^-2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.07 ^0.35 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.91 ^-2.32 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.94 ^3.84 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.66 ^-2.49 ^-3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-4.2 ^-2.76 ^1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.02 ^0.33 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.51 ^-2.35 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.14 ^3.04 ^2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.93 ^-1.67 ^-2.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-4.56 ^-1.58 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.13 ^-0.06 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.3 ^0.27 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.21 ^-1.02 ^-3.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.18 ^-3.53 ^2.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.19 ^3.05 ^2.91 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_029.mcfunction new file mode 100644 index 000000000..886e57573 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_029.mcfunction @@ -0,0 +1,256 @@ +# frame 29 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.116 0 +# Circle +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^1.8 ^0.0 ^1.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^2.53 ^0.0 ^0.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^2.59 ^0.0 ^-0.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^1.95 ^0.0 ^-1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^0.79 ^0.0 ^-2.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^-0.58 ^0.0 ^-2.59 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^-1.8 ^0.0 ^-1.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^-2.53 ^0.0 ^-0.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^-2.59 ^0.0 ^0.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^-1.95 ^0.0 ^1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^-0.79 ^0.0 ^2.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.526,0.0,0.0],scale:2.474} ^0.58 ^0.0 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.38 ^-0.2 ^1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.82 ^-0.03 ^-2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.31 ^-2.19 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.95 ^0.36 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.39 ^0.88 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.8 ^-1.83 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.05 ^1.51 ^2.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.37 ^2.33 ^-3.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.07 ^1.21 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.82 ^-2.71 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.48 ^0.43 ^2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.96 ^3.35 ^-0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.88 ^-1.21 ^-0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.29 ^2.23 ^1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.54 ^-0.31 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.42 ^-1.54 ^-2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.63 ^0.14 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.4 ^-1.49 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.81 ^-2.28 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^0.83 ^3.75 ^1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.57 ^-0.93 ^-1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.02 ^0.83 ^1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.61 ^-1.51 ^-2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.58 ^1.52 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.24 ^-0.54 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.92 ^-0.31 ^2.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.85 ^-2.32 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.33 ^3.18 ^-1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.49 ^-1.22 ^0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.04 ^1.0 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.47 ^-3.29 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.64 ^1.84 ^3.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.97 ^1.5 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.34 ^-3.18 ^0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.9 ^0.43 ^-3.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.0 ^3.46 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.21 ^-0.98 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.69 ^2.0 ^-2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-4.0 ^0.66 ^1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.59 ^-1.62 ^3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.31 ^-0.35 ^1.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.05 ^0.05 ^-3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-4.22 ^0.08 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.78 ^1.74 ^3.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.04 ^-1.54 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.49 ^2.07 ^2.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.05 ^-3.68 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^4.4 ^-0.46 ^-1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.12 ^-1.5 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.01 ^1.77 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.39 ^-2.41 ^-2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.0 ^0.92 ^4.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.6 ^-0.69 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.21 ^-0.1 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.32 ^-3.92 ^-0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.32 ^2.67 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.53 ^-1.11 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.87 ^1.21 ^-0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.6 ^-3.7 ^-1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.24 ^0.31 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.26 ^0.89 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.03 ^-2.51 ^1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.15 ^-0.02 ^-3.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.5 ^4.17 ^1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.14 ^1.16 ^1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.48 ^-0.74 ^-3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.27 ^2.49 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.35 ^-2.72 ^3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.08 ^1.46 ^-1.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.61 ^-1.08 ^3.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.23 ^4.85 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.69 ^-2.25 ^-3.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.53 ^1.74 ^-1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.36 ^-1.96 ^2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.27 ^4.69 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-5.1 ^-0.69 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^2.01 ^-0.59 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.73 ^2.53 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.03 ^1.69 ^-3.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.0 ^-5.26 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.07 ^1.08 ^-1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.17 ^-2.42 ^2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^4.57 ^1.6 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.53 ^3.42 ^-1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.65 ^-2.09 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.53 ^3.7 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.98 ^-2.34 ^-3.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-4.3 ^-2.8 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.48 ^-1.94 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.91 ^3.14 ^1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^4.02 ^-1.78 ^-2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-4.39 ^-1.4 ^-2.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.93 ^0.0 ^1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.21 ^-1.09 ^-3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.54 ^-3.33 ^2.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.37 ^2.66 ^3.05 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_030.mcfunction new file mode 100644 index 000000000..06e295e4c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_030.mcfunction @@ -0,0 +1,256 @@ +# frame 30 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.144 0 +# Circle +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^1.79 ^0.0 ^1.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^2.47 ^0.0 ^0.7 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^2.49 ^0.0 ^-0.63 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^1.84 ^0.0 ^-1.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^0.7 ^0.0 ^-2.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^-0.63 ^0.0 ^-2.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^-1.79 ^0.0 ^-1.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^-2.47 ^0.0 ^-0.7 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^-2.49 ^0.0 ^0.63 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^-1.84 ^0.0 ^1.79 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^-0.7 ^0.0 ^2.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.509,0.0,0.0],scale:2.491} ^0.63 ^0.0 ^2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.4 ^-0.38 ^1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.5 ^-0.21 ^-2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.52 ^-1.9 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.94 ^0.01 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.05 ^0.93 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.91 ^-1.51 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.17 ^1.16 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.48 ^2.56 ^-2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.78 ^1.06 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.04 ^-2.45 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.64 ^0.24 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.03 ^3.34 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.77 ^-0.88 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.4 ^2.25 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.51 ^-0.42 ^-0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.24 ^-1.32 ^-2.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.4 ^0.11 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.3 ^-1.28 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.68 ^-2.35 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^0.91 ^3.6 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.43 ^-0.6 ^-1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.84 ^1.07 ^1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.65 ^-1.74 ^-2.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.4 ^1.69 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.0 ^-0.34 ^-1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.02 ^-0.02 ^2.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.62 ^-2.52 ^-1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.99 ^3.21 ^-2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.63 ^-0.99 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.73 ^1.13 ^-2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.11 ^-3.33 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.94 ^1.78 ^2.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.69 ^1.24 ^-0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.63 ^-2.98 ^0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.1 ^0.32 ^-2.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.05 ^3.35 ^-0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.01 ^-0.62 ^1.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.84 ^2.08 ^-2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-4.02 ^0.46 ^0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.46 ^-1.29 ^3.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.17 ^-0.03 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.07 ^0.39 ^-2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-4.1 ^-0.3 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.56 ^2.06 ^3.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.14 ^-1.43 ^-0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.13 ^1.9 ^2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.3 ^-3.42 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^4.4 ^-0.71 ^-0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.16 ^-1.11 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.67 ^1.94 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.01 ^-2.57 ^-2.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.3 ^1.06 ^3.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.41 ^-0.69 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.93 ^-0.06 ^0.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.1 ^-3.79 ^-1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.35 ^2.38 ^1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.17 ^-1.12 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.83 ^1.04 ^-0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.64 ^-3.41 ^-2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.04 ^-0.03 ^4.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.01 ^0.89 ^-1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.15 ^-2.12 ^1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.88 ^-0.34 ^-3.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.11 ^4.26 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.06 ^0.76 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.45 ^-1.09 ^-3.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.1 ^2.79 ^2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.96 ^-2.9 ^3.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.23 ^1.3 ^-1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.17 ^-1.13 ^3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.23 ^4.74 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.04 ^-2.0 ^-3.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.6 ^1.59 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.91 ^-1.87 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.6 ^4.46 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-5.16 ^-0.42 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.58 ^-0.59 ^-0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.82 ^2.12 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.1 ^1.96 ^-3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.11 ^-5.23 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.92 ^1.15 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.34 ^-1.97 ^2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^4.57 ^1.14 ^-0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.32 ^3.71 ^-1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.39 ^-1.78 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.13 ^3.48 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.26 ^-2.15 ^-2.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-4.35 ^-2.81 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.43 ^-1.49 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.68 ^3.16 ^1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^4.06 ^-1.86 ^-1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-4.17 ^-1.21 ^-2.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.58 ^-0.22 ^1.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.59 ^-1.13 ^-3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.85 ^-3.09 ^2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.53 ^2.23 ^3.15 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_031.mcfunction new file mode 100644 index 000000000..9e29a0051 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_031.mcfunction @@ -0,0 +1,256 @@ +# frame 31 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.173 0 +# Circle +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^1.78 ^0.0 ^1.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^2.41 ^0.0 ^0.61 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^2.39 ^0.0 ^-0.67 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^1.73 ^0.0 ^-1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^0.61 ^0.0 ^-2.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^-0.67 ^0.0 ^-2.39 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^-1.78 ^0.0 ^-1.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^-2.41 ^0.0 ^-0.61 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^-2.39 ^0.0 ^0.67 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^-1.73 ^0.0 ^1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^-0.61 ^0.0 ^2.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.491,0.0,0.0],scale:2.509} ^0.67 ^0.0 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.38 ^-0.5 ^0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.18 ^-0.37 ^-2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.71 ^-1.58 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.89 ^-0.34 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.006 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.71 ^0.89 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.98 ^-1.17 ^0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.25 ^0.82 ^2.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.6 ^2.77 ^-2.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.012 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.49 ^0.86 ^0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.21 ^-2.16 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.77 ^0.06 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.08 ^3.3 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.018 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.63 ^-0.56 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.48 ^2.22 ^1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.44 ^-0.51 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.05 ^-1.08 ^-3.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.024 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.11 ^0.08 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.16 ^-1.05 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.52 ^-2.4 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.98 ^3.42 ^1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.030 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.29 ^-0.31 ^-1.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.64 ^1.27 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.67 ^-1.95 ^-2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.18 ^1.86 ^-1.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.036 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.18 ^-0.16 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.09 ^0.24 ^2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.38 ^-2.69 ^-1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.65 ^3.21 ^-2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.042 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.69 ^-0.73 ^0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.43 ^1.23 ^-2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.75 ^-3.33 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.21 ^1.71 ^2.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.048 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.41 ^0.94 ^-0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.89 ^-2.72 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.26 ^0.22 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.08 ^3.21 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.054 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.78 ^-0.3 ^1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.95 ^2.11 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.98 ^0.26 ^0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.3 ^-0.94 ^3.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.060 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.97 ^0.22 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.07 ^0.7 ^-2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.94 ^-0.67 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.32 ^2.36 ^3.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.066 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.21 ^-1.24 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.77 ^1.69 ^2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.51 ^-3.12 ^-0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^4.36 ^-0.96 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.072 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.09 ^-0.72 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.33 ^2.06 ^-1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.61 ^-2.7 ^-2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.57 ^1.19 ^3.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.078 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.15 ^-0.64 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.62 ^-0.01 ^1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.87 ^-3.63 ^-1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.35 ^2.06 ^2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.084 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.8 ^-1.04 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.73 ^0.86 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.68 ^-3.08 ^-2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.81 ^-0.37 ^4.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.090 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.22 ^0.82 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.23 ^-1.71 ^1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.6 ^-0.64 ^-3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.71 ^4.31 ^1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.096 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.22 ^0.4 ^1.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.38 ^-1.38 ^-2.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.9 ^3.05 ^1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.54 ^-3.05 ^3.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.102 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.45 ^1.08 ^-0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.23 ^-1.15 ^3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.68 ^4.57 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.36 ^-1.73 ^-3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.108 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.6 ^1.34 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.45 ^-1.74 ^2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.91 ^4.19 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-5.17 ^-0.14 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.114 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.11 ^-0.54 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.84 ^1.7 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.14 ^2.19 ^-2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.21 ^-5.14 ^-0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.120 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.74 ^1.12 ^-0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.5 ^-1.52 ^2.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^4.51 ^0.69 ^-0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.08 ^3.96 ^-1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.126 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.16 ^-1.4 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.23 ^3.21 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.48 ^-1.95 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-4.35 ^-2.8 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.132 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.36 ^-1.03 ^-1.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.45 ^3.11 ^1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^4.05 ^-1.92 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.91 ^-1.0 ^-3.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.138 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.26 ^-0.37 ^1.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.93 ^-1.14 ^-2.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.12 ^-2.83 ^1.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.65 ^1.78 ^3.22 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_032.mcfunction new file mode 100644 index 000000000..5fb9e9702 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_032.mcfunction @@ -0,0 +1,256 @@ +# frame 32 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.201 0 +# Circle +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^1.76 ^0.0 ^1.62 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^2.34 ^0.0 ^0.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^2.29 ^0.0 ^-0.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^1.62 ^0.0 ^-1.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^0.53 ^0.0 ^-2.34 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^-0.71 ^0.0 ^-2.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^-1.76 ^0.0 ^-1.62 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^-2.34 ^0.0 ^-0.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^-2.29 ^0.0 ^0.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^-1.62 ^0.0 ^1.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^-0.53 ^0.0 ^2.34 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.474,0.0,0.0],scale:2.526} ^0.71 ^0.0 ^2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.32 ^-0.52 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.86 ^-0.51 ^-2.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.86 ^-1.26 ^2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.8 ^-0.69 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.42 ^1.01 ^-3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.38 ^0.76 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.98 ^-0.84 ^0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.3 ^0.47 ^2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.7 ^2.94 ^-2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-2.21 ^-3.21 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.24 ^0.63 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.34 ^-1.84 ^0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.85 ^-0.12 ^1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.11 ^3.22 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.01 ^-3.72 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.46 ^-0.27 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.55 ^2.13 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.31 ^-0.6 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.83 ^-0.84 ^-3.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.0 ^2.46 ^2.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.79 ^0.04 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.98 ^-0.81 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.33 ^-2.4 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.04 ^3.2 ^1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.62 ^-1.57 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.16 ^-0.06 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.41 ^1.42 ^1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.66 ^-2.12 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.93 ^2.0 ^-1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.22 ^0.69 ^3.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.28 ^-0.02 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.12 ^0.48 ^1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.13 ^-2.8 ^-1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.29 ^3.18 ^-2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.26 ^-0.44 ^3.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.66 ^-0.47 ^0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.15 ^1.28 ^-1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.39 ^-3.28 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.46 ^1.62 ^2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.31 ^1.64 ^-2.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.17 ^0.62 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.09 ^-2.42 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.37 ^0.11 ^-1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.07 ^3.04 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.41 ^-4.1 ^2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.53 ^-0.03 ^0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.03 ^2.08 ^-1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.88 ^0.06 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.12 ^-0.59 ^3.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.46 ^1.81 ^-3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.72 ^0.36 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.04 ^0.96 ^-2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.73 ^-1.01 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.07 ^2.63 ^3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^2.2 ^-0.83 ^-3.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.23 ^-0.96 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.42 ^1.46 ^2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.67 ^-2.78 ^-0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^4.28 ^-1.2 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-1.99 ^3.69 ^1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.92 ^-0.37 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.98 ^2.12 ^-1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.2 ^-2.78 ^-2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.82 ^1.31 ^3.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.66 ^2.12 ^-1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.83 ^-0.53 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.26 ^0.03 ^1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.64 ^-3.41 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.31 ^1.72 ^2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-4.54 ^0.81 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.45 ^-0.87 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.56 ^0.68 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.71 ^-2.71 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.57 ^-0.7 ^4.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.4 ^2.73 ^-1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.34 ^0.68 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.27 ^-1.3 ^1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.31 ^-0.93 ^-3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.3 ^4.32 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.25 ^-3.72 ^2.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.3 ^0.1 ^1.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.29 ^-1.61 ^-2.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.66 ^3.25 ^1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.09 ^-3.17 ^3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.83 ^-0.6 ^-5.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.55 ^0.8 ^-0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.59 ^-1.13 ^2.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.09 ^4.33 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.64 ^-1.44 ^-3.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^1.82 ^-2.35 ^4.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.53 ^1.01 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.0 ^-1.58 ^2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.18 ^3.87 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-5.12 ^0.14 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^3.36 ^-3.61 ^1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.66 ^-0.44 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.77 ^1.27 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.12 ^2.38 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.31 ^-5.0 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-3.57 ^3.33 ^2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.52 ^0.97 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.62 ^-1.06 ^2.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^4.39 ^0.24 ^-0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.81 ^4.17 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^-0.95 ^-4.18 ^3.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.01 ^-0.98 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.55 ^2.87 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.65 ^-1.73 ^-1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-4.31 ^-2.75 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.76 ^5.19 ^0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.27 ^-0.58 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.23 ^2.99 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.98 ^-1.94 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.61 ^-0.79 ^-3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.51 ^3.84 ^3.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.01 ^-0.43 ^1.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.21 ^-1.12 ^-2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.33 ^-2.52 ^1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.72 ^1.32 ^3.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[1.0,0.0,0.0],to_color:[0.4,0.0,0.0],scale:0.01} ^0.06 ^-0.19 ^-5.3 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_033.mcfunction new file mode 100644 index 000000000..9d6ce34f3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_033.mcfunction @@ -0,0 +1,256 @@ +# frame 33 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.229 0 +# Circle +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^1.74 ^0.0 ^1.52 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^2.27 ^0.0 ^0.45 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^2.19 ^0.0 ^-0.75 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^1.52 ^0.0 ^-1.74 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^0.45 ^0.0 ^-2.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^-0.75 ^0.0 ^-2.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^-1.74 ^0.0 ^-1.52 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^-2.27 ^0.0 ^-0.45 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^-2.19 ^0.0 ^0.75 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^-1.52 ^0.0 ^1.74 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^-0.45 ^0.0 ^2.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.457,0.0,0.0],scale:2.543} ^0.75 ^0.0 ^2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.23 ^-0.43 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.54 ^-0.61 ^-1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.98 ^-0.93 ^2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.66 ^-1.02 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.19 ^1.1 ^-3.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.12 ^0.54 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.92 ^-0.52 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.31 ^0.13 ^2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.8 ^3.08 ^-2.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-2.33 ^-3.16 ^0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.04 ^0.37 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.41 ^-1.5 ^0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.89 ^-0.28 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.12 ^3.11 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.22 ^-3.6 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.27 ^-0.04 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.59 ^1.98 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.15 ^-0.67 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.6 ^-0.59 ^-3.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.26 ^2.42 ^2.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.44 ^0.02 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.75 ^-0.58 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.12 ^-2.38 ^-0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.09 ^2.95 ^2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.71 ^-1.31 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.05 ^0.09 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.16 ^1.5 ^0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.63 ^-2.25 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.66 ^2.11 ^-1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.01 ^0.84 ^3.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.29 ^0.07 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.12 ^0.67 ^1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.87 ^-2.88 ^-1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.06 ^3.11 ^-2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.14 ^-0.2 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.51 ^-0.22 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.11 ^1.29 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.04 ^-3.19 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.69 ^1.51 ^2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.29 ^1.87 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.0 ^0.32 ^-0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.24 ^-2.07 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.43 ^0.0 ^-1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.03 ^2.84 ^-1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.68 ^-3.98 ^2.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.28 ^0.13 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.07 ^1.98 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.74 ^-0.13 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.92 ^-0.24 ^3.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.75 ^1.73 ^-3.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.44 ^0.38 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.98 ^1.16 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.47 ^-1.32 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.81 ^2.88 ^3.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^2.46 ^-0.73 ^-3.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.2 ^-0.62 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.1 ^1.21 ^2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.79 ^-2.42 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^4.15 ^-1.42 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.71 ^3.82 ^1.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.65 ^-0.09 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.64 ^2.09 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.8 ^-2.82 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.03 ^1.41 ^2.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.67 ^2.28 ^-1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.49 ^-0.37 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.87 ^0.06 ^1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.4 ^-3.16 ^-1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.23 ^1.37 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-4.46 ^1.09 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.15 ^-0.6 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.33 ^0.49 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.73 ^-2.33 ^-2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.31 ^-1.02 ^4.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.35 ^2.9 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.35 ^0.46 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.27 ^-0.89 ^1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.01 ^-1.19 ^-3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.11 ^4.28 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.12 ^-3.53 ^2.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.29 ^-0.1 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.16 ^-1.76 ^-1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.4 ^3.4 ^1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.62 ^-3.25 ^3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.56 ^-0.85 ^-5.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.51 ^0.48 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.89 ^-1.08 ^2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.48 ^4.05 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.88 ^-1.14 ^-3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^1.69 ^-2.66 ^4.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.39 ^0.63 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.57 ^-1.39 ^2.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.4 ^3.5 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-5.01 ^0.41 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^3.08 ^-3.84 ^1.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.27 ^-0.3 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.63 ^0.85 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.07 ^2.53 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.4 ^-4.81 ^-1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-3.73 ^3.02 ^2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.3 ^0.7 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.72 ^-0.63 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^4.21 ^-0.2 ^-0.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.52 ^4.33 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-1.31 ^-4.09 ^3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.12 ^-0.54 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.82 ^2.48 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.76 ^-1.49 ^-1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-4.23 ^-2.67 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.43 ^5.18 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.16 ^-0.21 ^-0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.03 ^2.78 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.86 ^-1.94 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.27 ^-0.57 ^-3.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^0.14 ^3.88 ^3.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.14 ^-0.39 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.42 ^-1.07 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.49 ^-2.2 ^1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.76 ^0.84 ^3.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.977,0.0,0.028],to_color:[0.408,0.006,0.0],scale:0.0112} ^-0.22 ^0.05 ^-5.28 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_034.mcfunction new file mode 100644 index 000000000..ca29197c3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_034.mcfunction @@ -0,0 +1,256 @@ +# frame 34 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.258 0 +# Circle +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^1.72 ^0.0 ^1.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^2.2 ^0.0 ^0.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^2.09 ^0.0 ^-0.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^1.42 ^0.0 ^-1.72 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^0.37 ^0.0 ^-2.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^-0.78 ^0.0 ^-2.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^-1.72 ^0.0 ^-1.42 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^-2.2 ^0.0 ^-0.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^-2.09 ^0.0 ^0.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^-1.42 ^0.0 ^1.72 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^-0.37 ^0.0 ^2.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.44,0.0,0.0],scale:2.56} ^0.78 ^0.0 ^2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.11 ^-0.24 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.25 ^-0.68 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.06 ^-0.61 ^2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.49 ^-1.33 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.91 ^1.21 ^-3.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.03 ^0.25 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.8 ^-0.22 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.28 ^-0.19 ^2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.88 ^3.18 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-2.48 ^-3.1 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.05 ^0.13 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.42 ^-1.14 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.87 ^-0.44 ^1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.1 ^2.97 ^0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.47 ^-3.44 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.1 ^0.06 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.6 ^1.78 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.95 ^-0.73 ^0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.35 ^-0.34 ^-3.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.57 ^2.38 ^2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.14 ^-0.0 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.48 ^-0.35 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.88 ^-2.31 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.12 ^2.67 ^2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.81 ^-1.0 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.01 ^0.12 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.9 ^1.52 ^0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.57 ^-2.34 ^-1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.36 ^2.2 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.75 ^1.02 ^3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.19 ^0.08 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.07 ^0.81 ^1.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.61 ^-2.9 ^-1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.41 ^3.01 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.0 ^0.1 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.27 ^-0.04 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.33 ^1.24 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.3 ^-3.04 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.87 ^1.39 ^1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.25 ^2.14 ^-2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.07 ^0.08 ^-0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.32 ^-1.69 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.42 ^-0.1 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.95 ^2.61 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.0 ^-3.83 ^2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.08 ^0.15 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.06 ^1.82 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.54 ^-0.31 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.69 ^0.11 ^3.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.1 ^1.64 ^-3.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.16 ^0.25 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.89 ^1.29 ^-1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.17 ^-1.6 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.55 ^3.08 ^2.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.77 ^-0.62 ^-3.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.12 ^-0.25 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.18 ^0.94 ^1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.86 ^-2.03 ^-0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.97 ^-1.62 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.36 ^3.98 ^1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.3 ^0.06 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.32 ^2.0 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.4 ^-2.81 ^-2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.2 ^1.49 ^2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^3.67 ^2.48 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.17 ^-0.17 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.46 ^0.09 ^1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.18 ^-2.86 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.12 ^1.0 ^2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-4.35 ^1.42 ^0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.02 ^-0.27 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.05 ^0.31 ^0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.73 ^-1.92 ^-2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.04 ^-1.32 ^3.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.28 ^3.09 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.22 ^0.21 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.22 ^-0.5 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.7 ^-1.42 ^-3.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.5 ^4.19 ^0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.05 ^-3.3 ^3.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.18 ^-0.14 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.01 ^-1.83 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.1 ^3.48 ^0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.15 ^-3.29 ^3.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.24 ^-1.15 ^-5.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.31 ^0.18 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.12 ^-1.0 ^1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.82 ^3.72 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-4.07 ^-0.83 ^-2.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^1.53 ^-3.02 ^4.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.19 ^0.24 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.17 ^-1.17 ^2.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.58 ^3.1 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-4.85 ^0.68 ^0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^2.74 ^-4.12 ^1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.01 ^-0.13 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.4 ^0.46 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.96 ^2.63 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.49 ^-4.56 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-3.9 ^2.65 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.1 ^0.33 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.77 ^-0.23 ^2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.97 ^-0.61 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.19 ^4.44 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-1.73 ^-3.97 ^3.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.12 ^-0.17 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.02 ^2.05 ^-1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.8 ^-1.24 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-4.09 ^-2.57 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^0.04 ^5.16 ^1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.06 ^0.02 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.15 ^2.49 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.67 ^-1.9 ^0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.9 ^-0.35 ^-4.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.29 ^3.92 ^3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.15 ^-0.23 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.55 ^-0.99 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.59 ^-1.86 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.75 ^0.36 ^3.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.949,0.0,0.062],to_color:[0.419,0.012,0.0],scale:0.0127} ^-0.55 ^0.33 ^-5.25 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_035.mcfunction new file mode 100644 index 000000000..02562ae2e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_035.mcfunction @@ -0,0 +1,256 @@ +# frame 35 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.287 0 +# Circle +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^1.69 ^0.0 ^1.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^2.12 ^0.0 ^0.3 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^1.99 ^0.0 ^-0.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^1.32 ^0.0 ^-1.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^0.3 ^0.0 ^-2.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^-0.8 ^0.0 ^-1.99 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^-1.69 ^0.0 ^-1.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^-2.12 ^0.0 ^-0.3 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^-1.99 ^0.0 ^0.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^-1.32 ^0.0 ^1.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^-0.3 ^0.0 ^2.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.422,0.0,0.0],scale:2.578} ^0.8 ^0.0 ^1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.01 ^-0.71 ^-1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.1 ^-0.29 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.28 ^-1.63 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.6 ^1.31 ^-3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.61 ^0.04 ^0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.22 ^-0.49 ^1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.96 ^3.25 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.6 ^-3.0 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.36 ^-0.79 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.81 ^-0.58 ^0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.05 ^2.79 ^1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.71 ^-3.25 ^-1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.58 ^1.53 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.7 ^-0.77 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.09 ^-0.08 ^-3.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-1.87 ^2.31 ^2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.19 ^-0.15 ^1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.62 ^-2.21 ^-1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.14 ^2.37 ^2.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.88 ^-0.67 ^-0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.64 ^1.47 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.49 ^-2.39 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.03 ^2.27 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.45 ^1.19 ^3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.98 ^0.89 ^0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.35 ^-2.87 ^-0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.74 ^2.88 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.15 ^0.41 ^3.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.5 ^1.15 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.61 ^-2.86 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.02 ^1.25 ^1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.2 ^2.4 ^-2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.33 ^-1.29 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.36 ^-0.19 ^-0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.84 ^2.35 ^-2.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.33 ^-3.63 ^2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.0 ^1.61 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.29 ^-0.47 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.46 ^0.46 ^3.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.43 ^1.53 ^-3.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.78 ^1.34 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.83 ^-1.83 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.28 ^3.24 ^2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.06 ^-0.49 ^-3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.42 ^0.68 ^1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.88 ^-1.64 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.75 ^-1.8 ^0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.99 ^4.1 ^1.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.04 ^1.83 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.01 ^-2.75 ^-2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.33 ^1.55 ^2.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^3.62 ^2.65 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.05 ^0.11 ^1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.04 ^-2.54 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.98 ^0.63 ^2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-4.19 ^1.75 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.71 ^0.15 ^0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.72 ^-1.51 ^-3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.77 ^-1.61 ^3.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-3.17 ^3.25 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.12 ^-0.15 ^1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.4 ^-1.61 ^-3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.89 ^4.05 ^0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.22 ^-3.03 ^3.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.84 ^-1.8 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.79 ^3.51 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.67 ^-3.29 ^3.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.1 ^-1.44 ^-5.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.26 ^-0.89 ^1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.11 ^3.34 ^0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-4.21 ^-0.52 ^-2.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^1.35 ^-3.37 ^3.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.18 ^-0.93 ^1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.7 ^2.66 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-4.64 ^0.93 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^2.35 ^-4.35 ^1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-2.1 ^0.1 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.82 ^2.68 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.57 ^-4.27 ^-2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-4.04 ^2.24 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.78 ^0.12 ^2.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.68 ^-0.98 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.85 ^4.49 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-2.14 ^-3.81 ^2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.15 ^1.59 ^-0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.77 ^-0.98 ^-0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.91 ^-2.44 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.37 ^5.08 ^1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.29 ^2.13 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.44 ^-1.83 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.51 ^-0.12 ^-4.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.74 ^3.92 ^3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.59 ^-0.87 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.61 ^-1.5 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.7 ^-0.11 ^3.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.919,0.0,0.097],to_color:[0.429,0.019,0.0],scale:0.0142} ^-0.89 ^0.63 ^-5.15 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_036.mcfunction new file mode 100644 index 000000000..7b0b801c8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_036.mcfunction @@ -0,0 +1,256 @@ +# frame 36 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.316 0 +# Circle +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^1.65 ^0.0 ^1.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^2.04 ^0.0 ^0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^1.88 ^0.0 ^-0.82 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^1.22 ^0.0 ^-1.65 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^0.23 ^0.0 ^-2.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^-0.82 ^0.0 ^-1.88 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^-1.65 ^0.0 ^-1.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^-2.04 ^0.0 ^-0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^-1.88 ^0.0 ^0.82 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^-1.22 ^0.0 ^1.65 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^-0.23 ^0.0 ^2.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.405,0.0,0.0],scale:2.595} ^0.82 ^0.0 ^1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.22 ^-0.69 ^-1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.1 ^0.02 ^1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.03 ^-1.89 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.26 ^1.4 ^-3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.37 ^0.25 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.12 ^-0.77 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.02 ^3.27 ^-1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.69 ^-2.87 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.23 ^-0.45 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.7 ^-0.7 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.98 ^2.58 ^1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.93 ^-3.01 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.53 ^1.24 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.42 ^-0.79 ^1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.83 ^0.16 ^-3.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.15 ^2.21 ^2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.88 ^0.03 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.34 ^-2.07 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.14 ^2.04 ^2.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.9 ^-0.32 ^-0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.39 ^1.34 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.39 ^-2.38 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.69 ^2.3 ^-2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.14 ^1.36 ^3.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.85 ^0.91 ^0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.1 ^-2.79 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.05 ^2.71 ^-2.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.3 ^0.72 ^3.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.61 ^1.01 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.89 ^-2.63 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.13 ^1.1 ^1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.11 ^2.64 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.26 ^-0.9 ^-0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.24 ^-0.27 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.7 ^2.07 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.64 ^-3.39 ^2.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.9 ^1.34 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.99 ^-0.61 ^-1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.21 ^0.78 ^3.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^2.74 ^1.39 ^-3.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.64 ^1.3 ^-0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.46 ^-2.02 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.02 ^3.36 ^2.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.31 ^-0.36 ^-3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.58 ^0.42 ^1.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.84 ^-1.23 ^-1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.49 ^-1.95 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.6 ^4.17 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.2 ^1.58 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.35 ^-2.65 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.41 ^1.59 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^3.54 ^2.8 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.65 ^0.12 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.25 ^-2.18 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.8 ^0.27 ^3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.99 ^2.06 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.34 ^0.0 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.7 ^-1.09 ^-3.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^0.49 ^-1.86 ^3.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-3.03 ^3.38 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.97 ^0.15 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.12 ^-1.76 ^-2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.25 ^3.86 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.38 ^-2.71 ^3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.64 ^-1.67 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.47 ^3.46 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.19 ^-3.25 ^3.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.44 ^-1.72 ^-4.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.3 ^-0.74 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.35 ^2.92 ^0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-4.29 ^-0.21 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.15 ^-3.68 ^3.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.45 ^-0.68 ^1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.76 ^2.21 ^-1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-4.37 ^1.16 ^1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^1.93 ^-4.54 ^1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.74 ^-0.19 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.62 ^2.67 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.64 ^-3.93 ^-2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-4.14 ^1.8 ^2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.74 ^0.4 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.34 ^-1.32 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.5 ^4.48 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-2.54 ^-3.59 ^2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.18 ^1.12 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.68 ^-0.72 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.69 ^-2.27 ^-1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-0.79 ^4.95 ^1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.39 ^1.72 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.15 ^-1.74 ^1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.09 ^0.09 ^-4.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.18 ^3.87 ^3.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.53 ^-0.72 ^-0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.57 ^-1.14 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.61 ^-0.56 ^3.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.89,0.0,0.133],to_color:[0.44,0.026,0.0],scale:0.0158} ^-1.22 ^0.92 ^-5.0 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_037.mcfunction new file mode 100644 index 000000000..803d79331 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_037.mcfunction @@ -0,0 +1,256 @@ +# frame 37 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.345 0 +# Circle +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^1.62 ^0.0 ^1.13 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^1.96 ^0.0 ^0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^1.78 ^0.0 ^-0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^1.13 ^0.0 ^-1.62 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^0.17 ^0.0 ^-1.96 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^-0.84 ^0.0 ^-1.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^-1.62 ^0.0 ^-1.13 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^-1.96 ^0.0 ^-0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^-1.78 ^0.0 ^0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^-1.13 ^0.0 ^1.62 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^-0.17 ^0.0 ^1.96 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.388,0.0,0.0],scale:2.612} ^0.84 ^0.0 ^1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.001 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.37 ^-0.62 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.05 ^0.3 ^1.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.75 ^-2.12 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.92 ^1.47 ^-3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.007 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.07 ^0.39 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.98 ^-1.0 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.06 ^3.24 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.76 ^-2.71 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.013 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.04 ^-0.16 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.54 ^-0.79 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.89 ^2.35 ^1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.13 ^-2.75 ^-1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.019 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.46 ^0.91 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.11 ^-0.8 ^1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.56 ^0.4 ^-3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.42 ^2.09 ^2.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.025 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.58 ^0.16 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.06 ^-1.9 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.13 ^1.69 ^2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.88 ^0.02 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.031 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.17 ^1.13 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.26 ^-2.33 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.34 ^2.3 ^-2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.82 ^1.51 ^3.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.037 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.68 ^0.85 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.13 ^-2.65 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.35 ^2.51 ^-1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.44 ^1.02 ^3.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.043 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.65 ^0.82 ^-0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.13 ^-2.36 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.19 ^0.95 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^2.01 ^2.85 ^-1.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.049 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.1 ^-0.52 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.05 ^-0.35 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.53 ^1.77 ^-2.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.94 ^-3.12 ^2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.055 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.75 ^1.02 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.65 ^-0.73 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.95 ^1.09 ^3.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.03 ^1.25 ^-3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.061 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.48 ^1.17 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.07 ^-2.14 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.24 ^3.43 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.54 ^-0.22 ^-2.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.067 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.66 ^0.19 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.74 ^-0.83 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.19 ^-2.07 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.2 ^4.2 ^1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.073 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.36 ^1.26 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.68 ^-2.49 ^-1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.45 ^1.61 ^1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^3.43 ^2.92 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.079 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.29 ^0.12 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.43 ^-1.81 ^-2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.59 ^-0.09 ^3.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-3.74 ^2.35 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.085 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.94 ^-0.11 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.66 ^-0.68 ^-2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.21 ^-2.08 ^3.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.86 ^3.47 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.091 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.79 ^0.36 ^0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.15 ^-1.86 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.59 ^3.64 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.55 ^-2.38 ^3.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.097 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.45 ^-1.44 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.14 ^3.34 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^0.27 ^-3.17 ^3.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-0.77 ^-1.99 ^-4.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.103 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.23 ^-0.57 ^0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.51 ^2.47 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-4.32 ^0.1 ^-1.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^0.93 ^-3.95 ^3.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.109 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.62 ^-0.43 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.76 ^1.73 ^-1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-4.06 ^1.37 ^1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^1.49 ^-4.68 ^1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.115 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.32 ^-0.4 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.39 ^2.61 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.7 ^-3.55 ^-2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-4.19 ^1.34 ^2.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.121 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.65 ^0.58 ^1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.95 ^-1.6 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.13 ^4.42 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-2.91 ^-3.35 ^2.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.127 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.11 ^0.68 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^3.51 ^-0.46 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.42 ^-2.09 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.19 ^4.76 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.133 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.43 ^1.27 ^-0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.82 ^-1.61 ^1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.66 ^0.31 ^-4.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.61 ^3.79 ^3.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.139 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.36 ^-0.55 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^3.45 ^-0.78 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.47 ^-1.0 ^2.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.86,0.0,0.169],to_color:[0.451,0.034,0.0],scale:0.0173} ^-1.54 ^1.2 ^-4.8 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_038.mcfunction new file mode 100644 index 000000000..404b1125b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_038.mcfunction @@ -0,0 +1,208 @@ +# frame 38 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.374 0 +# Circle +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^1.57 ^0.0 ^1.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^1.88 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^1.69 ^0.0 ^-0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^1.04 ^0.0 ^-1.57 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^0.11 ^0.0 ^-1.88 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^-0.85 ^0.0 ^-1.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^-1.57 ^0.0 ^-1.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^-1.88 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^-1.69 ^0.0 ^0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^-1.04 ^0.0 ^1.57 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^-0.11 ^0.0 ^1.88 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.371,0.0,0.0],scale:2.629} ^0.85 ^0.0 ^1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.42 ^-0.5 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.96 ^0.55 ^1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.45 ^-2.32 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.56 ^1.52 ^-3.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.74 ^0.45 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.81 ^-1.2 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.09 ^3.17 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.79 ^-2.52 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.78 ^0.06 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.33 ^-0.87 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.78 ^2.08 ^1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.31 ^-2.45 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.35 ^0.58 ^-0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.77 ^-0.79 ^1.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.29 ^0.62 ^-3.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.65 ^1.94 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.3 ^0.24 ^0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.78 ^-1.7 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.11 ^1.34 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.83 ^0.37 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.01 ^0.86 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.12 ^-2.23 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.98 ^2.27 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.5 ^1.64 ^3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.49 ^0.71 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.34 ^-2.47 ^-0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.61 ^2.29 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.58 ^1.31 ^3.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.6 ^0.59 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.32 ^-2.06 ^-0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.2 ^0.78 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.88 ^3.03 ^-1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.87 ^-0.2 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.82 ^-0.4 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.32 ^1.46 ^-2.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^2.21 ^-2.81 ^2.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.56 ^0.69 ^0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.28 ^-0.83 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.69 ^1.37 ^3.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.28 ^1.09 ^-2.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.31 ^0.94 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.65 ^-2.21 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.48 ^3.45 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.72 ^-0.08 ^-2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.64 ^0.01 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.59 ^-0.44 ^-1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.85 ^-2.15 ^1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.19 ^4.19 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.43 ^0.9 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.96 ^-2.29 ^-1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.44 ^1.6 ^0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^3.27 ^3.0 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.01 ^0.1 ^0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.59 ^-1.42 ^-2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.35 ^-0.43 ^3.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.46 ^2.61 ^0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.56 ^-0.17 ^0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.62 ^-0.29 ^-2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.05 ^-2.26 ^3.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.66 ^3.53 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.56 ^0.47 ^0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.4 ^-1.91 ^-2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.88 ^3.36 ^0.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-0.71 ^-2.01 ^3.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.26 ^-1.11 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.8 ^3.16 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.71 ^-3.05 ^3.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.09 ^-2.23 ^-4.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-1.04 ^-0.38 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.61 ^1.99 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-4.27 ^0.39 ^-1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^0.71 ^-4.18 ^2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.66 ^-0.21 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.7 ^1.26 ^-1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.7 ^1.55 ^1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^1.04 ^-4.77 ^1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.87 ^-0.51 ^-0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.12 ^2.5 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.75 ^-3.13 ^-3.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-4.2 ^0.87 ^2.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.52 ^0.64 ^0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.52 ^-1.82 ^-1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.77 ^4.3 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-3.25 ^-3.07 ^2.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.94 ^0.29 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^3.28 ^-0.21 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.12 ^-1.88 ^-2.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.58 ^4.53 ^1.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.42 ^0.8 ^-0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.45 ^-1.46 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.22 ^0.5 ^-4.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-2.02 ^3.67 ^2.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-1.08 ^-0.37 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^3.27 ^-0.43 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.28 ^-1.4 ^2.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.829,0.0,0.205],to_color:[0.462,0.041,0.0],scale:0.0189} ^-1.84 ^1.46 ^-4.55 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_039.mcfunction new file mode 100644 index 000000000..4cd571f4b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_039.mcfunction @@ -0,0 +1,208 @@ +# frame 39 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.403 0 +# Circle +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^1.53 ^0.0 ^0.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^1.8 ^0.0 ^0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^1.59 ^0.0 ^-0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^0.95 ^0.0 ^-1.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^0.06 ^0.0 ^-1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^-0.85 ^0.0 ^-1.59 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^-1.53 ^0.0 ^-0.95 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^-1.8 ^0.0 ^-0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^-1.59 ^0.0 ^0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^-0.95 ^0.0 ^1.53 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^-0.06 ^0.0 ^1.8 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.354,0.0,0.0],scale:2.646} ^0.85 ^0.0 ^1.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.38 ^-0.34 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.83 ^0.76 ^1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.12 ^-2.47 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.21 ^1.56 ^-3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.4 ^0.4 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.6 ^-1.34 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.1 ^3.06 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.8 ^-2.31 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.48 ^0.18 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.09 ^-0.91 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.64 ^1.81 ^2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.46 ^-2.14 ^-1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.22 ^0.28 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.42 ^-0.75 ^1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.03 ^0.82 ^-3.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.85 ^1.78 ^1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.08 ^0.24 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.5 ^-1.47 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.06 ^0.98 ^2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.73 ^0.71 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.11 ^0.53 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.96 ^-2.07 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.62 ^2.21 ^-2.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.17 ^1.75 ^3.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.28 ^0.49 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.52 ^-2.24 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.84 ^2.04 ^-1.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.71 ^1.58 ^3.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.46 ^0.35 ^-0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.46 ^-1.73 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.18 ^0.61 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^1.74 ^3.17 ^-1.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.57 ^0.03 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.53 ^-0.44 ^0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.1 ^1.14 ^-2.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^2.46 ^-2.48 ^2.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.34 ^0.36 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.88 ^-0.89 ^-1.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.43 ^1.62 ^3.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.49 ^0.92 ^-2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.16 ^0.63 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.24 ^-2.22 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.71 ^3.42 ^1.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.86 ^0.06 ^-2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.51 ^-0.1 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.38 ^-0.08 ^-1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.49 ^-2.21 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.58 ^4.13 ^1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.4 ^0.51 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.19 ^-2.05 ^-1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.38 ^1.58 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^3.09 ^3.05 ^0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.16 ^0.08 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.72 ^-1.04 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.09 ^-0.76 ^3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.14 ^2.85 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.23 ^-0.18 ^0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.56 ^0.08 ^-2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.31 ^-2.41 ^2.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.43 ^3.55 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.33 ^0.45 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.61 ^-1.91 ^-1.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.15 ^3.05 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-0.85 ^-1.63 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.1 ^-0.71 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.48 ^2.91 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.13 ^-2.89 ^3.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.4 ^-2.45 ^-4.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.73 ^-0.2 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.63 ^1.51 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-4.18 ^0.66 ^-0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.49 ^-4.36 ^2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.57 ^-0.04 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.57 ^0.8 ^-1.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.3 ^1.71 ^2.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^0.59 ^-4.81 ^1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.45 ^-0.47 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.82 ^2.32 ^0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.79 ^-2.69 ^-3.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-4.16 ^0.4 ^2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.34 ^0.56 ^0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.07 ^-1.98 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.4 ^4.12 ^1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-3.55 ^-2.76 ^2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.66 ^0.0 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.97 ^0.02 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.78 ^-1.65 ^-2.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-1.94 ^4.25 ^1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.33 ^0.38 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.05 ^-1.28 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.78 ^0.69 ^-4.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.41 ^3.51 ^2.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.72 ^-0.19 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^3.01 ^-0.1 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.06 ^-1.77 ^2.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.799,0.0,0.242],to_color:[0.472,0.048,0.0],scale:0.105} ^-2.12 ^1.71 ^-4.25 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_040.mcfunction new file mode 100644 index 000000000..ee52c738d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_040.mcfunction @@ -0,0 +1,208 @@ +# frame 40 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.432 0 +# Circle +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^1.48 ^0.0 ^0.86 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^1.71 ^0.0 ^0.01 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^1.49 ^0.0 ^-0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^0.86 ^0.0 ^-1.48 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^0.01 ^0.0 ^-1.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^-0.85 ^0.0 ^-1.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^-1.48 ^0.0 ^-0.86 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^-1.71 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^-1.49 ^0.0 ^0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^-0.86 ^0.0 ^1.48 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^-0.01 ^0.0 ^1.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.336,0.0,0.0],scale:2.664} ^0.85 ^0.0 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.22 ^-0.15 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.65 ^0.93 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.77 ^-2.57 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.14 ^1.58 ^-3.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.12 ^0.23 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.37 ^-1.43 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.09 ^2.91 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.77 ^-2.07 ^-1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.18 ^0.16 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.8 ^-0.91 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.49 ^1.51 ^2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.58 ^-1.8 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.09 ^0.05 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.06 ^-0.7 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.22 ^1.0 ^-2.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.02 ^1.6 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.04 ^0.15 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.24 ^-1.22 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.01 ^0.62 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.59 ^1.03 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.11 ^0.21 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.78 ^-1.87 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.27 ^2.11 ^-2.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.16 ^1.84 ^3.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.09 ^0.22 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.66 ^-1.96 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.02 ^1.76 ^-1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.83 ^1.82 ^3.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.23 ^0.12 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.54 ^-1.39 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.09 ^0.44 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^1.58 ^3.27 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.24 ^0.11 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.19 ^-0.47 ^0.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.85 ^0.81 ^-2.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.67 ^-2.12 ^2.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.13 ^0.09 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.47 ^-0.91 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.18 ^1.83 ^3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.65 ^0.75 ^-2.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.04 ^0.27 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.83 ^-2.15 ^-0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.91 ^3.34 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^3.96 ^0.19 ^-1.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.27 ^-0.11 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.12 ^0.24 ^-1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.11 ^-2.22 ^1.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.95 ^4.02 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.23 ^0.17 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.36 ^-1.77 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.26 ^1.53 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^2.86 ^3.07 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.17 ^0.04 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.81 ^-0.66 ^-2.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.8 ^-1.05 ^2.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.79 ^3.04 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.01 ^-0.12 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.49 ^0.4 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.55 ^-2.51 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.17 ^3.52 ^1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.11 ^0.27 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.77 ^-1.84 ^-1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.36 ^2.71 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-0.99 ^-1.24 ^4.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.0 ^-0.29 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.18 ^2.59 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.5 ^-2.69 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-1.69 ^-2.63 ^-3.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.34 ^-0.05 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.56 ^1.04 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-4.01 ^0.91 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.26 ^-4.49 ^2.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.32 ^0.04 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.37 ^0.36 ^-1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.87 ^1.82 ^2.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^0.13 ^-4.79 ^1.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.11 ^-0.28 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.49 ^2.1 ^1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.81 ^-2.22 ^-3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-4.08 ^-0.07 ^2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.14 ^0.32 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.6 ^-2.05 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.05 ^3.88 ^1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-3.8 ^-2.42 ^2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.3 ^-0.11 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.61 ^0.22 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.42 ^-1.41 ^-3.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.28 ^3.92 ^2.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.17 ^0.07 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.63 ^-1.08 ^1.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.35 ^0.85 ^-4.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.76 ^3.31 ^2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.31 ^-0.05 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.69 ^0.19 ^-0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.79 ^-2.09 ^2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.769,0.0,0.278],to_color:[0.483,0.056,0.0],scale:0.121} ^-2.37 ^1.93 ^-3.9 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_041.mcfunction new file mode 100644 index 000000000..a2669df93 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_041.mcfunction @@ -0,0 +1,208 @@ +# frame 41 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.462 0 +# Circle +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^1.43 ^0.0 ^0.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^1.63 ^0.0 ^-0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^1.39 ^0.0 ^-0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^0.78 ^0.0 ^-1.43 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^-0.04 ^0.0 ^-1.63 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^-0.85 ^0.0 ^-1.39 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^-1.43 ^0.0 ^-0.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^-1.63 ^0.0 ^0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^-1.39 ^0.0 ^0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^-0.78 ^0.0 ^1.43 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^0.04 ^0.0 ^1.63 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.319,0.0,0.0],scale:2.681} ^0.85 ^0.0 ^1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.44 ^1.03 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.41 ^-2.63 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.48 ^1.58 ^-3.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.11 ^-1.45 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.07 ^2.71 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.71 ^-1.81 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.48 ^-0.88 ^-0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.31 ^1.21 ^2.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.67 ^-1.45 ^-2.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.71 ^-0.63 ^1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.45 ^1.16 ^-2.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.15 ^1.41 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.0 ^-0.96 ^-1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.94 ^0.27 ^2.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.41 ^1.33 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.6 ^-1.63 ^0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.06 ^1.99 ^-2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.48 ^1.91 ^3.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.76 ^-1.64 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.17 ^1.48 ^-1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.94 ^2.05 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.55 ^-1.04 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.96 ^0.27 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.4 ^3.34 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.81 ^-0.47 ^1.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.58 ^0.49 ^-3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.85 ^-1.75 ^2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.06 ^-0.9 ^-1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.06 ^2.0 ^2.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^3.78 ^0.56 ^-1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.44 ^-2.01 ^-0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.08 ^3.2 ^0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^4.0 ^0.32 ^-1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.81 ^0.51 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.71 ^-2.2 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^1.31 ^3.87 ^1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.46 ^-1.46 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.1 ^1.45 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^2.62 ^3.05 ^1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.86 ^-0.31 ^-1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.5 ^-1.32 ^2.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.41 ^3.2 ^1.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.41 ^0.66 ^-2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.77 ^-2.56 ^2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.9 ^3.46 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.89 ^-1.71 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.52 ^2.34 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.11 ^-0.84 ^3.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.09 ^2.22 ^-1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^1.83 ^-2.45 ^2.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-1.95 ^-2.78 ^-3.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.4 ^0.59 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.79 ^1.13 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^0.03 ^-4.56 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.11 ^-0.03 ^-1.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.41 ^1.9 ^2.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-0.32 ^-4.72 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.15 ^1.82 ^1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.81 ^-1.74 ^-3.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.95 ^-0.53 ^2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.13 ^-2.03 ^-0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.28 ^3.59 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-4.0 ^-2.06 ^1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.2 ^0.39 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.03 ^-1.16 ^-3.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.58 ^3.55 ^2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.21 ^-0.87 ^2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.06 ^0.99 ^-3.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-3.07 ^3.07 ^2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.3 ^0.44 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.5 ^-2.36 ^1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.738,0.0,0.315],to_color:[0.495,0.063,0.0],scale:0.137} ^-2.58 ^2.13 ^-3.52 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_042.mcfunction new file mode 100644 index 000000000..19d267bc9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_042.mcfunction @@ -0,0 +1,208 @@ +# frame 42 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.491 0 +# Circle +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^1.37 ^0.0 ^0.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^1.54 ^0.0 ^-0.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^1.3 ^0.0 ^-0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^0.71 ^0.0 ^-1.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^-0.08 ^0.0 ^-1.54 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^-0.84 ^0.0 ^-1.3 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^-1.37 ^0.0 ^-0.71 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^-1.54 ^0.0 ^0.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^-1.3 ^0.0 ^0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^-0.71 ^0.0 ^1.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^0.08 ^0.0 ^1.54 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.302,0.0,0.0],scale:2.698} ^0.84 ^0.0 ^1.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.19 ^1.08 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.05 ^-2.63 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.81 ^1.56 ^-3.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.85 ^-1.4 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.02 ^2.47 ^0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.62 ^-1.54 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.14 ^-0.82 ^-0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.13 ^0.9 ^2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.72 ^-1.09 ^-2.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.39 ^-0.54 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.65 ^1.28 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.23 ^1.2 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.2 ^-0.7 ^-1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.85 ^-0.06 ^2.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.19 ^1.61 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.43 ^-1.34 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.38 ^1.83 ^-2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.78 ^1.95 ^2.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.81 ^-1.3 ^0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.26 ^1.18 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.03 ^2.23 ^2.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.49 ^-0.69 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.79 ^0.1 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.21 ^3.35 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.41 ^-0.45 ^1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.3 ^0.18 ^-2.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.98 ^-1.36 ^2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.66 ^-0.85 ^-1.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.29 ^2.12 ^2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.84 ^0.38 ^-1.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.09 ^-1.8 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.23 ^3.01 ^0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^3.99 ^0.45 ^-0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.47 ^0.72 ^-0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.31 ^-2.13 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^1.64 ^3.67 ^0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.47 ^-1.13 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.89 ^1.35 ^-0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^2.34 ^2.99 ^1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.86 ^0.0 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^1.19 ^-1.54 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.02 ^3.31 ^1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.32 ^0.85 ^-1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.96 ^-2.55 ^1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.61 ^3.35 ^1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.95 ^-1.53 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.62 ^1.94 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-1.21 ^-0.45 ^3.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.31 ^1.8 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.1 ^-2.18 ^2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.18 ^-2.89 ^-3.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^2.16 ^0.18 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.51 ^1.32 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.19 ^-4.57 ^1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.79 ^-0.36 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.93 ^1.94 ^2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-0.75 ^-4.59 ^0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.81 ^1.5 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.8 ^-1.26 ^-3.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.77 ^-0.97 ^2.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.68 ^-1.93 ^-0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.59 ^3.24 ^1.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-4.15 ^-1.68 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.75 ^0.51 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.63 ^-0.9 ^-3.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.85 ^3.15 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.79 ^-0.65 ^1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.45 ^1.1 ^-3.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-3.33 ^2.8 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.88 ^0.63 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.17 ^-2.57 ^1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.707,0.0,0.352],to_color:[0.506,0.07,0.0],scale:0.153} ^-2.76 ^2.29 ^-3.1 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_043.mcfunction new file mode 100644 index 000000000..3db31f068 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_043.mcfunction @@ -0,0 +1,208 @@ +# frame 43 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.52 0 +# Circle +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^1.32 ^0.0 ^0.63 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^1.46 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^1.2 ^0.0 ^-0.82 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^0.63 ^0.0 ^-1.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^-0.11 ^0.0 ^-1.46 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^-0.82 ^0.0 ^-1.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^-1.32 ^0.0 ^-0.63 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^-1.46 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^-1.2 ^0.0 ^0.82 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^-0.63 ^0.0 ^1.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^0.11 ^0.0 ^1.46 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.285,0.0,0.0],scale:2.715} ^0.82 ^0.0 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.92 ^1.05 ^0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.69 ^-2.57 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.12 ^1.52 ^-2.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.58 ^-1.28 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.96 ^2.2 ^1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.5 ^-1.26 ^-2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.8 ^-0.72 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.93 ^0.59 ^2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.74 ^-0.73 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.1 ^-0.43 ^1.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.83 ^1.36 ^-2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.27 ^0.98 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.35 ^-0.44 ^-1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.76 ^-0.37 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.94 ^1.86 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.25 ^-1.04 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.66 ^1.65 ^-1.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.07 ^1.96 ^2.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.8 ^-0.94 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.3 ^0.88 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.11 ^2.39 ^2.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.35 ^-0.37 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.56 ^-0.05 ^-0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.01 ^3.33 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.0 ^-0.41 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^1.01 ^-0.11 ^-2.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.08 ^-0.97 ^2.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.3 ^-0.76 ^-1.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.49 ^2.18 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.86 ^0.2 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.2 ^-1.52 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.33 ^2.77 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^3.94 ^0.56 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.11 ^0.85 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.9 ^-2.02 ^2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^1.94 ^3.44 ^0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.39 ^-0.8 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.63 ^1.23 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^2.04 ^2.9 ^1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.81 ^0.26 ^-1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.88 ^-1.71 ^2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.61 ^3.37 ^1.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.23 ^0.96 ^-1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.11 ^-2.5 ^1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.31 ^3.21 ^2.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.94 ^-1.29 ^-0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.66 ^1.54 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.3 ^-0.05 ^3.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.47 ^1.36 ^-1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.31 ^-1.89 ^1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.38 ^-2.96 ^-2.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.83 ^-0.16 ^0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.18 ^1.46 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-0.4 ^-4.53 ^0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.43 ^-0.61 ^-1.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.45 ^1.94 ^2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-1.16 ^-4.4 ^0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.49 ^1.16 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.78 ^-0.78 ^-3.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.55 ^-1.39 ^2.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.28 ^-1.73 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.86 ^2.86 ^1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-4.24 ^-1.3 ^1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.28 ^0.58 ^1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.22 ^-0.64 ^-3.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.07 ^2.72 ^2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.41 ^-0.43 ^1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.79 ^1.18 ^-3.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-3.55 ^2.51 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.42 ^0.75 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.82 ^-2.71 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.677,0.0,0.389],to_color:[0.517,0.078,0.0],scale:0.169} ^-2.89 ^2.42 ^-2.66 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_044.mcfunction new file mode 100644 index 000000000..9426d8d18 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_044.mcfunction @@ -0,0 +1,208 @@ +# frame 44 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.55 0 +# Circle +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^1.25 ^0.0 ^0.56 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^1.37 ^0.0 ^-0.14 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^1.11 ^0.0 ^-0.81 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^0.56 ^0.0 ^-1.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^-0.14 ^0.0 ^-1.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^-0.81 ^0.0 ^-1.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^-1.25 ^0.0 ^-0.56 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^-1.37 ^0.0 ^0.14 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^-1.11 ^0.0 ^0.81 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^-0.56 ^0.0 ^1.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^0.14 ^0.0 ^1.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.268,0.0,0.0],scale:2.732} ^0.81 ^0.0 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.002 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.64 ^0.95 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.34 ^-2.47 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.4 ^1.46 ^-2.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.008 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.33 ^-1.08 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.88 ^1.9 ^1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.34 ^-0.97 ^-2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.014 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.48 ^-0.58 ^-0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.73 ^0.3 ^2.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.71 ^-0.37 ^-1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.020 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.13 ^-0.32 ^1.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.98 ^1.41 ^-1.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.26 ^0.76 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.026 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.43 ^-0.21 ^-1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.65 ^-0.64 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.65 ^2.08 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.032 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.1 ^-0.72 ^0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.9 ^1.44 ^-1.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.32 ^1.95 ^2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.038 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.73 ^-0.6 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.28 ^0.59 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.17 ^2.5 ^1.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.044 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.14 ^-0.09 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.3 ^-0.19 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^0.8 ^3.26 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.050 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.61 ^-0.34 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.72 ^-0.37 ^-2.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.12 ^-0.58 ^2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.056 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.0 ^-0.63 ^-1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.67 ^2.19 ^1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.82 ^0.02 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.062 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.4 ^-1.19 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.4 ^2.49 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^3.83 ^0.66 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.068 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.74 ^0.87 ^-0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.51 ^-1.88 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^2.19 ^3.16 ^0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.074 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.22 ^-0.48 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.33 ^1.09 ^-1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^1.73 ^2.76 ^2.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.080 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.71 ^0.43 ^-1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.58 ^-1.82 ^2.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.19 ^3.39 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.086 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.14 ^0.96 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.23 ^-2.39 ^1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.0 ^3.02 ^2.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.092 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.86 ^-1.0 ^-0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.64 ^1.13 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.36 ^0.32 ^3.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.098 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.56 ^0.91 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.45 ^-1.58 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.53 ^-2.98 ^-2.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.104 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.44 ^-0.41 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.8 ^1.56 ^0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-0.6 ^-4.41 ^0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.110 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.04 ^-0.75 ^-0.82 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.97 ^1.89 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-1.53 ^-4.16 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.116 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.2 ^0.8 ^1.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.74 ^-0.33 ^-3.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.29 ^-1.77 ^2.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.122 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.05 ^-1.44 ^-0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.09 ^2.44 ^1.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-4.26 ^-0.91 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.128 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.82 ^0.59 ^1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.82 ^-0.39 ^-3.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.23 ^2.27 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.134 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.08 ^-0.23 ^1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.1 ^1.23 ^-2.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-3.7 ^2.19 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.140 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.95 ^0.78 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.46 ^-2.77 ^1.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.646,0.0,0.426],to_color:[0.528,0.085,0.0],scale:0.185} ^-2.98 ^2.51 ^-2.2 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_045.mcfunction new file mode 100644 index 000000000..7e6687452 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_045.mcfunction @@ -0,0 +1,160 @@ +# frame 45 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.579 0 +# Circle +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^1.19 ^0.0 ^0.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^1.28 ^0.0 ^-0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^1.02 ^0.0 ^-0.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^0.49 ^0.0 ^-1.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^-0.17 ^0.0 ^-1.28 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^-0.78 ^0.0 ^-1.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^-1.19 ^0.0 ^-0.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^-1.28 ^0.0 ^0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^-1.02 ^0.0 ^0.78 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^-0.49 ^0.0 ^1.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^0.17 ^0.0 ^1.28 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.25,0.0,0.0],scale:2.75} ^0.78 ^0.0 ^1.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.37 ^0.76 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.02 ^-2.3 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.65 ^1.39 ^-2.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.12 ^-0.82 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.78 ^1.58 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.16 ^-0.67 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.2 ^-0.42 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.52 ^0.03 ^2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.65 ^-0.02 ^-1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.28 ^-0.2 ^0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.08 ^1.41 ^-1.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.21 ^0.54 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.45 ^-0.02 ^-0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.54 ^-0.87 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.34 ^2.25 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.01 ^-0.41 ^0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.1 ^1.21 ^-1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.55 ^1.91 ^2.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.6 ^-0.29 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.2 ^0.3 ^-0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.21 ^2.58 ^1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.86 ^0.11 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.99 ^-0.31 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^0.59 ^3.14 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.26 ^-0.26 ^0.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.44 ^-0.6 ^-2.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.12 ^-0.2 ^2.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.21 ^-0.47 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.81 ^2.14 ^1.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.74 ^-0.15 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.5 ^-0.82 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.43 ^2.16 ^-0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^3.67 ^0.75 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.4 ^0.79 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.14 ^-1.7 ^2.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^2.41 ^2.85 ^0.36 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.97 ^-0.2 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.0 ^0.94 ^-1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^1.4 ^2.59 ^2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.55 ^0.5 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.28 ^-1.88 ^1.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.77 ^3.35 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.07 ^0.86 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.3 ^-2.22 ^0.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.69 ^2.8 ^2.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.7 ^-0.68 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.54 ^0.73 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.4 ^0.68 ^3.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.56 ^0.49 ^-0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.51 ^-1.25 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.64 ^-2.96 ^-1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^1.0 ^-0.54 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.38 ^1.61 ^1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-0.78 ^-4.25 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.64 ^-0.76 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.52 ^1.79 ^2.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-1.87 ^-3.87 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.02 ^0.46 ^1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.68 ^0.09 ^-2.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-2.99 ^-2.11 ^2.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.28 ^-1.07 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.27 ^1.99 ^1.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-4.23 ^-0.52 ^0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.41 ^0.53 ^0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.44 ^-0.15 ^-3.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.34 ^1.81 ^2.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.16 ^-0.06 ^1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.34 ^1.24 ^-2.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.8 ^1.85 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.52 ^0.71 ^-0.74 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.1 ^-2.75 ^0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.615,0.0,0.463],to_color:[0.539,0.093,0.0],scale:0.201} ^-3.03 ^2.56 ^-1.72 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_046.mcfunction new file mode 100644 index 000000000..7a0ec0d1a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_046.mcfunction @@ -0,0 +1,160 @@ +# frame 46 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.609 0 +# Circle +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^1.12 ^0.0 ^0.43 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^1.19 ^0.0 ^-0.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^0.94 ^0.0 ^-0.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^0.43 ^0.0 ^-1.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^-0.19 ^0.0 ^-1.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^-0.76 ^0.0 ^-0.94 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^-1.12 ^0.0 ^-0.43 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^-1.19 ^0.0 ^0.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^-0.94 ^0.0 ^0.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^-0.43 ^0.0 ^1.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^0.19 ^0.0 ^1.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.233,0.0,0.0],scale:2.767} ^0.76 ^0.0 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.14 ^0.51 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.27 ^-2.08 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.85 ^1.29 ^-2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.03 ^-0.51 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.67 ^1.24 ^1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.95 ^-0.38 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.01 ^-0.25 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.33 ^-0.22 ^2.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.55 ^0.31 ^-1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.31 ^-0.09 ^0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.14 ^1.37 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.1 ^0.31 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.37 ^0.09 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.42 ^-1.05 ^1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.01 ^2.38 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.08 ^-0.15 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.24 ^0.97 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.74 ^1.84 ^1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.41 ^-0.05 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.06 ^0.04 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.23 ^2.6 ^1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.53 ^0.21 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.66 ^-0.41 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^0.38 ^2.98 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.01 ^-0.16 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.18 ^-0.79 ^-2.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.07 ^0.17 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.3 ^-0.28 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.91 ^2.03 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.59 ^-0.32 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.46 ^-0.45 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.4 ^1.8 ^-0.79 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^3.45 ^0.82 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.12 ^0.6 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.19 ^-1.48 ^1.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^2.58 ^2.51 ^0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.63 ^0.0 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.64 ^0.77 ^-1.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^1.07 ^2.39 ^2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.36 ^0.45 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.01 ^-1.87 ^1.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.36 ^3.26 ^1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.01 ^0.63 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.32 ^-2.01 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.38 ^2.54 ^2.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.48 ^-0.37 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.38 ^0.35 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-1.42 ^1.01 ^3.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.45 ^0.15 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.48 ^-0.92 ^0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.7 ^-2.89 ^-1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.55 ^-0.51 ^0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.93 ^1.59 ^1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-0.94 ^-4.02 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.29 ^-0.63 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.1 ^1.65 ^2.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.17 ^-3.53 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.15 ^0.17 ^0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.6 ^0.46 ^-2.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-2.65 ^-2.39 ^2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.36 ^-0.65 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.39 ^1.53 ^1.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-4.12 ^-0.14 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.08 ^0.39 ^0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.08 ^0.07 ^-2.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.4 ^1.33 ^1.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.27 ^0.05 ^0.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.51 ^1.2 ^-2.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.82 ^1.5 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.16 ^0.54 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.74 ^-2.65 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.584,0.0,0.5],to_color:[0.55,0.1,0.0],scale:0.217} ^-3.02 ^2.56 ^-1.24 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_047.mcfunction new file mode 100644 index 000000000..d41341315 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_047.mcfunction @@ -0,0 +1,160 @@ +# frame 47 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.639 0 +# Circle +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^1.06 ^0.0 ^0.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^1.1 ^0.0 ^-0.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^0.85 ^0.0 ^-0.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^0.37 ^0.0 ^-1.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^-0.21 ^0.0 ^-1.1 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^-0.73 ^0.0 ^-0.85 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^-1.06 ^0.0 ^-0.37 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^-1.1 ^0.0 ^0.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^-0.85 ^0.0 ^0.73 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^-0.37 ^0.0 ^1.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^0.21 ^0.0 ^1.1 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.216,0.0,0.0],scale:2.784} ^0.73 ^0.0 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.01 ^0.22 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.5 ^-1.81 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.02 ^1.18 ^-1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.08 ^-0.2 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.55 ^0.9 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.72 ^-0.1 ^-2.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.09 ^-0.09 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.14 ^-0.42 ^1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.41 ^0.62 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.21 ^-0.02 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.15 ^1.29 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.95 ^0.1 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.2 ^0.11 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.3 ^-1.16 ^1.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.66 ^2.46 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.08 ^0.01 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.31 ^0.73 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.89 ^1.74 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.18 ^0.07 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.86 ^-0.18 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.22 ^2.59 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.2 ^0.17 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.31 ^-0.48 ^-1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.18 ^2.78 ^1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.1 ^-0.06 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.06 ^-0.92 ^-1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.97 ^0.51 ^1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.22 ^-0.1 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.96 ^1.86 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.39 ^-0.46 ^0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.28 ^-0.13 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.33 ^1.43 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^3.19 ^0.87 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.04 ^0.3 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.47 ^-1.24 ^1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^2.69 ^2.14 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.26 ^0.08 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.27 ^0.6 ^-1.65 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.73 ^2.16 ^2.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.15 ^0.27 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.22 ^-1.79 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^0.03 ^3.13 ^1.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.02 ^0.31 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.29 ^-1.74 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-0.08 ^2.25 ^2.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.21 ^-0.11 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.15 ^0.01 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.41 ^1.31 ^2.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.24 ^-0.04 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.36 ^-0.6 ^0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.72 ^-2.78 ^-0.76 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.17 ^-0.32 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.47 ^1.53 ^1.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-1.07 ^-3.73 ^-0.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.04 ^-0.34 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.27 ^1.46 ^2.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.41 ^-3.14 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.15 ^-0.01 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.52 ^0.76 ^-2.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.29 ^-2.63 ^1.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.26 ^-0.24 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.44 ^1.08 ^1.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.95 ^0.22 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.08 ^0.19 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.23 ^0.26 ^-2.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.39 ^0.86 ^1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.22 ^0.08 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.6 ^1.13 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-3.78 ^1.14 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.04 ^0.27 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.4 ^-2.46 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.553,0.0,0.537],to_color:[0.561,0.107,0.0],scale:0.233} ^-2.96 ^2.52 ^-0.76 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_048.mcfunction new file mode 100644 index 000000000..cb27a8987 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_048.mcfunction @@ -0,0 +1,160 @@ +# frame 48 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.668 0 +# Circle +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^0.98 ^0.0 ^0.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^1.01 ^0.0 ^-0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^0.77 ^0.0 ^-0.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^0.32 ^0.0 ^-0.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^-0.22 ^0.0 ^-1.01 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^-0.69 ^0.0 ^-0.77 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^-0.98 ^0.0 ^-0.32 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^-1.01 ^0.0 ^0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^-0.77 ^0.0 ^0.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^-0.32 ^0.0 ^0.98 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^0.22 ^0.0 ^1.01 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.199,0.0,0.0],scale:2.801} ^0.69 ^0.0 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.68 ^-1.5 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.14 ^1.05 ^-1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.42 ^0.57 ^1.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.48 ^0.16 ^-2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.02 ^-0.57 ^1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.23 ^0.9 ^-1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.1 ^1.15 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.75 ^-0.11 ^-0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.19 ^-1.21 ^1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.3 ^2.5 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.32 ^0.49 ^-0.87 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.0 ^1.62 ^1.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.61 ^-0.37 ^-0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.2 ^2.52 ^0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.96 ^-0.52 ^-1.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-0.02 ^2.54 ^1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.25 ^-0.98 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.82 ^0.83 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.96 ^1.62 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^3.13 ^-0.59 ^0.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.2 ^1.04 ^-1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.88 ^0.9 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.69 ^-0.98 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^2.75 ^1.75 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.9 ^0.42 ^-1.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.41 ^1.9 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.41 ^-1.65 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.4 ^2.94 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.2 ^-1.44 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^0.2 ^1.94 ^2.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.85 ^-0.28 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.37 ^1.56 ^2.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^2.16 ^-0.3 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.68 ^-2.62 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.01 ^1.4 ^1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.18 ^-3.39 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.58 ^1.24 ^1.71 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.59 ^-2.73 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.42 ^0.98 ^-1.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-1.91 ^-2.79 ^1.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.41 ^0.64 ^1.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.72 ^0.55 ^-0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.48 ^0.4 ^-2.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.32 ^0.41 ^1.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.61 ^1.02 ^-1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-3.68 ^0.78 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.09 ^-2.19 ^-0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.523,0.0,0.574],to_color:[0.572,0.115,0.0],scale:0.25} ^-2.85 ^2.44 ^-0.3 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_049.mcfunction new file mode 100644 index 000000000..c21c00f27 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_049.mcfunction @@ -0,0 +1,160 @@ +# frame 49 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.698 0 +# Circle +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^0.91 ^0.0 ^0.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^0.92 ^0.0 ^-0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^0.69 ^0.0 ^-0.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^0.27 ^0.0 ^-0.91 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^-0.22 ^0.0 ^-0.92 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^-0.66 ^0.0 ^-0.69 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^-0.91 ^0.0 ^-0.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^-0.92 ^0.0 ^0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^-0.69 ^0.0 ^0.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^-0.27 ^0.0 ^0.91 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^0.22 ^0.0 ^0.92 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.182,0.0,0.0],scale:2.818} ^0.66 ^0.0 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.79 ^-1.16 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.2 ^0.9 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.3 ^0.27 ^1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.22 ^0.41 ^-2.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.15 ^-0.67 ^1.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.02 ^1.13 ^-1.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.0 ^0.98 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.51 ^-0.29 ^-0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.09 ^-1.17 ^0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.94 ^2.47 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.24 ^0.27 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.05 ^1.46 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.31 ^-0.5 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.14 ^2.4 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.61 ^-0.52 ^-1.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-0.2 ^2.26 ^1.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.4 ^-0.98 ^-1.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.62 ^1.1 ^1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.91 ^1.34 ^-0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.83 ^-0.7 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.03 ^0.67 ^-1.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.54 ^0.92 ^1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.82 ^-0.71 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^2.74 ^1.36 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.54 ^0.26 ^-1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.1 ^1.62 ^2.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.54 ^-1.43 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.73 ^2.7 ^1.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.07 ^-1.11 ^-0.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^0.45 ^1.61 ^2.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.5 ^-0.5 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.31 ^1.76 ^2.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.86 ^-0.04 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.58 ^-2.42 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.58 ^1.21 ^1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.25 ^-3.01 ^-1.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.79 ^0.99 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.69 ^-2.28 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.32 ^1.1 ^-1.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-1.52 ^-2.89 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.31 ^0.25 ^1.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.42 ^0.84 ^-0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.66 ^0.5 ^-1.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.18 ^-0.03 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.52 ^0.87 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-3.5 ^0.44 ^-0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.16 ^-1.84 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.492,0.0,0.611],to_color:[0.583,0.122,0.0],scale:0.266} ^-2.68 ^2.31 ^0.14 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_050.mcfunction new file mode 100644 index 000000000..d99f0193c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_050.mcfunction @@ -0,0 +1,160 @@ +# frame 50 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.727 0 +# Circle +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^0.84 ^0.0 ^0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^0.84 ^0.0 ^-0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^0.61 ^0.0 ^-0.61 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^0.22 ^0.0 ^-0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^-0.23 ^0.0 ^-0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^-0.61 ^0.0 ^-0.61 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^-0.84 ^0.0 ^-0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^-0.84 ^0.0 ^0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^-0.61 ^0.0 ^0.61 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^-0.22 ^0.0 ^0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^0.23 ^0.0 ^0.84 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.165,0.0,0.0],scale:2.835} ^0.61 ^0.0 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.003 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.81 ^-0.81 ^-0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.21 ^0.75 ^-0.88 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.009 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.17 ^0.02 ^1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.95 ^0.62 ^-2.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.015 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.24 ^-0.68 ^0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.78 ^1.33 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.021 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.84 ^0.77 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.23 ^-0.46 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.027 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.0 ^-1.05 ^0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.58 ^2.39 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.033 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.09 ^0.07 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.06 ^1.29 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.039 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.97 ^-0.56 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.07 ^2.24 ^-0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.045 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.3 ^-0.48 ^-0.99 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.36 ^1.95 ^1.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.051 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.48 ^-0.9 ^-0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.38 ^1.32 ^0.92 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.057 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.79 ^1.02 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.49 ^-0.78 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.063 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.82 ^0.33 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.16 ^0.9 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.069 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.86 ^-0.45 ^0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^2.67 ^0.97 ^-0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.075 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.22 ^0.11 ^-1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-0.19 ^1.33 ^2.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.081 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.59 ^-1.15 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^1.02 ^2.42 ^1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.087 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.87 ^-0.77 ^-0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^0.68 ^1.27 ^2.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.093 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.12 ^-0.62 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.22 ^1.9 ^1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.099 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.49 ^0.16 ^-0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.44 ^-2.18 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.105 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.2 ^0.97 ^1.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.29 ^-2.58 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.111 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.88 ^0.71 ^1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.73 ^-1.82 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.117 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.22 ^1.11 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-1.12 ^-2.91 ^1.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.123 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.13 ^-0.07 ^1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-3.07 ^1.1 ^-0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.129 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.74 ^0.53 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.98 ^-0.42 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.135 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.33 ^0.68 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-3.25 ^0.11 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.141 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.34 ^-1.42 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.461,0.0,0.648],to_color:[0.594,0.129,0.0],scale:0.282} ^-2.47 ^2.14 ^0.53 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_051.mcfunction new file mode 100644 index 000000000..cd0aa86aa --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_051.mcfunction @@ -0,0 +1,112 @@ +# frame 51 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.757 0 +# Circle +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^0.76 ^0.0 ^0.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^0.75 ^0.0 ^-0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^0.54 ^0.0 ^-0.57 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^0.18 ^0.0 ^-0.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^-0.22 ^0.0 ^-0.75 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^-0.57 ^0.0 ^-0.54 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^-0.76 ^0.0 ^-0.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^-0.75 ^0.0 ^0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^-0.54 ^0.0 ^0.57 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^-0.18 ^0.0 ^0.76 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^0.22 ^0.0 ^0.75 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.148,0.0,0.0],scale:2.852} ^0.57 ^0.0 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.73 ^-0.47 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.15 ^0.6 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.07 ^-0.16 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.68 ^0.8 ^-2.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.27 ^-0.61 ^0.54 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.51 ^1.47 ^-0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.63 ^0.53 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.92 ^-0.59 ^-1.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.06 ^-0.84 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.25 ^2.25 ^0.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.85 ^-0.07 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.01 ^1.1 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.63 ^-0.53 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.98 ^2.04 ^-0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.04 ^-0.39 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.49 ^1.62 ^1.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.48 ^-0.74 ^-0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.09 ^1.49 ^0.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.62 ^0.67 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.12 ^-0.83 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.58 ^0.06 ^-0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.77 ^0.87 ^1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.79 ^-0.21 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^2.54 ^0.59 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.02 ^-0.01 ^-1.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.45 ^1.03 ^2.41 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.56 ^-0.82 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^1.25 ^2.1 ^1.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.64 ^-0.44 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^0.86 ^0.93 ^2.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.72 ^-0.64 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.11 ^1.98 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^1.06 ^0.28 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.24 ^-1.9 ^0.85 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.08 ^0.7 ^0.91 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-1.29 ^-2.13 ^-1.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.85 ^0.44 ^0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.7 ^-1.35 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.12 ^0.99 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-0.73 ^-2.85 ^0.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.87 ^-0.28 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.67 ^1.3 ^-0.73 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.72 ^0.49 ^-0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.72 ^-0.77 ^1.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^1.04 ^0.47 ^0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.94 ^-0.19 ^-0.8 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.43 ^-0.97 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.43,0.0,0.685],to_color:[0.605,0.137,0.0],scale:0.298} ^-2.21 ^1.92 ^0.88 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_052.mcfunction new file mode 100644 index 000000000..fb7a6e74e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_052.mcfunction @@ -0,0 +1,112 @@ +# frame 52 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.786 0 +# Circle +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^0.68 ^0.0 ^0.14 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^0.66 ^0.0 ^-0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^0.46 ^0.0 ^-0.52 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^0.14 ^0.0 ^-0.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^-0.22 ^0.0 ^-0.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^-0.52 ^0.0 ^-0.46 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^-0.68 ^0.0 ^-0.14 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^-0.66 ^0.0 ^0.22 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^-0.46 ^0.0 ^0.52 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^-0.14 ^0.0 ^0.68 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^0.22 ^0.0 ^0.66 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.131,0.0,0.0],scale:2.869} ^0.52 ^0.0 ^0.46 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.54 ^-0.18 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.04 ^0.44 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.01 ^-0.23 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.42 ^0.93 ^-1.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.24 ^-0.46 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.23 ^1.54 ^-0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.39 ^0.29 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.58 ^-0.7 ^-1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.09 ^-0.57 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^0.06 ^2.06 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.55 ^-0.14 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.9 ^0.9 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.31 ^-0.42 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.86 ^1.79 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.12 ^-0.27 ^-0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.6 ^1.27 ^1.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.39 ^-0.51 ^-0.15 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.77 ^1.59 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.4 ^0.34 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.71 ^-0.85 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.32 ^-0.12 ^-0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.36 ^0.81 ^1.83 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.6 ^-0.03 ^0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^2.34 ^0.23 ^-0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.17 ^-0.08 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.66 ^0.73 ^2.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.44 ^-0.47 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.42 ^1.75 ^0.89 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.38 ^-0.17 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^1.0 ^0.6 ^2.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.35 ^-0.53 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.98 ^1.98 ^0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.6 ^0.31 ^-0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.99 ^-1.59 ^1.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.24 ^0.4 ^0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.25 ^-1.66 ^-1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.67 ^0.19 ^0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.58 ^-0.89 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.04 ^0.73 ^-0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-0.36 ^-2.7 ^0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.56 ^-0.36 ^0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.23 ^1.43 ^-0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.57 ^0.38 ^-0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.4 ^-1.05 ^0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.68 ^0.26 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-2.57 ^-0.45 ^-0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.4 ^-0.52 ^-0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.4,0.0,0.722],to_color:[0.617,0.144,0.0],scale:0.314} ^-1.91 ^1.67 ^1.15 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_053.mcfunction new file mode 100644 index 000000000..3f0b4f1ad --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_053.mcfunction @@ -0,0 +1,112 @@ +# frame 53 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.815 0 +# Circle +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^0.6 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^0.58 ^0.0 ^-0.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^0.4 ^0.0 ^-0.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^0.11 ^0.0 ^-0.6 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^-0.21 ^0.0 ^-0.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^-0.47 ^0.0 ^-0.4 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^-0.6 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^-0.58 ^0.0 ^0.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^-0.4 ^0.0 ^0.47 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^-0.11 ^0.0 ^0.6 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^0.21 ^0.0 ^0.58 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.114,0.0,0.0],scale:2.886} ^0.47 ^0.0 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.27 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.86 ^0.28 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.04 ^-0.18 ^0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.18 ^1.0 ^-1.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.14 ^-0.23 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.93 ^1.55 ^-0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.15 ^0.09 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.22 ^-0.76 ^-1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.06 ^-0.24 ^-0.09 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.32 ^1.81 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.23 ^-0.12 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.73 ^0.69 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.06 ^-0.22 ^0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.73 ^1.51 ^-0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.14 ^-0.12 ^-0.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.67 ^0.92 ^1.5 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.21 ^-0.23 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.43 ^1.62 ^0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.17 ^0.08 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.3 ^-0.84 ^1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.1 ^-0.15 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^0.95 ^0.73 ^1.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.3 ^0.05 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^2.07 ^-0.09 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.16 ^-0.08 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.82 ^0.44 ^1.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.23 ^-0.16 ^-0.14 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.51 ^1.38 ^0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.14 ^0.01 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^1.08 ^0.28 ^1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.07 ^-0.29 ^-0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.82 ^1.91 ^0.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.2 ^0.2 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.7 ^-1.27 ^1.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.21 ^0.13 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.16 ^-1.19 ^-1.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.35 ^0.02 ^0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.37 ^-0.46 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.01 ^0.36 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-0.03 ^-2.48 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.22 ^-0.26 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.76 ^1.49 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.3 ^0.19 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.03 ^-1.26 ^0.72 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.28 ^0.08 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-2.16 ^-0.66 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.24 ^-0.15 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.369,0.0,0.758],to_color:[0.628,0.152,0.0],scale:0.33} ^-1.57 ^1.39 ^1.35 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_054.mcfunction new file mode 100644 index 000000000..d5680dd09 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_054.mcfunction @@ -0,0 +1,112 @@ +# frame 54 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.844 0 +# Circle +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^0.52 ^0.0 ^0.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^0.49 ^0.0 ^-0.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^0.33 ^0.0 ^-0.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^0.08 ^0.0 ^-0.52 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^-0.19 ^0.0 ^-0.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^-0.41 ^0.0 ^-0.33 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^-0.52 ^0.0 ^-0.08 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^-0.49 ^0.0 ^0.19 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^-0.33 ^0.0 ^0.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^-0.08 ^0.0 ^0.52 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^0.19 ^0.0 ^0.49 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.097,0.0,0.0],scale:2.903} ^0.41 ^0.0 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.63 ^0.14 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.03 ^1.03 ^-1.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.64 ^1.49 ^-0.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.87 ^-0.78 ^-1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.53 ^1.52 ^0.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.51 ^0.48 ^-0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.58 ^1.2 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.7 ^0.59 ^1.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.07 ^1.57 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.89 ^-0.79 ^1.48 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.56 ^0.63 ^1.7 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.76 ^-0.36 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.92 ^0.17 ^1.66 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.52 ^1.0 ^0.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^1.1 ^0.01 ^1.55 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-0.66 ^1.77 ^0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.38 ^-0.93 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.04 ^-0.74 ^-1.78 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-2.1 ^-0.08 ^-0.63 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^0.25 ^-2.17 ^0.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.29 ^1.48 ^-0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.63 ^-1.38 ^0.49 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.71 ^-0.81 ^-1.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.339,0.0,0.795],to_color:[0.638,0.159,0.0],scale:0.346} ^-1.22 ^1.09 ^1.46 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_055.mcfunction new file mode 100644 index 000000000..e4cca339b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_055.mcfunction @@ -0,0 +1,112 @@ +# frame 55 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.873 0 +# Circle +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^0.44 ^0.0 ^0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^0.41 ^0.0 ^-0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^0.27 ^0.0 ^-0.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^0.06 ^0.0 ^-0.44 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^-0.17 ^0.0 ^-0.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^-0.36 ^0.0 ^-0.27 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^-0.44 ^0.0 ^-0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^-0.41 ^0.0 ^0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^-0.27 ^0.0 ^0.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^-0.06 ^0.0 ^0.44 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^0.17 ^0.0 ^0.41 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.08,0.0,0.0],scale:2.92} ^0.36 ^0.0 ^0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.34 ^0.02 ^0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.2 ^0.98 ^-0.98 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.37 ^1.35 ^-0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.53 ^-0.75 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.67 ^1.2 ^0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.24 ^0.28 ^-0.59 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.43 ^0.88 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.68 ^0.28 ^1.2 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.72 ^1.44 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.51 ^-0.7 ^1.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.22 ^0.51 ^1.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.4 ^-0.55 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.94 ^-0.05 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.44 ^0.64 ^0.38 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^1.05 ^-0.22 ^1.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.48 ^1.54 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.04 ^-0.61 ^1.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.88 ^-0.33 ^-1.61 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.75 ^0.24 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^0.47 ^-1.8 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.83 ^1.38 ^-0.94 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.21 ^-1.39 ^0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-1.24 ^-0.88 ^-1.07 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.309,0.0,0.831],to_color:[0.649,0.166,0.0],scale:0.361} ^-0.86 ^0.78 ^1.46 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_056.mcfunction new file mode 100644 index 000000000..1b0291eeb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_056.mcfunction @@ -0,0 +1,112 @@ +# frame 56 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.902 0 +# Circle +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^0.36 ^0.0 ^0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^0.33 ^0.0 ^-0.15 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^0.21 ^0.0 ^-0.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^0.04 ^0.0 ^-0.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^-0.15 ^0.0 ^-0.33 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^-0.29 ^0.0 ^-0.21 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^-0.36 ^0.0 ^-0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^-0.33 ^0.0 ^0.15 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^-0.21 ^0.0 ^0.29 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^-0.04 ^0.0 ^0.36 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^0.15 ^0.0 ^0.33 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.063,0.0,0.0],scale:2.937} ^0.29 ^0.0 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.004 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.01 ^-0.08 ^0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.010 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.32 ^0.87 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.016 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.13 ^1.13 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.022 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.23 ^-0.66 ^-0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.028 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.72 ^0.85 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.034 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.94 ^0.11 ^-0.64 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.040 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.28 ^0.56 ^-0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.046 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.61 ^0.02 ^0.97 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.052 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.39 ^1.22 ^-0.29 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.058 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.17 ^-0.58 ^1.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.064 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.07 ^0.38 ^1.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.070 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.01 ^-0.66 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.076 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.89 ^-0.22 ^0.95 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.082 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^1.26 ^0.31 ^0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.088 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.93 ^-0.37 ^0.86 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.094 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.31 ^1.25 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.100 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.69 ^-0.31 ^1.31 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.106 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.69 ^0.02 ^-1.35 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.112 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-1.34 ^0.46 ^-0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.118 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^0.6 ^-1.37 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.124 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.41 ^1.2 ^-0.84 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.130 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.79 ^-1.29 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.136 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.78 ^-0.87 ^-0.96 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.142 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.279,0.0,0.867],to_color:[0.66,0.173,0.0],scale:0.377} ^-0.52 ^0.48 ^1.34 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_057.mcfunction new file mode 100644 index 000000000..0ccf7d061 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_057.mcfunction @@ -0,0 +1,64 @@ +# frame 57 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.929 0 +# Circle +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^0.28 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^0.25 ^0.0 ^-0.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^0.16 ^0.0 ^-0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^0.02 ^0.0 ^-0.28 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^-0.12 ^0.0 ^-0.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^-0.23 ^0.0 ^-0.16 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^-0.28 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^-0.25 ^0.0 ^0.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^-0.16 ^0.0 ^0.23 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^-0.02 ^0.0 ^0.28 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^0.12 ^0.0 ^0.25 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.047,0.0,0.0],scale:2.953} ^0.23 ^0.0 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.67 ^-0.14 ^0.53 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.36 ^0.69 ^-0.37 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.05 ^0.85 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.01 ^-0.53 ^-0.68 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.67 ^0.52 ^0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.62 ^-0.03 ^-0.6 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.14 ^0.28 ^-0.81 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.49 ^-0.16 ^0.69 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.12 ^0.93 ^-0.34 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.08 ^-0.43 ^0.9 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.26 ^0.24 ^0.93 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.62 ^-0.65 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.75 ^-0.31 ^0.58 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.99 ^0.04 ^0.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.74 ^-0.44 ^0.51 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.15 ^0.9 ^-0.39 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.37 ^-0.06 ^1.08 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.47 ^0.25 ^-1.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.9 ^0.57 ^-0.42 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^0.62 ^-0.91 ^-0.32 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.07 ^0.93 ^-0.67 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.4 ^-1.07 ^-0.04 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.38 ^-0.76 ^-0.77 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.249,0.0,0.903],to_color:[0.671,0.18,0.0],scale:0.393} ^-0.22 ^0.22 ^1.1 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_058.mcfunction new file mode 100644 index 000000000..ba52eb3ce --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_058.mcfunction @@ -0,0 +1,64 @@ +# frame 58 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.956 0 +# Circle +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^0.2 ^0.0 ^0.01 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^0.18 ^0.0 ^-0.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^0.11 ^0.0 ^-0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^0.01 ^0.0 ^-0.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^-0.09 ^0.0 ^-0.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^-0.17 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^-0.2 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^-0.18 ^0.0 ^0.09 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^-0.11 ^0.0 ^0.17 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^-0.01 ^0.0 ^0.2 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^0.09 ^0.0 ^0.18 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.03,0.0,0.0],scale:2.97} ^0.17 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.34 ^-0.15 ^0.44 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.32 ^0.46 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.15 ^0.53 ^0.16 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.15 ^-0.35 ^-0.43 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.52 ^0.22 ^0.1 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.31 ^-0.1 ^-0.47 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.03 ^0.06 ^-0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.33 ^-0.24 ^0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.07 ^0.58 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.22 ^-0.26 ^0.57 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.32 ^0.12 ^0.56 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.28 ^-0.53 ^-0.27 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.52 ^-0.31 ^0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.65 ^-0.12 ^-0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.49 ^-0.4 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.03 ^0.53 ^-0.4 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.11 ^0.09 ^0.75 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.26 ^0.35 ^-0.62 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.47 ^0.52 ^-0.28 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.52 ^-0.47 ^-0.3 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.15 ^0.6 ^-0.45 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.1 ^-0.74 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^-0.06 ^-0.55 ^-0.52 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.22,0.0,0.938],to_color:[0.681,0.187,0.0],scale:0.408} ^0.0 ^0.02 ^0.76 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_059.mcfunction new file mode 100644 index 000000000..ef8d634e6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_059.mcfunction @@ -0,0 +1,64 @@ +# frame 59 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 1.982 0 +# Circle +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^0.12 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^0.11 ^0.0 ^-0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^0.06 ^0.0 ^-0.1 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^0.0 ^0.0 ^-0.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^-0.06 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^-0.1 ^0.0 ^-0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^-0.12 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^-0.11 ^0.0 ^0.06 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^-0.06 ^0.0 ^0.1 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^-0.0 ^0.0 ^0.12 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^0.06 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.014,0.0,0.0],scale:2.986} ^0.1 ^0.0 ^0.06 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.08 ^-0.1 ^0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.19 ^0.19 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.14 ^0.2 ^0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.15 ^-0.15 ^-0.17 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.27 ^0.02 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.07 ^-0.1 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.02 ^-0.05 ^-0.26 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.14 ^-0.18 ^0.13 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.12 ^0.23 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.19 ^-0.09 ^0.23 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.23 ^0.02 ^0.21 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.03 ^-0.29 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.24 ^-0.19 ^0.03 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.27 ^-0.15 ^-0.05 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.21 ^-0.23 ^0.01 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.03 ^0.18 ^-0.25 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.04 ^0.12 ^0.33 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.08 ^0.26 ^-0.24 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^-0.13 ^0.31 ^-0.12 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.28 ^-0.12 ^-0.18 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.18 ^0.24 ^-0.19 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.06 ^-0.34 ^-0.11 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.09 ^-0.26 ^-0.22 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.192,0.0,0.972],to_color:[0.692,0.194,0.0],scale:0.422} ^0.09 ^-0.07 ^0.34 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_060.mcfunction new file mode 100644 index 000000000..f8928e1f1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/finishing_move/fc_060.mcfunction @@ -0,0 +1,64 @@ +# frame 60 / 60 +# 0_sound +playsound block.bell.resonate hostile @a[distance=..32] ~ ~ ~ 0.7 2.0 0 +# Circle +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^0.05 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^0.04 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^0.02 ^0.0 ^-0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^-0.0 ^0.0 ^-0.05 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^-0.02 ^0.0 ^-0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^-0.04 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^-0.05 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^-0.04 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^-0.02 ^0.0 ^0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^0.0 ^0.0 ^0.05 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^0.02 ^0.0 ^0.04 0.0 0.0 0.0 0.5 1 normal +particle dust{color:[0.0,0.0,0.0],scale:3.0} ^0.04 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.005 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.011 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.017 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.023 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.029 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.035 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.041 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3--Vert.047 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.053 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.059 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.065 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.071 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.077 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^-0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.083 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.089 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.001--Vert.095 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.101 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.107 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.113 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.119 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.125 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.131 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.137 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 normal +# Collection 3.002--Vert.143 +particle dust_color_transition{from_color:[0.168,0.0,1.0],to_color:[0.7,0.2,0.0],scale:0.435} ^0.0 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 normal diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_001.mcfunction new file mode 100644 index 000000000..4e68cffaf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_001.mcfunction @@ -0,0 +1,76 @@ +# frame 1 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 0.91 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^0.29 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^0.59 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^0.87 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.15 ^0.0 ^2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.41 ^0.0 ^2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.67 ^0.0 ^2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.9 ^0.0 ^2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.12 ^0.0 ^2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.32 ^0.0 ^1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.49 ^0.0 ^1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.77 ^0.0 ^1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.87 ^0.0 ^0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.94 ^0.0 ^0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.99 ^0.0 ^0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^3.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.99 ^0.0 ^-0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.94 ^0.0 ^-0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.87 ^0.0 ^-0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.77 ^0.0 ^-1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.65 ^0.0 ^-1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.49 ^0.0 ^-1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.32 ^0.0 ^-1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^2.12 ^0.0 ^-2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.9 ^0.0 ^-2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.67 ^0.0 ^-2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.41 ^0.0 ^-2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^1.15 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^0.87 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^0.59 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^0.29 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.0 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.29 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.59 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.87 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.15 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.41 ^0.0 ^-2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.67 ^0.0 ^-2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.9 ^0.0 ^-2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.12 ^0.0 ^-2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.32 ^0.0 ^-1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.49 ^0.0 ^-1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.65 ^0.0 ^-1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.77 ^0.0 ^-1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.87 ^0.0 ^-0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.94 ^0.0 ^-0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.99 ^0.0 ^-0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-3.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.99 ^0.0 ^0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.94 ^0.0 ^0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.87 ^0.0 ^0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.77 ^0.0 ^1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.49 ^0.0 ^1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.32 ^0.0 ^1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-2.12 ^0.0 ^2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.9 ^0.0 ^2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.67 ^0.0 ^2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.41 ^0.0 ^2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-1.15 ^0.0 ^2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.87 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.59 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.33999999999999997} ^-0.29 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.6 ^0.0 ^-1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.6 ^0.0 ^-1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-0.0 ^0.3 ^3.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.6 ^0.3 ^-1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.6 ^0.3 ^-1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_002.mcfunction new file mode 100644 index 000000000..6e5ae2b22 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_002.mcfunction @@ -0,0 +1,74 @@ +# frame 2 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.38} ^0.16 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^0.46 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^0.74 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.02 ^0.0 ^2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.3 ^0.0 ^2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.56 ^0.0 ^2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.8 ^0.0 ^2.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.03 ^0.0 ^2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.23 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.42 ^0.0 ^1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.58 ^0.0 ^1.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.72 ^0.0 ^1.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.83 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.91 ^0.0 ^0.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.97 ^0.0 ^0.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^3.0 ^0.0 ^0.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^3.0 ^0.0 ^-0.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.97 ^0.0 ^-0.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.91 ^0.0 ^-0.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.82 ^0.0 ^-1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.71 ^0.0 ^-1.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.57 ^0.0 ^-1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.4 ^0.0 ^-1.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.21 ^0.0 ^-2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^2.0 ^0.0 ^-2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.77 ^0.0 ^-2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.53 ^0.0 ^-2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.27 ^0.0 ^-2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^1.0 ^0.0 ^-2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^0.71 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^0.43 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^0.13 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-0.16 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-0.46 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-0.74 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.02 ^0.0 ^-2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.3 ^0.0 ^-2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.56 ^0.0 ^-2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.8 ^0.0 ^-2.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.03 ^0.0 ^-2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.23 ^0.0 ^-2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.42 ^0.0 ^-1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.58 ^0.0 ^-1.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.72 ^0.0 ^-1.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.83 ^0.0 ^-1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.91 ^0.0 ^-0.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.97 ^0.0 ^-0.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-3.0 ^0.0 ^-0.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-3.0 ^0.0 ^0.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.97 ^0.0 ^0.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.91 ^0.0 ^0.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.82 ^0.0 ^1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.71 ^0.0 ^1.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.57 ^0.0 ^1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.4 ^0.0 ^1.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.21 ^0.0 ^2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-2.0 ^0.0 ^2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.77 ^0.0 ^2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.53 ^0.0 ^2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.27 ^0.0 ^2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-1.0 ^0.0 ^2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-0.71 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-0.43 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.38} ^-0.13 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.64 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.21 ^0.0 ^-2.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.86 ^0.0 ^-0.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^0.64 ^0.3 ^2.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.21 ^0.3 ^-2.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.86 ^0.3 ^-0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_003.mcfunction new file mode 100644 index 000000000..fa2ac5ffe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_003.mcfunction @@ -0,0 +1,76 @@ +# frame 3 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 0.93 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.32 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.62 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.9 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.18 ^0.0 ^2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.44 ^0.0 ^2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.69 ^0.0 ^2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.93 ^0.0 ^2.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.14 ^0.0 ^2.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.34 ^0.0 ^1.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.51 ^0.0 ^1.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.66 ^0.0 ^1.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.78 ^0.0 ^1.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.88 ^0.0 ^0.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.95 ^0.0 ^0.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.99 ^0.0 ^0.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^3.0 ^0.0 ^-0.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.98 ^0.0 ^-0.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.94 ^0.0 ^-0.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.86 ^0.0 ^-0.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.76 ^0.0 ^-1.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.63 ^0.0 ^-1.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.48 ^0.0 ^-1.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.3 ^0.0 ^-1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^2.1 ^0.0 ^-2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.88 ^0.0 ^-2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.64 ^0.0 ^-2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.39 ^0.0 ^-2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^1.12 ^0.0 ^-2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.84 ^0.0 ^-2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.56 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.26 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.03 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.32 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.62 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.9 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.18 ^0.0 ^-2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.44 ^0.0 ^-2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.69 ^0.0 ^-2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.93 ^0.0 ^-2.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.14 ^0.0 ^-2.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.34 ^0.0 ^-1.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.51 ^0.0 ^-1.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.66 ^0.0 ^-1.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.78 ^0.0 ^-1.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.88 ^0.0 ^-0.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.95 ^0.0 ^-0.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.99 ^0.0 ^-0.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-3.0 ^0.0 ^0.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.98 ^0.0 ^0.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.94 ^0.0 ^0.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.86 ^0.0 ^0.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.76 ^0.0 ^1.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.63 ^0.0 ^1.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.48 ^0.0 ^1.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.3 ^0.0 ^1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-2.1 ^0.0 ^2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.88 ^0.0 ^2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.64 ^0.0 ^2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.39 ^0.0 ^2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-1.12 ^0.0 ^2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.84 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.56 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^-0.26 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.42} ^0.03 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.26 ^0.0 ^2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.73 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.99 ^0.0 ^-0.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^1.26 ^0.3 ^2.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.73 ^0.3 ^-2.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.99 ^0.3 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_004.mcfunction new file mode 100644 index 000000000..15a29d3d4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_004.mcfunction @@ -0,0 +1,74 @@ +# frame 4 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.49 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.77 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.05 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.32 ^0.0 ^2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.58 ^0.0 ^2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.82 ^0.0 ^2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.05 ^0.0 ^2.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.25 ^0.0 ^1.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.44 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.6 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.73 ^0.0 ^1.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.84 ^0.0 ^0.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.92 ^0.0 ^0.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.97 ^0.0 ^0.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^3.0 ^0.0 ^0.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.99 ^0.0 ^-0.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.96 ^0.0 ^-0.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.9 ^0.0 ^-0.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.81 ^0.0 ^-1.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.69 ^0.0 ^-1.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.55 ^0.0 ^-1.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.38 ^0.0 ^-1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^2.19 ^0.0 ^-2.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.98 ^0.0 ^-2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.75 ^0.0 ^-2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.5 ^0.0 ^-2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^1.24 ^0.0 ^-2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.97 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.68 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.39 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.1 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.19 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.49 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.77 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.05 ^0.0 ^-2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.32 ^0.0 ^-2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.58 ^0.0 ^-2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.82 ^0.0 ^-2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.05 ^0.0 ^-2.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.25 ^0.0 ^-1.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.44 ^0.0 ^-1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.6 ^0.0 ^-1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.73 ^0.0 ^-1.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.84 ^0.0 ^-0.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.92 ^0.0 ^-0.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.97 ^0.0 ^-0.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-3.0 ^0.0 ^-0.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.99 ^0.0 ^0.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.96 ^0.0 ^0.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.9 ^0.0 ^0.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.81 ^0.0 ^1.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.69 ^0.0 ^1.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.55 ^0.0 ^1.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.38 ^0.0 ^1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-2.19 ^0.0 ^2.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.98 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.75 ^0.0 ^2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.5 ^0.0 ^2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-1.24 ^0.0 ^2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.97 ^0.0 ^2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.68 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.39 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^-0.1 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.45999999999999996} ^0.19 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.82 ^0.0 ^2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.16 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.98 ^0.0 ^0.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^1.82 ^0.3 ^2.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.16 ^0.3 ^-2.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.98 ^0.3 ^0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_005.mcfunction new file mode 100644 index 000000000..7090d06a3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_005.mcfunction @@ -0,0 +1,76 @@ +# frame 5 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 0.9500000000000001 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.64 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.93 ^0.0 ^2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.2 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.47 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.72 ^0.0 ^2.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.95 ^0.0 ^2.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.16 ^0.0 ^2.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.36 ^0.0 ^1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.53 ^0.0 ^1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.67 ^0.0 ^1.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.79 ^0.0 ^1.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.89 ^0.0 ^0.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.95 ^0.0 ^0.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.99 ^0.0 ^0.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^3.0 ^0.0 ^-0.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.98 ^0.0 ^-0.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.93 ^0.0 ^-0.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.85 ^0.0 ^-0.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.75 ^0.0 ^-1.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.62 ^0.0 ^-1.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.46 ^0.0 ^-1.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.28 ^0.0 ^-1.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^2.08 ^0.0 ^-2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.86 ^0.0 ^-2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.62 ^0.0 ^-2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.36 ^0.0 ^-2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^1.09 ^0.0 ^-2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.81 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.53 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.23 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.06 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.35 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.64 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.93 ^0.0 ^-2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.2 ^0.0 ^-2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.47 ^0.0 ^-2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.72 ^0.0 ^-2.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.95 ^0.0 ^-2.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.16 ^0.0 ^-2.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.36 ^0.0 ^-1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.53 ^0.0 ^-1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.67 ^0.0 ^-1.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.79 ^0.0 ^-1.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.89 ^0.0 ^-0.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.95 ^0.0 ^-0.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.99 ^0.0 ^-0.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-3.0 ^0.0 ^0.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.98 ^0.0 ^0.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.93 ^0.0 ^0.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.85 ^0.0 ^0.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.75 ^0.0 ^1.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.62 ^0.0 ^1.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.46 ^0.0 ^1.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.28 ^0.0 ^1.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-2.08 ^0.0 ^2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.86 ^0.0 ^2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.62 ^0.0 ^2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.36 ^0.0 ^2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-1.09 ^0.0 ^2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.81 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.53 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^-0.23 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.06 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5} ^0.35 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.29 ^0.0 ^1.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.54 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.83 ^0.0 ^1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.29 ^0.3 ^1.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^0.54 ^0.3 ^-2.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.83 ^0.3 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_006.mcfunction new file mode 100644 index 000000000..9fd6d0a57 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_006.mcfunction @@ -0,0 +1,74 @@ +# frame 6 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.8 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.08 ^0.0 ^2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.35 ^0.0 ^2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.61 ^0.0 ^2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.85 ^0.0 ^2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.07 ^0.0 ^2.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.27 ^0.0 ^1.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.45 ^0.0 ^1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.61 ^0.0 ^1.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.74 ^0.0 ^1.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.85 ^0.0 ^0.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.93 ^0.0 ^0.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.98 ^0.0 ^0.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^3.0 ^0.0 ^0.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.99 ^0.0 ^-0.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.96 ^0.0 ^-0.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.89 ^0.0 ^-0.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.8 ^0.0 ^-1.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.68 ^0.0 ^-1.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.53 ^0.0 ^-1.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.36 ^0.0 ^-1.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^2.17 ^0.0 ^-2.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.96 ^0.0 ^-2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.73 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.48 ^0.0 ^-2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^1.21 ^0.0 ^-2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.94 ^0.0 ^-2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.65 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.36 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.07 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.22 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.52 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.8 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.08 ^0.0 ^-2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.35 ^0.0 ^-2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.61 ^0.0 ^-2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.85 ^0.0 ^-2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.07 ^0.0 ^-2.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.27 ^0.0 ^-1.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.45 ^0.0 ^-1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.61 ^0.0 ^-1.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.74 ^0.0 ^-1.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.85 ^0.0 ^-0.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.93 ^0.0 ^-0.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.98 ^0.0 ^-0.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-3.0 ^0.0 ^-0.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.99 ^0.0 ^0.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.96 ^0.0 ^0.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.89 ^0.0 ^0.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.8 ^0.0 ^1.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.68 ^0.0 ^1.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.53 ^0.0 ^1.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.36 ^0.0 ^1.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-2.17 ^0.0 ^2.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.96 ^0.0 ^2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.73 ^0.0 ^2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.48 ^0.0 ^2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-1.21 ^0.0 ^2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.94 ^0.0 ^2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.65 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.36 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^-0.07 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.22 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.54} ^0.52 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.11 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.54 ^0.0 ^1.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.65 ^0.3 ^1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-0.11 ^0.3 ^-3.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.54 ^0.3 ^1.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_007.mcfunction new file mode 100644 index 000000000..50a9e681e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_007.mcfunction @@ -0,0 +1,76 @@ +# frame 7 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 0.97 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.96 ^0.0 ^2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.23 ^0.0 ^2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.49 ^0.0 ^2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.74 ^0.0 ^2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.97 ^0.0 ^2.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.18 ^0.0 ^2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.38 ^0.0 ^1.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.54 ^0.0 ^1.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.69 ^0.0 ^1.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.81 ^0.0 ^1.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.9 ^0.0 ^0.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.96 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.99 ^0.0 ^0.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^3.0 ^0.0 ^-0.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.98 ^0.0 ^-0.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.92 ^0.0 ^-0.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.84 ^0.0 ^-0.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.74 ^0.0 ^-1.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.6 ^0.0 ^-1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.44 ^0.0 ^-1.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.26 ^0.0 ^-1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^2.06 ^0.0 ^-2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.83 ^0.0 ^-2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.59 ^0.0 ^-2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.33 ^0.0 ^-2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^1.06 ^0.0 ^-2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.78 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.5 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.2 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.09 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.38 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.67 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.96 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.23 ^0.0 ^-2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.49 ^0.0 ^-2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.74 ^0.0 ^-2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.97 ^0.0 ^-2.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.18 ^0.0 ^-2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.38 ^0.0 ^-1.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.54 ^0.0 ^-1.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.69 ^0.0 ^-1.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.81 ^0.0 ^-1.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.9 ^0.0 ^-0.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.96 ^0.0 ^-0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.99 ^0.0 ^-0.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-3.0 ^0.0 ^0.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.98 ^0.0 ^0.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.92 ^0.0 ^0.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.84 ^0.0 ^0.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.74 ^0.0 ^1.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.6 ^0.0 ^1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.44 ^0.0 ^1.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.26 ^0.0 ^1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-2.06 ^0.0 ^2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.83 ^0.0 ^2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.59 ^0.0 ^2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.33 ^0.0 ^2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-1.06 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.78 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.5 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^-0.2 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.09 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.38 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.5800000000000001} ^0.67 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.89 ^0.0 ^0.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.75 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.14 ^0.0 ^2.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.89 ^0.3 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-0.75 ^0.3 ^-2.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.14 ^0.3 ^2.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_008.mcfunction new file mode 100644 index 000000000..9154a6e93 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_008.mcfunction @@ -0,0 +1,74 @@ +# frame 8 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.11 ^0.0 ^2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.38 ^0.0 ^2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.63 ^0.0 ^2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.87 ^0.0 ^2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.09 ^0.0 ^2.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.29 ^0.0 ^1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.47 ^0.0 ^1.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.63 ^0.0 ^1.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.76 ^0.0 ^1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.86 ^0.0 ^0.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.93 ^0.0 ^0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.98 ^0.0 ^0.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^3.0 ^0.0 ^0.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.99 ^0.0 ^-0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.95 ^0.0 ^-0.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.88 ^0.0 ^-0.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.79 ^0.0 ^-1.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.66 ^0.0 ^-1.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.52 ^0.0 ^-1.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.34 ^0.0 ^-1.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^2.15 ^0.0 ^-2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.93 ^0.0 ^-2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.7 ^0.0 ^-2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.45 ^0.0 ^-2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^1.19 ^0.0 ^-2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.91 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.63 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.33 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.04 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.25 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.55 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.83 ^0.0 ^-2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.11 ^0.0 ^-2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.38 ^0.0 ^-2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.63 ^0.0 ^-2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.87 ^0.0 ^-2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.09 ^0.0 ^-2.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.29 ^0.0 ^-1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.47 ^0.0 ^-1.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.63 ^0.0 ^-1.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.76 ^0.0 ^-1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.86 ^0.0 ^-0.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.93 ^0.0 ^-0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.98 ^0.0 ^-0.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-3.0 ^0.0 ^-0.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.99 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.95 ^0.0 ^0.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.88 ^0.0 ^0.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.79 ^0.0 ^1.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.66 ^0.0 ^1.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.52 ^0.0 ^1.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.34 ^0.0 ^1.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-2.15 ^0.0 ^2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.93 ^0.0 ^2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.7 ^0.0 ^2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.45 ^0.0 ^2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-1.19 ^0.0 ^2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.91 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.63 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.33 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^-0.04 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.25 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.55 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.62} ^0.83 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^3.0 ^0.0 ^0.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.36 ^0.0 ^-2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.64 ^0.0 ^2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^3.0 ^0.3 ^0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.36 ^0.3 ^-2.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.64 ^0.3 ^2.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_009.mcfunction new file mode 100644 index 000000000..469eca6c3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_009.mcfunction @@ -0,0 +1,76 @@ +# frame 9 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 0.99 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.26 ^0.0 ^2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.52 ^0.0 ^2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.77 ^0.0 ^2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.0 ^0.0 ^2.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.21 ^0.0 ^2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.39 ^0.0 ^1.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.56 ^0.0 ^1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.7 ^0.0 ^1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.82 ^0.0 ^1.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.9 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.96 ^0.0 ^0.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^3.0 ^0.0 ^0.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^3.0 ^0.0 ^-0.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.97 ^0.0 ^-0.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.92 ^0.0 ^-0.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.83 ^0.0 ^-0.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.72 ^0.0 ^-1.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.59 ^0.0 ^-1.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.42 ^0.0 ^-1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.24 ^0.0 ^-2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^2.03 ^0.0 ^-2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.81 ^0.0 ^-2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.56 ^0.0 ^-2.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.31 ^0.0 ^-2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^1.03 ^0.0 ^-2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.75 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.47 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.17 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.12 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.42 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.7 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.99 ^0.0 ^-2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.26 ^0.0 ^-2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.52 ^0.0 ^-2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.77 ^0.0 ^-2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.0 ^0.0 ^-2.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.21 ^0.0 ^-2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.39 ^0.0 ^-1.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.56 ^0.0 ^-1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.7 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.82 ^0.0 ^-1.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.9 ^0.0 ^-0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.96 ^0.0 ^-0.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-3.0 ^0.0 ^-0.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-3.0 ^0.0 ^0.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.97 ^0.0 ^0.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.92 ^0.0 ^0.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.83 ^0.0 ^0.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.72 ^0.0 ^1.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.59 ^0.0 ^1.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.42 ^0.0 ^1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.24 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-2.03 ^0.0 ^2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.81 ^0.0 ^2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.56 ^0.0 ^2.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.31 ^0.0 ^2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-1.03 ^0.0 ^2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.75 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.47 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^-0.17 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.12 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.42 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.7 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.6599999999999999} ^0.99 ^0.0 ^2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.96 ^0.0 ^-0.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.9 ^0.0 ^-2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.06 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.96 ^0.3 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.9 ^0.3 ^-2.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.06 ^0.3 ^2.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_010.mcfunction new file mode 100644 index 000000000..1de761c47 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_010.mcfunction @@ -0,0 +1,74 @@ +# frame 10 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.41 ^0.0 ^2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.66 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.9 ^0.0 ^2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.11 ^0.0 ^2.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.31 ^0.0 ^1.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.49 ^0.0 ^1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.64 ^0.0 ^1.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.77 ^0.0 ^1.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.87 ^0.0 ^0.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.94 ^0.0 ^0.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.98 ^0.0 ^0.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^3.0 ^0.0 ^0.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.99 ^0.0 ^-0.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.94 ^0.0 ^-0.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.87 ^0.0 ^-0.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.78 ^0.0 ^-1.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.65 ^0.0 ^-1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.5 ^0.0 ^-1.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.33 ^0.0 ^-1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^2.13 ^0.0 ^-2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.91 ^0.0 ^-2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.68 ^0.0 ^-2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.42 ^0.0 ^-2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.16 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.88 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.6 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.3 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.01 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.28 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.58 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.86 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.14 ^0.0 ^-2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.41 ^0.0 ^-2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.66 ^0.0 ^-2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.9 ^0.0 ^-2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.11 ^0.0 ^-2.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.31 ^0.0 ^-1.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.49 ^0.0 ^-1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.64 ^0.0 ^-1.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.77 ^0.0 ^-1.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.87 ^0.0 ^-0.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.94 ^0.0 ^-0.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.98 ^0.0 ^-0.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-3.0 ^0.0 ^-0.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.99 ^0.0 ^0.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.94 ^0.0 ^0.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.87 ^0.0 ^0.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.78 ^0.0 ^1.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.5 ^0.0 ^1.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.33 ^0.0 ^1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-2.13 ^0.0 ^2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.91 ^0.0 ^2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.68 ^0.0 ^2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.42 ^0.0 ^2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-1.16 ^0.0 ^2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.88 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.6 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.3 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^-0.01 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.28 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.58 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^0.86 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.7} ^1.14 ^0.0 ^2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.79 ^0.0 ^-1.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.36 ^0.0 ^-1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.43 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.79 ^0.3 ^-1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.36 ^0.3 ^-1.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-0.43 ^0.3 ^2.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_011.mcfunction new file mode 100644 index 000000000..a7c189af5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_011.mcfunction @@ -0,0 +1,76 @@ +# frame 11 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.01 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.55 ^0.0 ^2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.79 ^0.0 ^2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.02 ^0.0 ^2.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.23 ^0.0 ^2.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.41 ^0.0 ^1.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.58 ^0.0 ^1.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.71 ^0.0 ^1.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.83 ^0.0 ^1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.91 ^0.0 ^0.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.97 ^0.0 ^0.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^3.0 ^0.0 ^0.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^3.0 ^0.0 ^-0.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.97 ^0.0 ^-0.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.91 ^0.0 ^-0.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.82 ^0.0 ^-1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.71 ^0.0 ^-1.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.57 ^0.0 ^-1.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.41 ^0.0 ^-1.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.22 ^0.0 ^-2.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^2.01 ^0.0 ^-2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.78 ^0.0 ^-2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.54 ^0.0 ^-2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.28 ^0.0 ^-2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.01 ^0.0 ^-2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^0.72 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^0.44 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^0.14 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-0.15 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-0.45 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-0.73 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.02 ^0.0 ^-2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.29 ^0.0 ^-2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.55 ^0.0 ^-2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.79 ^0.0 ^-2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.02 ^0.0 ^-2.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.23 ^0.0 ^-2.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.41 ^0.0 ^-1.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.58 ^0.0 ^-1.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.71 ^0.0 ^-1.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.83 ^0.0 ^-1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.91 ^0.0 ^-0.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.97 ^0.0 ^-0.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-3.0 ^0.0 ^-0.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-3.0 ^0.0 ^0.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.97 ^0.0 ^0.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.91 ^0.0 ^0.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.82 ^0.0 ^1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.71 ^0.0 ^1.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.57 ^0.0 ^1.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.41 ^0.0 ^1.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.22 ^0.0 ^2.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-2.01 ^0.0 ^2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.78 ^0.0 ^2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.54 ^0.0 ^2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.28 ^0.0 ^2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-1.01 ^0.0 ^2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-0.72 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-0.44 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^-0.14 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^0.15 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^0.45 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^0.73 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.02 ^0.0 ^2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.74} ^1.29 ^0.0 ^2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.48 ^0.0 ^-1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.7 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.22 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.48 ^0.3 ^-1.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.7 ^0.3 ^-1.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^0.22 ^0.3 ^2.99 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_012.mcfunction new file mode 100644 index 000000000..739365b48 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_012.mcfunction @@ -0,0 +1,74 @@ +# frame 12 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.68 ^0.0 ^2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.92 ^0.0 ^2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.14 ^0.0 ^2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.33 ^0.0 ^1.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.51 ^0.0 ^1.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.66 ^0.0 ^1.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.78 ^0.0 ^1.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.88 ^0.0 ^0.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.95 ^0.0 ^0.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.99 ^0.0 ^0.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^3.0 ^0.0 ^-0.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.98 ^0.0 ^-0.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.94 ^0.0 ^-0.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.86 ^0.0 ^-0.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.76 ^0.0 ^-1.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.64 ^0.0 ^-1.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.48 ^0.0 ^-1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.31 ^0.0 ^-1.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^2.11 ^0.0 ^-2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.89 ^0.0 ^-2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.65 ^0.0 ^-2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.4 ^0.0 ^-2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.13 ^0.0 ^-2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.85 ^0.0 ^-2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.57 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.27 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.02 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.31 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.61 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.89 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.17 ^0.0 ^-2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.43 ^0.0 ^-2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.68 ^0.0 ^-2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.92 ^0.0 ^-2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.14 ^0.0 ^-2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.33 ^0.0 ^-1.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.51 ^0.0 ^-1.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.66 ^0.0 ^-1.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.78 ^0.0 ^-1.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.88 ^0.0 ^-0.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.95 ^0.0 ^-0.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.99 ^0.0 ^-0.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-3.0 ^0.0 ^0.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.98 ^0.0 ^0.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.94 ^0.0 ^0.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.86 ^0.0 ^0.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.76 ^0.0 ^1.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.64 ^0.0 ^1.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.48 ^0.0 ^1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.31 ^0.0 ^1.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-2.11 ^0.0 ^2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.89 ^0.0 ^2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.65 ^0.0 ^2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.4 ^0.0 ^2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-1.13 ^0.0 ^2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.85 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.57 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^-0.27 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.02 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.31 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.61 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^0.89 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.17 ^0.0 ^2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.78} ^1.43 ^0.0 ^2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.06 ^0.0 ^-2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.92 ^0.0 ^-0.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.85 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^2.06 ^0.3 ^-2.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.92 ^0.3 ^-0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^0.85 ^0.3 ^2.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_013.mcfunction new file mode 100644 index 000000000..c38bd5ffb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_013.mcfunction @@ -0,0 +1,76 @@ +# frame 13 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.03 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.82 ^0.0 ^2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.04 ^0.0 ^2.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.25 ^0.0 ^1.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.43 ^0.0 ^1.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.59 ^0.0 ^1.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.73 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.84 ^0.0 ^0.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.92 ^0.0 ^0.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.97 ^0.0 ^0.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^3.0 ^0.0 ^0.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.99 ^0.0 ^-0.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.96 ^0.0 ^-0.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.9 ^0.0 ^-0.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.81 ^0.0 ^-1.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.7 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.55 ^0.0 ^-1.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.39 ^0.0 ^-1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^2.2 ^0.0 ^-2.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.99 ^0.0 ^-2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.76 ^0.0 ^-2.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.51 ^0.0 ^-2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.25 ^0.0 ^-2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.98 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.69 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.4 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.11 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.18 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.48 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.76 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.04 ^0.0 ^-2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.31 ^0.0 ^-2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.57 ^0.0 ^-2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.82 ^0.0 ^-2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.04 ^0.0 ^-2.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.25 ^0.0 ^-1.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.43 ^0.0 ^-1.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.59 ^0.0 ^-1.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.73 ^0.0 ^-1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.84 ^0.0 ^-0.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.92 ^0.0 ^-0.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.97 ^0.0 ^-0.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-3.0 ^0.0 ^-0.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.99 ^0.0 ^0.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.96 ^0.0 ^0.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.9 ^0.0 ^0.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.81 ^0.0 ^1.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.7 ^0.0 ^1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.55 ^0.0 ^1.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.39 ^0.0 ^1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-2.2 ^0.0 ^2.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.99 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.76 ^0.0 ^2.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.51 ^0.0 ^2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-1.25 ^0.0 ^2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.98 ^0.0 ^2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.69 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.4 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^-0.11 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.18 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.48 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^0.76 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.04 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.31 ^0.0 ^2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8200000000000001} ^1.57 ^0.0 ^2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.55 ^0.0 ^-2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-3.0 ^0.0 ^-0.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.45 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^1.55 ^0.3 ^-2.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-3.0 ^0.3 ^-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.45 ^0.3 ^2.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_014.mcfunction new file mode 100644 index 000000000..90a215be5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_014.mcfunction @@ -0,0 +1,74 @@ +# frame 14 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.94 ^0.0 ^2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.16 ^0.0 ^2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.35 ^0.0 ^1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.52 ^0.0 ^1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.67 ^0.0 ^1.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.79 ^0.0 ^1.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.89 ^0.0 ^0.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.95 ^0.0 ^0.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.99 ^0.0 ^0.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^3.0 ^0.0 ^-0.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.98 ^0.0 ^-0.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.93 ^0.0 ^-0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.86 ^0.0 ^-0.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.75 ^0.0 ^-1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.62 ^0.0 ^-1.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.47 ^0.0 ^-1.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.29 ^0.0 ^-1.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^2.09 ^0.0 ^-2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.86 ^0.0 ^-2.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.62 ^0.0 ^-2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.37 ^0.0 ^-2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.1 ^0.0 ^-2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.82 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.54 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.24 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.05 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.34 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.63 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.92 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.19 ^0.0 ^-2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.46 ^0.0 ^-2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.71 ^0.0 ^-2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.94 ^0.0 ^-2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.16 ^0.0 ^-2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.35 ^0.0 ^-1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.52 ^0.0 ^-1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.67 ^0.0 ^-1.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.79 ^0.0 ^-1.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.89 ^0.0 ^-0.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.95 ^0.0 ^-0.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.99 ^0.0 ^-0.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-3.0 ^0.0 ^0.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.98 ^0.0 ^0.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.93 ^0.0 ^0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.86 ^0.0 ^0.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.75 ^0.0 ^1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.62 ^0.0 ^1.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.47 ^0.0 ^1.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.29 ^0.0 ^1.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-2.09 ^0.0 ^2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.86 ^0.0 ^2.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.62 ^0.0 ^2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.37 ^0.0 ^2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-1.1 ^0.0 ^2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.82 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.54 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^-0.24 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.05 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.34 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.63 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^0.92 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.19 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.46 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8600000000000001} ^1.71 ^0.0 ^2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.96 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.94 ^0.0 ^0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.98 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^0.96 ^0.3 ^-2.84 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.94 ^0.3 ^0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.98 ^0.3 ^2.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_015.mcfunction new file mode 100644 index 000000000..e49064475 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_015.mcfunction @@ -0,0 +1,76 @@ +# frame 15 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.05 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.06 ^0.0 ^2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.27 ^0.0 ^1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.45 ^0.0 ^1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.61 ^0.0 ^1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.74 ^0.0 ^1.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.85 ^0.0 ^0.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.93 ^0.0 ^0.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.98 ^0.0 ^0.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^3.0 ^0.0 ^0.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.99 ^0.0 ^-0.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.96 ^0.0 ^-0.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.89 ^0.0 ^-0.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.8 ^0.0 ^-1.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.68 ^0.0 ^-1.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.54 ^0.0 ^-1.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.37 ^0.0 ^-1.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^2.18 ^0.0 ^-2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.97 ^0.0 ^-2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.73 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.49 ^0.0 ^-2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.22 ^0.0 ^-2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.95 ^0.0 ^-2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.66 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.37 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.08 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.21 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.51 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.79 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.07 ^0.0 ^-2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.34 ^0.0 ^-2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.6 ^0.0 ^-2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.84 ^0.0 ^-2.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.06 ^0.0 ^-2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.27 ^0.0 ^-1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.45 ^0.0 ^-1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.61 ^0.0 ^-1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.74 ^0.0 ^-1.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.85 ^0.0 ^-0.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.93 ^0.0 ^-0.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.98 ^0.0 ^-0.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-3.0 ^0.0 ^-0.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.99 ^0.0 ^0.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.96 ^0.0 ^0.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.89 ^0.0 ^0.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.8 ^0.0 ^1.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.68 ^0.0 ^1.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.54 ^0.0 ^1.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.37 ^0.0 ^1.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-2.18 ^0.0 ^2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.97 ^0.0 ^2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.73 ^0.0 ^2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.49 ^0.0 ^2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-1.22 ^0.0 ^2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.95 ^0.0 ^2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.66 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.37 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^-0.08 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.21 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.51 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^0.79 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.07 ^0.0 ^2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.34 ^0.0 ^2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.6 ^0.0 ^2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.8999999999999999} ^1.84 ^0.0 ^2.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.32 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.75 ^0.0 ^1.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.42 ^0.0 ^1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^0.32 ^0.3 ^-2.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.75 ^0.3 ^1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.42 ^0.3 ^1.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_016.mcfunction new file mode 100644 index 000000000..75d980475 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_016.mcfunction @@ -0,0 +1,74 @@ +# frame 16 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.18 ^0.0 ^2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.37 ^0.0 ^1.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.54 ^0.0 ^1.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.68 ^0.0 ^1.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.8 ^0.0 ^1.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.89 ^0.0 ^0.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.96 ^0.0 ^0.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.99 ^0.0 ^0.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^3.0 ^0.0 ^-0.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.98 ^0.0 ^-0.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.93 ^0.0 ^-0.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.85 ^0.0 ^-0.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.74 ^0.0 ^-1.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.61 ^0.0 ^-1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.45 ^0.0 ^-1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.27 ^0.0 ^-1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^2.06 ^0.0 ^-2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.84 ^0.0 ^-2.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.6 ^0.0 ^-2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.34 ^0.0 ^-2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.07 ^0.0 ^-2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.79 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.51 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.21 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.08 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.37 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.66 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.95 ^0.0 ^-2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.22 ^0.0 ^-2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.49 ^0.0 ^-2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.73 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.97 ^0.0 ^-2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.18 ^0.0 ^-2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.37 ^0.0 ^-1.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.54 ^0.0 ^-1.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.68 ^0.0 ^-1.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.8 ^0.0 ^-1.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.89 ^0.0 ^-0.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.96 ^0.0 ^-0.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.99 ^0.0 ^-0.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-3.0 ^0.0 ^0.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.98 ^0.0 ^0.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.93 ^0.0 ^0.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.85 ^0.0 ^0.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.74 ^0.0 ^1.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.61 ^0.0 ^1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.45 ^0.0 ^1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.27 ^0.0 ^1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-2.06 ^0.0 ^2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.84 ^0.0 ^2.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.6 ^0.0 ^2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.34 ^0.0 ^2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-1.07 ^0.0 ^2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.79 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.51 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^-0.21 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.08 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.37 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.66 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^0.95 ^0.0 ^2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.22 ^0.0 ^2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.49 ^0.0 ^2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.73 ^0.0 ^2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.94} ^1.97 ^0.0 ^2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.32 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.42 ^0.0 ^1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.75 ^0.0 ^1.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-0.32 ^0.3 ^-2.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.42 ^0.3 ^1.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.75 ^0.3 ^1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_017.mcfunction new file mode 100644 index 000000000..0631f0a7e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_017.mcfunction @@ -0,0 +1,76 @@ +# frame 17 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.07 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.29 ^0.0 ^1.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.47 ^0.0 ^1.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.62 ^0.0 ^1.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.75 ^0.0 ^1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.86 ^0.0 ^0.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.93 ^0.0 ^0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.98 ^0.0 ^0.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^3.0 ^0.0 ^0.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.99 ^0.0 ^-0.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.95 ^0.0 ^-0.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.89 ^0.0 ^-0.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.79 ^0.0 ^-1.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.67 ^0.0 ^-1.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.52 ^0.0 ^-1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.35 ^0.0 ^-1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.16 ^0.0 ^-2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.94 ^0.0 ^-2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.71 ^0.0 ^-2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.46 ^0.0 ^-2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.19 ^0.0 ^-2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.92 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.63 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.34 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.05 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.24 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.54 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.82 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.1 ^0.0 ^-2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.37 ^0.0 ^-2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.62 ^0.0 ^-2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.86 ^0.0 ^-2.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.09 ^0.0 ^-2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.29 ^0.0 ^-1.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.47 ^0.0 ^-1.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.62 ^0.0 ^-1.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.75 ^0.0 ^-1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.86 ^0.0 ^-0.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.93 ^0.0 ^-0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.98 ^0.0 ^-0.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-3.0 ^0.0 ^-0.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.99 ^0.0 ^0.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.95 ^0.0 ^0.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.89 ^0.0 ^0.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.79 ^0.0 ^1.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.67 ^0.0 ^1.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.52 ^0.0 ^1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.35 ^0.0 ^1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-2.16 ^0.0 ^2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.94 ^0.0 ^2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.71 ^0.0 ^2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.46 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-1.19 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.92 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.63 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.34 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^-0.05 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.24 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.54 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^0.82 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.1 ^0.0 ^2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.37 ^0.0 ^2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.62 ^0.0 ^2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^1.86 ^0.0 ^2.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:0.98} ^2.09 ^0.0 ^2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.96 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.98 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.94 ^0.0 ^0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-0.96 ^0.3 ^-2.84 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.98 ^0.3 ^2.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.94 ^0.3 ^0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_018.mcfunction new file mode 100644 index 000000000..fa0a38a26 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_018.mcfunction @@ -0,0 +1,74 @@ +# frame 18 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.39 ^0.0 ^1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.55 ^0.0 ^1.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.7 ^0.0 ^1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.81 ^0.0 ^1.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.9 ^0.0 ^0.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.96 ^0.0 ^0.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.99 ^0.0 ^0.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^3.0 ^0.0 ^-0.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.97 ^0.0 ^-0.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.92 ^0.0 ^-0.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.84 ^0.0 ^-0.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.73 ^0.0 ^-1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.59 ^0.0 ^-1.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.43 ^0.0 ^-1.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.25 ^0.0 ^-1.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.04 ^0.0 ^-2.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.82 ^0.0 ^-2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.57 ^0.0 ^-2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.31 ^0.0 ^-2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.04 ^0.0 ^-2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.76 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.48 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.18 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.11 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.41 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.69 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.98 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.25 ^0.0 ^-2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.51 ^0.0 ^-2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.76 ^0.0 ^-2.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.99 ^0.0 ^-2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.2 ^0.0 ^-2.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.39 ^0.0 ^-1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.55 ^0.0 ^-1.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.7 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.81 ^0.0 ^-1.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.9 ^0.0 ^-0.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.96 ^0.0 ^-0.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.99 ^0.0 ^-0.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-3.0 ^0.0 ^0.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.97 ^0.0 ^0.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.92 ^0.0 ^0.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.84 ^0.0 ^0.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.73 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.59 ^0.0 ^1.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.43 ^0.0 ^1.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.25 ^0.0 ^1.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-2.04 ^0.0 ^2.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.82 ^0.0 ^2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.57 ^0.0 ^2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.31 ^0.0 ^2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-1.04 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.76 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.48 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^-0.18 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.11 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.41 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.69 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^0.98 ^0.0 ^2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.25 ^0.0 ^2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.51 ^0.0 ^2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.76 ^0.0 ^2.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^1.99 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.02} ^2.2 ^0.0 ^2.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.55 ^0.0 ^-2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.45 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^3.0 ^0.0 ^-0.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-1.55 ^0.3 ^-2.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.45 ^0.3 ^2.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^3.0 ^0.3 ^-0.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_019.mcfunction new file mode 100644 index 000000000..5c99df05f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_019.mcfunction @@ -0,0 +1,76 @@ +# frame 19 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.09 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.48 ^0.0 ^1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.64 ^0.0 ^1.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.76 ^0.0 ^1.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.86 ^0.0 ^0.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.94 ^0.0 ^0.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.98 ^0.0 ^0.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^3.0 ^0.0 ^0.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.99 ^0.0 ^-0.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.95 ^0.0 ^-0.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.88 ^0.0 ^-0.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.78 ^0.0 ^-1.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.66 ^0.0 ^-1.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.51 ^0.0 ^-1.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.33 ^0.0 ^-1.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.14 ^0.0 ^-2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.92 ^0.0 ^-2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.68 ^0.0 ^-2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.43 ^0.0 ^-2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.17 ^0.0 ^-2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.89 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.61 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.31 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.02 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.27 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.57 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.85 ^0.0 ^-2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.13 ^0.0 ^-2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.4 ^0.0 ^-2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.65 ^0.0 ^-2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.89 ^0.0 ^-2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.11 ^0.0 ^-2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.31 ^0.0 ^-1.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.48 ^0.0 ^-1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.64 ^0.0 ^-1.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.76 ^0.0 ^-1.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.86 ^0.0 ^-0.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.94 ^0.0 ^-0.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.98 ^0.0 ^-0.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-3.0 ^0.0 ^-0.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.99 ^0.0 ^0.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.95 ^0.0 ^0.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.88 ^0.0 ^0.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.78 ^0.0 ^1.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.66 ^0.0 ^1.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.51 ^0.0 ^1.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.33 ^0.0 ^1.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-2.14 ^0.0 ^2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.92 ^0.0 ^2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.68 ^0.0 ^2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.43 ^0.0 ^2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-1.17 ^0.0 ^2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.89 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.61 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.31 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^-0.02 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.27 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.57 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^0.85 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.13 ^0.0 ^2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.4 ^0.0 ^2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.65 ^0.0 ^2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^1.89 ^0.0 ^2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.11 ^0.0 ^2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.06} ^2.31 ^0.0 ^1.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.06 ^0.0 ^-2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.85 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.92 ^0.0 ^-0.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.06 ^0.3 ^-2.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-0.85 ^0.3 ^2.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.92 ^0.3 ^-0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_020.mcfunction new file mode 100644 index 000000000..e6b7b4aa9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_020.mcfunction @@ -0,0 +1,74 @@ +# frame 20 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.57 ^0.0 ^1.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.71 ^0.0 ^1.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.82 ^0.0 ^1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.91 ^0.0 ^0.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.97 ^0.0 ^0.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^3.0 ^0.0 ^0.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^3.0 ^0.0 ^-0.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.97 ^0.0 ^-0.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.91 ^0.0 ^-0.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.83 ^0.0 ^-1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.71 ^0.0 ^-1.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.58 ^0.0 ^-1.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.41 ^0.0 ^-1.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.23 ^0.0 ^-2.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.02 ^0.0 ^-2.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.79 ^0.0 ^-2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.55 ^0.0 ^-2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.29 ^0.0 ^-2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.02 ^0.0 ^-2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^0.73 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^0.45 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^0.15 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-0.14 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-0.44 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-0.72 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.01 ^0.0 ^-2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.28 ^0.0 ^-2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.54 ^0.0 ^-2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.78 ^0.0 ^-2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.01 ^0.0 ^-2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.22 ^0.0 ^-2.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.41 ^0.0 ^-1.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.57 ^0.0 ^-1.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.71 ^0.0 ^-1.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.82 ^0.0 ^-1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.91 ^0.0 ^-0.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.97 ^0.0 ^-0.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-3.0 ^0.0 ^-0.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-3.0 ^0.0 ^0.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.97 ^0.0 ^0.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.91 ^0.0 ^0.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.83 ^0.0 ^1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.71 ^0.0 ^1.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.58 ^0.0 ^1.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.41 ^0.0 ^1.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.23 ^0.0 ^2.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-2.02 ^0.0 ^2.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.79 ^0.0 ^2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.55 ^0.0 ^2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.29 ^0.0 ^2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-1.02 ^0.0 ^2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-0.73 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-0.45 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^-0.15 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^0.14 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^0.44 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^0.72 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.01 ^0.0 ^2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.28 ^0.0 ^2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.54 ^0.0 ^2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^1.78 ^0.0 ^2.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.01 ^0.0 ^2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.22 ^0.0 ^2.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.1} ^2.41 ^0.0 ^1.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.48 ^0.0 ^-1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.22 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.7 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.48 ^0.3 ^-1.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-0.22 ^0.3 ^2.99 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.7 ^0.3 ^-1.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_021.mcfunction new file mode 100644 index 000000000..80149af59 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_021.mcfunction @@ -0,0 +1,76 @@ +# frame 21 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.11 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.78 ^0.0 ^1.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.87 ^0.0 ^0.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.94 ^0.0 ^0.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.99 ^0.0 ^0.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^3.0 ^0.0 ^-0.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.98 ^0.0 ^-0.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.94 ^0.0 ^-0.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.87 ^0.0 ^-0.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.77 ^0.0 ^-1.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.64 ^0.0 ^-1.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.49 ^0.0 ^-1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.31 ^0.0 ^-1.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.11 ^0.0 ^-2.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.9 ^0.0 ^-2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.66 ^0.0 ^-2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.41 ^0.0 ^-2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.14 ^0.0 ^-2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.86 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.58 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.28 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.01 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.3 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.6 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.88 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.16 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.42 ^0.0 ^-2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.68 ^0.0 ^-2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.91 ^0.0 ^-2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.13 ^0.0 ^-2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.33 ^0.0 ^-1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.5 ^0.0 ^-1.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.65 ^0.0 ^-1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.78 ^0.0 ^-1.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.87 ^0.0 ^-0.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.94 ^0.0 ^-0.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.99 ^0.0 ^-0.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-3.0 ^0.0 ^0.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.98 ^0.0 ^0.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.94 ^0.0 ^0.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.87 ^0.0 ^0.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.77 ^0.0 ^1.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.64 ^0.0 ^1.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.49 ^0.0 ^1.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.31 ^0.0 ^1.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-2.11 ^0.0 ^2.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.9 ^0.0 ^2.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.66 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.41 ^0.0 ^2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-1.14 ^0.0 ^2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.86 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.58 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^-0.28 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.01 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.3 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.6 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^0.88 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.16 ^0.0 ^2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.42 ^0.0 ^2.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.68 ^0.0 ^2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^1.91 ^0.0 ^2.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.13 ^0.0 ^2.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.33 ^0.0 ^1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.14} ^2.5 ^0.0 ^1.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.79 ^0.0 ^-1.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.43 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.36 ^0.0 ^-1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.79 ^0.3 ^-1.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^0.43 ^0.3 ^2.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.36 ^0.3 ^-1.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_022.mcfunction new file mode 100644 index 000000000..c1bbfff23 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_022.mcfunction @@ -0,0 +1,74 @@ +# frame 22 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.72 ^0.0 ^1.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.83 ^0.0 ^0.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.92 ^0.0 ^0.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.97 ^0.0 ^0.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^3.0 ^0.0 ^0.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^3.0 ^0.0 ^-0.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.96 ^0.0 ^-0.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.9 ^0.0 ^-0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.82 ^0.0 ^-1.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.7 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.56 ^0.0 ^-1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.39 ^0.0 ^-1.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.21 ^0.0 ^-2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.0 ^0.0 ^-2.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.77 ^0.0 ^-2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.52 ^0.0 ^-2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.26 ^0.0 ^-2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.99 ^0.0 ^-2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.7 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.42 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.12 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.17 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.47 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.75 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.03 ^0.0 ^-2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.31 ^0.0 ^-2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.56 ^0.0 ^-2.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.81 ^0.0 ^-2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.03 ^0.0 ^-2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.24 ^0.0 ^-2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.42 ^0.0 ^-1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.59 ^0.0 ^-1.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.72 ^0.0 ^-1.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.83 ^0.0 ^-0.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.92 ^0.0 ^-0.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.97 ^0.0 ^-0.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-3.0 ^0.0 ^-0.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-3.0 ^0.0 ^0.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.96 ^0.0 ^0.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.9 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.82 ^0.0 ^1.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.7 ^0.0 ^1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.56 ^0.0 ^1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.39 ^0.0 ^1.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.21 ^0.0 ^2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-2.0 ^0.0 ^2.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.77 ^0.0 ^2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.52 ^0.0 ^2.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-1.26 ^0.0 ^2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.99 ^0.0 ^2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.7 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.42 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^-0.12 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.17 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.47 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^0.75 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.03 ^0.0 ^2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.31 ^0.0 ^2.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.56 ^0.0 ^2.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^1.81 ^0.0 ^2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.03 ^0.0 ^2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.24 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.42 ^0.0 ^1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.18} ^2.59 ^0.0 ^1.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.96 ^0.0 ^-0.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.06 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.9 ^0.0 ^-2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.96 ^0.3 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.06 ^0.3 ^2.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.9 ^0.3 ^-2.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_023.mcfunction new file mode 100644 index 000000000..caa9ba8ab --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_023.mcfunction @@ -0,0 +1,76 @@ +# frame 23 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.1300000000000001 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.79 ^0.0 ^1.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.88 ^0.0 ^0.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.95 ^0.0 ^0.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.99 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^3.0 ^0.0 ^-0.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.98 ^0.0 ^-0.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.93 ^0.0 ^-0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.86 ^0.0 ^-0.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.76 ^0.0 ^-1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.63 ^0.0 ^-1.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.47 ^0.0 ^-1.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.29 ^0.0 ^-1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.09 ^0.0 ^-2.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.87 ^0.0 ^-2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.63 ^0.0 ^-2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.38 ^0.0 ^-2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.11 ^0.0 ^-2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.83 ^0.0 ^-2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.55 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.25 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.04 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.33 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.63 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.91 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.19 ^0.0 ^-2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.45 ^0.0 ^-2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.7 ^0.0 ^-2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.93 ^0.0 ^-2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.15 ^0.0 ^-2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.34 ^0.0 ^-1.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.52 ^0.0 ^-1.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.66 ^0.0 ^-1.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.79 ^0.0 ^-1.11 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.88 ^0.0 ^-0.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.95 ^0.0 ^-0.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.99 ^0.0 ^-0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-3.0 ^0.0 ^0.04 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.98 ^0.0 ^0.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.93 ^0.0 ^0.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.86 ^0.0 ^0.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.76 ^0.0 ^1.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.63 ^0.0 ^1.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.47 ^0.0 ^1.7 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.29 ^0.0 ^1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-2.09 ^0.0 ^2.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.87 ^0.0 ^2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.63 ^0.0 ^2.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.38 ^0.0 ^2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-1.11 ^0.0 ^2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.83 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.55 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^-0.25 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.04 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.33 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.63 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^0.91 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.19 ^0.0 ^2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.45 ^0.0 ^2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.7 ^0.0 ^2.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^1.93 ^0.0 ^2.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.15 ^0.0 ^2.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.34 ^0.0 ^1.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.52 ^0.0 ^1.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.22} ^2.66 ^0.0 ^1.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-3.0 ^0.0 ^0.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.64 ^0.0 ^2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^1.36 ^0.0 ^-2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-3.0 ^0.3 ^0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.64 ^0.3 ^2.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^1.36 ^0.3 ^-2.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_024.mcfunction new file mode 100644 index 000000000..d30f9ee14 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_024.mcfunction @@ -0,0 +1,74 @@ +# frame 24 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.84 ^0.0 ^0.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.92 ^0.0 ^0.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.98 ^0.0 ^0.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^3.0 ^0.0 ^0.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.99 ^0.0 ^-0.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.96 ^0.0 ^-0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.9 ^0.0 ^-0.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.81 ^0.0 ^-1.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.69 ^0.0 ^-1.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.54 ^0.0 ^-1.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.38 ^0.0 ^-1.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.18 ^0.0 ^-2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.97 ^0.0 ^-2.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.74 ^0.0 ^-2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.49 ^0.0 ^-2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.23 ^0.0 ^-2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.96 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.67 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.38 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.09 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.2 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.5 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.78 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.06 ^0.0 ^-2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.33 ^0.0 ^-2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.59 ^0.0 ^-2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.83 ^0.0 ^-2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.06 ^0.0 ^-2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.26 ^0.0 ^-1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.44 ^0.0 ^-1.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.6 ^0.0 ^-1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.74 ^0.0 ^-1.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.84 ^0.0 ^-0.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.92 ^0.0 ^-0.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.98 ^0.0 ^-0.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-3.0 ^0.0 ^-0.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.99 ^0.0 ^0.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.96 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.9 ^0.0 ^0.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.81 ^0.0 ^1.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.69 ^0.0 ^1.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.54 ^0.0 ^1.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.38 ^0.0 ^1.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-2.18 ^0.0 ^2.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.97 ^0.0 ^2.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.74 ^0.0 ^2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.49 ^0.0 ^2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-1.23 ^0.0 ^2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.96 ^0.0 ^2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.67 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.38 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^-0.09 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.2 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.5 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^0.78 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.06 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.33 ^0.0 ^2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.59 ^0.0 ^2.54 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^1.83 ^0.0 ^2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.06 ^0.0 ^2.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.26 ^0.0 ^1.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.44 ^0.0 ^1.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.6 ^0.0 ^1.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.26} ^2.74 ^0.0 ^1.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.89 ^0.0 ^0.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.14 ^0.0 ^2.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.75 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.89 ^0.3 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.14 ^0.3 ^2.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^0.75 ^0.3 ^-2.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_025.mcfunction new file mode 100644 index 000000000..8e7b54102 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_025.mcfunction @@ -0,0 +1,76 @@ +# frame 25 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.15 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.89 ^0.0 ^0.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.96 ^0.0 ^0.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.99 ^0.0 ^0.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^3.0 ^0.0 ^-0.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.98 ^0.0 ^-0.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.93 ^0.0 ^-0.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.85 ^0.0 ^-0.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.74 ^0.0 ^-1.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.61 ^0.0 ^-1.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.45 ^0.0 ^-1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.27 ^0.0 ^-1.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.07 ^0.0 ^-2.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.85 ^0.0 ^-2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.61 ^0.0 ^-2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.35 ^0.0 ^-2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.08 ^0.0 ^-2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.8 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.52 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.22 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.07 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.36 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.65 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.94 ^0.0 ^-2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.21 ^0.0 ^-2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.48 ^0.0 ^-2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.73 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.96 ^0.0 ^-2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.17 ^0.0 ^-2.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.36 ^0.0 ^-1.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.53 ^0.0 ^-1.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.68 ^0.0 ^-1.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.8 ^0.0 ^-1.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.89 ^0.0 ^-0.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.96 ^0.0 ^-0.52 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.99 ^0.0 ^-0.22 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-3.0 ^0.0 ^0.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.98 ^0.0 ^0.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.93 ^0.0 ^0.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.85 ^0.0 ^0.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.74 ^0.0 ^1.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.61 ^0.0 ^1.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.45 ^0.0 ^1.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.27 ^0.0 ^1.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-2.07 ^0.0 ^2.17 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.85 ^0.0 ^2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.61 ^0.0 ^2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.35 ^0.0 ^2.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-1.08 ^0.0 ^2.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.8 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.52 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^-0.22 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.07 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.36 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.65 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^0.94 ^0.0 ^2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.21 ^0.0 ^2.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.48 ^0.0 ^2.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.73 ^0.0 ^2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^1.96 ^0.0 ^2.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.17 ^0.0 ^2.07 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.36 ^0.0 ^1.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.53 ^0.0 ^1.61 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.68 ^0.0 ^1.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3} ^2.8 ^0.0 ^1.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.54 ^0.0 ^1.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.11 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.65 ^0.3 ^1.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.54 ^0.3 ^1.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^0.11 ^0.3 ^-3.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_026.mcfunction new file mode 100644 index 000000000..c17180256 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_026.mcfunction @@ -0,0 +1,74 @@ +# frame 26 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.93 ^0.0 ^0.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.98 ^0.0 ^0.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^3.0 ^0.0 ^0.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.99 ^0.0 ^-0.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.95 ^0.0 ^-0.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.89 ^0.0 ^-0.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.79 ^0.0 ^-1.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.67 ^0.0 ^-1.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.53 ^0.0 ^-1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.36 ^0.0 ^-1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.16 ^0.0 ^-2.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.95 ^0.0 ^-2.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.72 ^0.0 ^-2.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.47 ^0.0 ^-2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.2 ^0.0 ^-2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.93 ^0.0 ^-2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.64 ^0.0 ^-2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.35 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.06 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.23 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.53 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.81 ^0.0 ^-2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.09 ^0.0 ^-2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.36 ^0.0 ^-2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.62 ^0.0 ^-2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.86 ^0.0 ^-2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.08 ^0.0 ^-2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.28 ^0.0 ^-1.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.46 ^0.0 ^-1.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.62 ^0.0 ^-1.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.75 ^0.0 ^-1.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.85 ^0.0 ^-0.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.93 ^0.0 ^-0.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.98 ^0.0 ^-0.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-3.0 ^0.0 ^-0.06 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.99 ^0.0 ^0.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.95 ^0.0 ^0.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.89 ^0.0 ^0.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.79 ^0.0 ^1.09 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.67 ^0.0 ^1.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.53 ^0.0 ^1.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.36 ^0.0 ^1.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-2.16 ^0.0 ^2.08 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.95 ^0.0 ^2.28 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.72 ^0.0 ^2.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.47 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-1.2 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.93 ^0.0 ^2.85 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.64 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.35 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^-0.06 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.23 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.53 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^0.81 ^0.0 ^2.89 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.09 ^0.0 ^2.79 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.36 ^0.0 ^2.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.62 ^0.0 ^2.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^1.86 ^0.0 ^2.36 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.08 ^0.0 ^2.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.28 ^0.0 ^1.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.46 ^0.0 ^1.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.62 ^0.0 ^1.47 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.75 ^0.0 ^1.2 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.34} ^2.85 ^0.0 ^0.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.29 ^0.0 ^1.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.83 ^0.0 ^1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.54 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-2.29 ^0.3 ^1.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.83 ^0.3 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-0.54 ^0.3 ^-2.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_027.mcfunction new file mode 100644 index 000000000..847f3d7fe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_027.mcfunction @@ -0,0 +1,76 @@ +# frame 27 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.17 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.96 ^0.0 ^0.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.99 ^0.0 ^0.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^3.0 ^0.0 ^-0.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.97 ^0.0 ^-0.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.92 ^0.0 ^-0.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.84 ^0.0 ^-0.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.73 ^0.0 ^-1.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.6 ^0.0 ^-1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.44 ^0.0 ^-1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.25 ^0.0 ^-1.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.05 ^0.0 ^-2.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.82 ^0.0 ^-2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.58 ^0.0 ^-2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.32 ^0.0 ^-2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.05 ^0.0 ^-2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.77 ^0.0 ^-2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.49 ^0.0 ^-2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.19 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.1 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.39 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.68 ^0.0 ^-2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.97 ^0.0 ^-2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.24 ^0.0 ^-2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.5 ^0.0 ^-2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.75 ^0.0 ^-2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.98 ^0.0 ^-2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.19 ^0.0 ^-2.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.38 ^0.0 ^-1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.55 ^0.0 ^-1.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.69 ^0.0 ^-1.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.81 ^0.0 ^-1.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.9 ^0.0 ^-0.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.96 ^0.0 ^-0.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.99 ^0.0 ^-0.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-3.0 ^0.0 ^0.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.97 ^0.0 ^0.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.92 ^0.0 ^0.68 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.84 ^0.0 ^0.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.73 ^0.0 ^1.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.6 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.44 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.25 ^0.0 ^1.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-2.05 ^0.0 ^2.19 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.82 ^0.0 ^2.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.58 ^0.0 ^2.55 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.32 ^0.0 ^2.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-1.05 ^0.0 ^2.81 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.77 ^0.0 ^2.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.49 ^0.0 ^2.96 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^-0.19 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.1 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.39 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.68 ^0.0 ^2.92 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^0.97 ^0.0 ^2.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.24 ^0.0 ^2.73 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.5 ^0.0 ^2.6 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.75 ^0.0 ^2.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^1.98 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.19 ^0.0 ^2.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.38 ^0.0 ^1.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.55 ^0.0 ^1.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.69 ^0.0 ^1.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.81 ^0.0 ^1.05 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.3800000000000001} ^2.9 ^0.0 ^0.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.82 ^0.0 ^2.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.98 ^0.0 ^0.38 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.16 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-1.82 ^0.3 ^2.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.98 ^0.3 ^0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.16 ^0.3 ^-2.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_028.mcfunction new file mode 100644 index 000000000..5b69268ba --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_028.mcfunction @@ -0,0 +1,74 @@ +# frame 28 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.98 ^0.0 ^0.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^3.0 ^0.0 ^0.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.99 ^0.0 ^-0.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.95 ^0.0 ^-0.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.88 ^0.0 ^-0.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.78 ^0.0 ^-1.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.66 ^0.0 ^-1.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.51 ^0.0 ^-1.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.34 ^0.0 ^-1.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.14 ^0.0 ^-2.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.93 ^0.0 ^-2.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.69 ^0.0 ^-2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.44 ^0.0 ^-2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.18 ^0.0 ^-2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.9 ^0.0 ^-2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.62 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.32 ^0.0 ^-2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.03 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.26 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.56 ^0.0 ^-2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.84 ^0.0 ^-2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.12 ^0.0 ^-2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.39 ^0.0 ^-2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.64 ^0.0 ^-2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.88 ^0.0 ^-2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.1 ^0.0 ^-2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.3 ^0.0 ^-1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.48 ^0.0 ^-1.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.63 ^0.0 ^-1.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.76 ^0.0 ^-1.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.86 ^0.0 ^-0.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.94 ^0.0 ^-0.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.98 ^0.0 ^-0.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-3.0 ^0.0 ^-0.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.99 ^0.0 ^0.26 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.95 ^0.0 ^0.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.88 ^0.0 ^0.84 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.78 ^0.0 ^1.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.66 ^0.0 ^1.39 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.51 ^0.0 ^1.64 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.34 ^0.0 ^1.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-2.14 ^0.0 ^2.1 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.93 ^0.0 ^2.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.69 ^0.0 ^2.48 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.44 ^0.0 ^2.63 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-1.18 ^0.0 ^2.76 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.9 ^0.0 ^2.86 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.62 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.32 ^0.0 ^2.98 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^-0.03 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.26 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.56 ^0.0 ^2.95 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^0.84 ^0.0 ^2.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.12 ^0.0 ^2.78 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.39 ^0.0 ^2.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.64 ^0.0 ^2.51 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^1.88 ^0.0 ^2.34 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.1 ^0.0 ^2.14 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.3 ^0.0 ^1.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.48 ^0.0 ^1.69 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.63 ^0.0 ^1.44 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.76 ^0.0 ^1.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.86 ^0.0 ^0.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.4200000000000002} ^2.94 ^0.0 ^0.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.26 ^0.0 ^2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.99 ^0.0 ^-0.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-1.73 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-1.26 ^0.3 ^2.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.99 ^0.3 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-1.73 ^0.3 ^-2.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_029.mcfunction new file mode 100644 index 000000000..3c31a1365 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_029.mcfunction @@ -0,0 +1,76 @@ +# frame 29 / 31 +# サウンド +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..16] ~ ~ ~ 1 1.19 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.46} ^3.0 ^0.0 ^0.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^3.0 ^0.0 ^-0.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.97 ^0.0 ^-0.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.91 ^0.0 ^-0.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.83 ^0.0 ^-1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.72 ^0.0 ^-1.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.58 ^0.0 ^-1.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.42 ^0.0 ^-1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.23 ^0.0 ^-2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.03 ^0.0 ^-2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.8 ^0.0 ^-2.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.56 ^0.0 ^-2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.3 ^0.0 ^-2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.02 ^0.0 ^-2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^0.74 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^0.46 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^0.16 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-0.13 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-0.43 ^0.0 ^-2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-0.71 ^0.0 ^-2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.0 ^0.0 ^-2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.27 ^0.0 ^-2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.53 ^0.0 ^-2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.77 ^0.0 ^-2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.0 ^0.0 ^-2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.21 ^0.0 ^-2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.4 ^0.0 ^-1.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.57 ^0.0 ^-1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.71 ^0.0 ^-1.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.82 ^0.0 ^-1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.91 ^0.0 ^-0.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.97 ^0.0 ^-0.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-3.0 ^0.0 ^-0.16 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-3.0 ^0.0 ^0.13 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.97 ^0.0 ^0.43 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.91 ^0.0 ^0.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.83 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.72 ^0.0 ^1.27 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.58 ^0.0 ^1.53 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.42 ^0.0 ^1.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.23 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-2.03 ^0.0 ^2.21 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.8 ^0.0 ^2.4 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.56 ^0.0 ^2.57 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.3 ^0.0 ^2.71 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-1.02 ^0.0 ^2.82 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-0.74 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-0.46 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^-0.16 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^0.13 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^0.43 ^0.0 ^2.97 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^0.71 ^0.0 ^2.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.0 ^0.0 ^2.83 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.27 ^0.0 ^2.72 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.53 ^0.0 ^2.58 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^1.77 ^0.0 ^2.42 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.0 ^0.0 ^2.23 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.21 ^0.0 ^2.03 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.4 ^0.0 ^1.8 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.57 ^0.0 ^1.56 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.71 ^0.0 ^1.3 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.82 ^0.0 ^1.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.91 ^0.0 ^0.74 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.46} ^2.97 ^0.0 ^0.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^-0.64 ^0.0 ^2.93 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.86 ^0.0 ^-0.91 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.21 ^0.0 ^-2.02 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^-0.64 ^0.3 ^2.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.86 ^0.3 ^-0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.21 ^0.3 ^-2.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_030.mcfunction new file mode 100644 index 000000000..cfa387d40 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_030.mcfunction @@ -0,0 +1,74 @@ +# frame 30 / 31 +# ピンクリング +particle dust{color:[100000000,1,100000000],scale:1.5} ^3.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.99 ^0.0 ^-0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.94 ^0.0 ^-0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.87 ^0.0 ^-0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.77 ^0.0 ^-1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.65 ^0.0 ^-1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.49 ^0.0 ^-1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.32 ^0.0 ^-1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.12 ^0.0 ^-2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.9 ^0.0 ^-2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.67 ^0.0 ^-2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.41 ^0.0 ^-2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.15 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.87 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.59 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.29 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.0 ^0.0 ^-3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.29 ^0.0 ^-2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.59 ^0.0 ^-2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.87 ^0.0 ^-2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.15 ^0.0 ^-2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.41 ^0.0 ^-2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.67 ^0.0 ^-2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.9 ^0.0 ^-2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.12 ^0.0 ^-2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.32 ^0.0 ^-1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.49 ^0.0 ^-1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.65 ^0.0 ^-1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.77 ^0.0 ^-1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.87 ^0.0 ^-0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.94 ^0.0 ^-0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.99 ^0.0 ^-0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-3.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.99 ^0.0 ^0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.94 ^0.0 ^0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.87 ^0.0 ^0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.77 ^0.0 ^1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.49 ^0.0 ^1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.32 ^0.0 ^1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-2.12 ^0.0 ^2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.9 ^0.0 ^2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.67 ^0.0 ^2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.41 ^0.0 ^2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-1.15 ^0.0 ^2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.87 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.59 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^-0.29 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.29 ^0.0 ^2.99 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.59 ^0.0 ^2.94 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^0.87 ^0.0 ^2.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.15 ^0.0 ^2.77 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.41 ^0.0 ^2.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.67 ^0.0 ^2.49 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^1.9 ^0.0 ^2.32 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.12 ^0.0 ^2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.32 ^0.0 ^1.9 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.49 ^0.0 ^1.67 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.65 ^0.0 ^1.41 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.77 ^0.0 ^1.15 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.87 ^0.0 ^0.87 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.94 ^0.0 ^0.59 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,1,100000000],scale:1.5} ^2.99 ^0.0 ^0.29 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト +particle dust{color:[100000000,5000000,100000000],scale:2} ^0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^2.6 ^0.0 ^-1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[100000000,5000000,100000000],scale:2} ^-2.6 ^0.0 ^-1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 大きめのダスト.001 +particle firework ^0.0 ^0.3 ^3.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^2.6 ^0.3 ^-1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle firework ^-2.6 ^0.3 ^-1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/healing/healing_031.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_031.mcfunction new file mode 100644 index 000000000..be6e3b513 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/healing/healing_031.mcfunction @@ -0,0 +1,36 @@ +# frame 31 / 31 +# サウンド +playsound minecraft:entity.firework_rocket.launch hostile @a[distance=..16] ~ ~ ~ 1 2 +playsound minecraft:entity.player.levelup hostile @a[distance=..16] ~ ~ ~ 1 0.7 +playsound minecraft:entity.player.levelup hostile @a[distance=..16] ~ ~ ~ 1 1.6 +# 円 +particle end_rod ^-0.0 ^0.0 ^3.0 ^-0.0 ^1000000000.0 ^3.0 0.00000000018 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^0.62 ^0.0 ^2.93 ^0.62 ^1000000000.0 ^2.93 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^1.22 ^0.0 ^2.74 ^1.22 ^1000000000.0 ^2.74 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^1.76 ^0.0 ^2.43 ^1.76 ^1000000000.0 ^2.43 0.00000000010 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.23 ^0.0 ^2.01 ^2.23 ^1000000000.0 ^2.01 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.6 ^0.0 ^1.5 ^2.6 ^1000000000.0 ^1.5 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.85 ^0.0 ^0.93 ^2.85 ^1000000000.0 ^0.93 0.00000000018 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.98 ^0.0 ^0.31 ^2.98 ^1000000000.0 ^0.31 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.98 ^0.0 ^-0.31 ^2.98 ^1000000000.0 ^-0.31 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.85 ^0.0 ^-0.93 ^2.85 ^1000000000.0 ^-0.93 0.00000000010 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.6 ^0.0 ^-1.5 ^2.6 ^1000000000.0 ^-1.5 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^2.23 ^0.0 ^-2.01 ^2.23 ^1000000000.0 ^-2.01 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^1.76 ^0.0 ^-2.43 ^1.76 ^1000000000.0 ^-2.43 0.00000000018 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^1.22 ^0.0 ^-2.74 ^1.22 ^1000000000.0 ^-2.74 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^0.62 ^0.0 ^-2.93 ^0.62 ^1000000000.0 ^-2.93 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-0.0 ^0.0 ^-3.0 ^-0.0 ^1000000000.0 ^-3.0 0.00000000010 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-0.62 ^0.0 ^-2.93 ^-0.62 ^1000000000.0 ^-2.93 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-1.22 ^0.0 ^-2.74 ^-1.22 ^1000000000.0 ^-2.74 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-1.76 ^0.0 ^-2.43 ^-1.76 ^1000000000.0 ^-2.43 0.00000000018 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.23 ^0.0 ^-2.01 ^-2.23 ^1000000000.0 ^-2.01 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.6 ^0.0 ^-1.5 ^-2.6 ^1000000000.0 ^-1.5 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.85 ^0.0 ^-0.93 ^-2.85 ^1000000000.0 ^-0.93 0.00000000010 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.98 ^0.0 ^-0.31 ^-2.98 ^1000000000.0 ^-0.31 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.98 ^0.0 ^0.31 ^-2.98 ^1000000000.0 ^0.31 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.85 ^0.0 ^0.93 ^-2.85 ^1000000000.0 ^0.93 0.00000000018 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.6 ^0.0 ^1.5 ^-2.6 ^1000000000.0 ^1.5 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-2.23 ^0.0 ^2.01 ^-2.23 ^1000000000.0 ^2.01 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-1.76 ^0.0 ^2.43 ^-1.76 ^1000000000.0 ^2.43 0.00000000010 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-1.22 ^0.0 ^2.74 ^-1.22 ^1000000000.0 ^2.74 0.00000000012 0 force @a[distance=..32,tag=ShowParticles] +particle end_rod ^-0.62 ^0.0 ^2.93 ^-0.62 ^1000000000.0 ^2.93 0.00000000016 0 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/laser_pointer/red_dust/particle/red_dust.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/laser_pointer/red_dust/particle/red_dust.mcfunction new file mode 100644 index 000000000..bafa68735 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/laser_pointer/red_dust/particle/red_dust.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/delay_action/casting/laser_pointer/red_dust/particle/red_dust +particle dust{color:[0.941,0.063,0.063],scale:1} ~ ~ ~ 0 0 0 0 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_001.mcfunction new file mode 100644 index 000000000..146eccbc3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_001.mcfunction @@ -0,0 +1,168 @@ +# frame 1 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.5 0 +# 1_circle +particle fishing ~-0.0 ~0.0 ~0.29 ~-576896000.0 ~0.0 ~816817600.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~0.29 ~-465344448.0 ~0.0 ~885129600.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~0.28 ~-345830784.0 ~0.0 ~938296896.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.11 ~0.0 ~0.27 ~-220399840.0 ~0.0 ~975409600.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.15 ~0.0 ~0.25 ~-91197800.0 ~0.0 ~995832832.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.18 ~0.0 ~0.23 ~39564676.0 ~0.0 ~999217088.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.21 ~0.0 ~0.21 ~169650160.0 ~0.0 ~985504384.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.23 ~0.0 ~0.18 ~296832992.0 ~0.0 ~954929408.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.25 ~0.0 ~0.15 ~418936896.0 ~0.0 ~908015360.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.27 ~0.0 ~0.11 ~533872544.0 ~0.0 ~845564992.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.28 ~0.0 ~0.08 ~639673536.0 ~0.0 ~768646720.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.29 ~0.0 ~0.04 ~734529600.0 ~0.0 ~678576576.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.29 ~0.0 ~-0.0 ~816817600.0 ~0.0 ~576896000.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.29 ~0.0 ~-0.04 ~885129600.0 ~0.0 ~465344448.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.28 ~0.0 ~-0.08 ~938296896.0 ~0.0 ~345830688.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.27 ~0.0 ~-0.11 ~975409600.0 ~0.0 ~220399776.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.25 ~0.0 ~-0.15 ~995832832.0 ~0.0 ~91197760.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.23 ~0.0 ~-0.18 ~999217088.0 ~0.0 ~-39564676.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.21 ~0.0 ~-0.21 ~985504384.0 ~0.0 ~-169650160.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.18 ~0.0 ~-0.23 ~954929408.0 ~0.0 ~-296832896.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.15 ~0.0 ~-0.25 ~908015488.0 ~0.0 ~-418936736.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.11 ~0.0 ~-0.27 ~845564928.0 ~0.0 ~-533872736.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~-0.28 ~768646656.0 ~0.0 ~-639673664.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~-0.29 ~678576576.0 ~0.0 ~-734529664.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.0 ~0.0 ~-0.29 ~576895936.0 ~0.0 ~-816817728.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~-0.29 ~465344416.0 ~0.0 ~-885129600.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~-0.28 ~345830784.0 ~0.0 ~-938296896.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.11 ~0.0 ~-0.27 ~220399888.0 ~0.0 ~-975409600.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.15 ~0.0 ~-0.25 ~91197600.0 ~0.0 ~-995832832.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.18 ~0.0 ~-0.23 ~-39564872.0 ~0.0 ~-999216960.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.21 ~0.0 ~-0.21 ~-169650336.0 ~0.0 ~-985504384.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.23 ~0.0 ~-0.18 ~-296832832.0 ~0.0 ~-954929408.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.25 ~0.0 ~-0.15 ~-418936896.0 ~0.0 ~-908015360.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.27 ~0.0 ~-0.11 ~-533872768.0 ~0.0 ~-845564864.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.28 ~0.0 ~-0.08 ~-639673600.0 ~0.0 ~-768646656.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.0 ~-0.04 ~-734529792.0 ~0.0 ~-678576448.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.0 ~0.0 ~-816817600.0 ~0.0 ~-576896000.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.0 ~0.04 ~-885129728.0 ~0.0 ~-465344320.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.28 ~0.0 ~0.08 ~-938296896.0 ~0.0 ~-345830816.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.27 ~0.0 ~0.11 ~-975409600.0 ~0.0 ~-220399680.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.25 ~0.0 ~0.15 ~-995832832.0 ~0.0 ~-91197920.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.23 ~0.0 ~0.18 ~-999217088.0 ~0.0 ~39564840.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.21 ~0.0 ~0.21 ~-985504320.0 ~0.0 ~169650528.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.18 ~0.0 ~0.23 ~-954929408.0 ~0.0 ~296832992.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.15 ~0.0 ~0.25 ~-908015232.0 ~0.0 ~418937024.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.11 ~0.0 ~0.27 ~-845564992.0 ~0.0 ~533872544.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~0.28 ~-768646592.0 ~0.0 ~639673728.0 0.00000000040 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~0.29 ~-678576704.0 ~0.0 ~734529472.0 0.00000000040 0 force @a[distance=..32] +# 2_circle +particle fishing ~-2.0 ~0.06000000000000005 ~7.0 ~948683264.0 ~0.0 ~-316227776.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~0.83 ~0.050000000000000044 ~7.23 ~755453952.0 ~0.0 ~-655201792.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~3.54 ~0.010000000000000009 ~6.36 ~447213440.0 ~0.0 ~-894427264.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~5.7 ~0.0 ~4.53 ~70889016.0 ~0.0 ~-997484288.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~7.0 ~-0.010000000000000009 ~2.0 ~-316227776.0 ~0.0 ~-948683264.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~7.23 ~-0.09000000000000008 ~-0.83 ~-655201856.0 ~0.0 ~-755453888.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~6.36 ~0.1499999999999999 ~-3.54 ~-894427264.0 ~0.0 ~-447213440.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~4.53 ~0.020000000000000018 ~-5.7 ~-997484288.0 ~0.0 ~-70888856.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~2.0 ~-0.06999999999999984 ~-7.0 ~-948683264.0 ~0.0 ~316227776.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-0.83 ~0.010000000000000009 ~-7.23 ~-755453952.0 ~0.0 ~655201728.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-3.54 ~-0.10999999999999988 ~-6.36 ~-447213504.0 ~0.0 ~894427264.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-5.7 ~0.020000000000000018 ~-4.53 ~-70888696.0 ~0.0 ~997484288.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-7.0 ~0.0 ~-2.0 ~316227776.0 ~0.0 ~948683264.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-7.23 ~-0.10999999999999988 ~0.83 ~655201920.0 ~0.0 ~755453952.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-6.36 ~0.010000000000000009 ~3.54 ~894427328.0 ~0.0 ~447213280.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-4.53 ~-0.04999999999999982 ~5.7 ~997484288.0 ~0.0 ~70889008.0 0.00000000032 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-7.2 ~-0.0 ~1000000000.0 ~-7.2 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.4 ~0.0 ~-7.06 ~-1.4 ~1000000000.0 ~-7.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.76 ~0.0 ~-6.65 ~-2.76 ~1000000000.0 ~-6.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.0 ~0.0 ~-5.99 ~-4.0 ~1000000000.0 ~-5.99 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.09 ~0.0 ~-5.09 ~-5.09 ~1000000000.0 ~-5.09 0.00000000000 0 force @a[distance=..32] +particle fishing ~-5.99 ~0.0 ~-4.0 ~-5.99 ~1000000000.0 ~-4.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~-6.65 ~0.0 ~-2.76 ~-6.65 ~1000000000.0 ~-2.76 0.00000000001 0 force @a[distance=..32] +particle fishing ~-7.06 ~0.0 ~-1.4 ~-7.06 ~1000000000.0 ~-1.4 0.0 0 force @a[distance=..32] +particle fishing ~-7.2 ~0.0 ~0.0 ~-7.2 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-7.06 ~0.0 ~1.4 ~-7.06 ~1000000000.0 ~1.4 0.0 0 force @a[distance=..32] +particle fishing ~-6.65 ~0.0 ~2.76 ~-6.65 ~1000000000.0 ~2.76 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.99 ~0.0 ~4.0 ~-5.99 ~1000000000.0 ~4.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~-5.09 ~0.0 ~5.09 ~-5.09 ~1000000000.0 ~5.09 0.00000000000 0 force @a[distance=..32] +particle fishing ~-4.0 ~0.0 ~5.99 ~-4.0 ~1000000000.0 ~5.99 0.00000000000 0 force @a[distance=..32] +particle fishing ~-2.76 ~0.0 ~6.65 ~-2.76 ~999999936.0 ~6.65 0.00000000000 0 force @a[distance=..32] +particle fishing ~-1.4 ~0.0 ~7.06 ~-1.4 ~1000000000.0 ~7.06 0.0 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~7.2 ~0.0 ~999999936.0 ~7.2 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.4 ~0.0 ~7.06 ~1.4 ~1000000000.0 ~7.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.76 ~0.0 ~6.65 ~2.76 ~1000000000.0 ~6.65 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.0 ~0.0 ~5.99 ~4.0 ~1000000000.0 ~5.99 0.00000000000 0 force @a[distance=..32] +particle fishing ~5.09 ~0.0 ~5.09 ~5.09 ~1000000000.0 ~5.09 0.00000000000 0 force @a[distance=..32] +particle fishing ~5.99 ~0.0 ~4.0 ~5.99 ~1000000000.0 ~4.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.65 ~0.0 ~2.76 ~6.65 ~1000000000.0 ~2.76 0.00000000001 0 force @a[distance=..32] +particle fishing ~7.06 ~0.0 ~1.4 ~7.06 ~1000000000.0 ~1.4 0.00000000000 0 force @a[distance=..32] +particle fishing ~7.2 ~0.0 ~-0.0 ~7.2 ~999999936.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~7.06 ~0.0 ~-1.4 ~7.06 ~1000000000.0 ~-1.4 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.65 ~0.0 ~-2.76 ~6.65 ~1000000000.0 ~-2.76 0.00000000000 0 force @a[distance=..32] +particle fishing ~5.99 ~0.0 ~-4.0 ~5.99 ~1000000000.0 ~-4.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~5.09 ~0.0 ~-5.09 ~5.09 ~1000000000.0 ~-5.09 0.0 0 force @a[distance=..32] +particle fishing ~4.0 ~0.0 ~-5.99 ~4.0 ~1000000000.0 ~-5.99 0.00000000000 0 force @a[distance=..32] +particle fishing ~2.76 ~0.0 ~-6.65 ~2.76 ~1000000000.0 ~-6.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.4 ~0.0 ~-7.06 ~1.4 ~1000000000.0 ~-7.06 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-6.2 ~-0.0 ~1000000000.0 ~-6.2 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.21 ~0.0 ~-6.08 ~-1.21 ~1000000000.0 ~-6.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.37 ~0.0 ~-5.73 ~-2.37 ~1000000000.0 ~-5.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.44 ~0.0 ~-5.16 ~-3.44 ~1000000000.0 ~-5.16 0.00000000000 0 force @a[distance=..32] +particle fishing ~-4.38 ~0.0 ~-4.38 ~-4.38 ~-1000000000.0 ~-4.38 0.0 0 force @a[distance=..32] +particle fishing ~-5.16 ~0.0 ~-3.44 ~-5.16 ~1000000000.0 ~-3.44 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.73 ~0.0 ~-2.37 ~-5.73 ~1000000000.0 ~-2.37 0.00000000000 0 force @a[distance=..32] +particle fishing ~-6.08 ~0.0 ~-1.21 ~-6.08 ~1000000000.0 ~-1.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.2 ~0.0 ~0.0 ~-6.2 ~1000000000.0 ~0.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~-6.08 ~0.0 ~1.21 ~-6.08 ~1000000000.0 ~1.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.73 ~0.0 ~2.37 ~-5.73 ~1000000000.0 ~2.37 0.0 0 force @a[distance=..32] +particle fishing ~-5.16 ~0.0 ~3.44 ~-5.16 ~1000000000.0 ~3.44 0.00000000000 0 force @a[distance=..32] +particle fishing ~-4.38 ~0.0 ~4.38 ~-4.38 ~1000000000.0 ~4.38 0.00000000000 0 force @a[distance=..32] +particle fishing ~-3.44 ~0.0 ~5.16 ~-3.44 ~1000000000.0 ~5.16 0.00000000000 0 force @a[distance=..32] +particle fishing ~-2.37 ~0.0 ~5.73 ~-2.37 ~1000000000.0 ~5.73 0.0 0 force @a[distance=..32] +particle fishing ~-1.21 ~0.0 ~6.08 ~-1.21 ~-1000000000.0 ~6.08 0.00000000000 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~6.2 ~0.0 ~1000000000.0 ~6.2 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.21 ~0.0 ~6.08 ~1.21 ~1000000000.0 ~6.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.37 ~0.0 ~5.73 ~2.37 ~1000000000.0 ~5.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.44 ~0.0 ~5.16 ~3.44 ~1000000000.0 ~5.16 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.38 ~0.0 ~4.38 ~4.38 ~1000000000.0 ~4.38 0.00000000000 0 force @a[distance=..32] +particle fishing ~5.16 ~0.0 ~3.44 ~5.16 ~1000000000.0 ~3.44 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.73 ~0.0 ~2.37 ~5.73 ~1000000000.0 ~2.37 0.00000000000 0 force @a[distance=..32] +particle fishing ~6.08 ~0.0 ~1.21 ~6.08 ~1000000000.0 ~1.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.2 ~0.0 ~-0.0 ~6.2 ~999999936.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.08 ~0.0 ~-1.21 ~6.08 ~1000000000.0 ~-1.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.73 ~0.0 ~-2.37 ~5.73 ~1000000000.0 ~-2.37 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.16 ~0.0 ~-3.44 ~5.16 ~1000000000.0 ~-3.44 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.38 ~0.0 ~-4.38 ~4.38 ~1000000000.0 ~-4.38 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.44 ~0.0 ~-5.16 ~3.44 ~1000000000.0 ~-5.16 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.37 ~0.0 ~-5.73 ~2.37 ~1000000000.0 ~-5.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.21 ~0.0 ~-6.08 ~1.21 ~1000000000.0 ~-6.08 0.0 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-4.94 ~-0.0 ~1000000000.0 ~-4.94 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.96 ~0.0 ~-4.85 ~-0.96 ~999999936.0 ~-4.85 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.89 ~0.0 ~-4.56 ~-1.89 ~999999936.0 ~-4.56 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.74 ~0.0 ~-4.11 ~-2.74 ~1000000000.0 ~-4.11 0.00000000000 0 force @a[distance=..32] +particle fishing ~-3.49 ~0.0 ~-3.49 ~-3.49 ~1000000000.0 ~-3.49 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.11 ~0.0 ~-2.74 ~-4.11 ~1000000000.0 ~-2.74 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.56 ~0.0 ~-1.89 ~-4.56 ~1000000000.0 ~-1.89 0.0 0 force @a[distance=..32] +particle fishing ~-4.85 ~0.0 ~-0.96 ~-4.85 ~999999936.0 ~-0.96 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.94 ~0.0 ~0.0 ~-4.94 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.85 ~0.0 ~0.96 ~-4.85 ~1000000000.0 ~0.96 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.56 ~0.0 ~1.89 ~-4.56 ~1000000000.0 ~1.89 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.11 ~0.0 ~2.74 ~-4.11 ~1000000000.0 ~2.74 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.49 ~0.0 ~3.49 ~-3.49 ~1000000000.0 ~3.49 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.74 ~0.0 ~4.11 ~-2.74 ~1000000000.0 ~4.11 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.89 ~0.0 ~4.56 ~-1.89 ~1000000000.0 ~4.56 0.00000000000 0 force @a[distance=..32] +particle fishing ~-0.96 ~0.0 ~4.85 ~-0.96 ~1000000000.0 ~4.85 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.94 ~0.0 ~1000000000.0 ~4.94 0.00000000000 0 force @a[distance=..32] +particle fishing ~0.96 ~0.0 ~4.85 ~0.96 ~999999936.0 ~4.85 0.0 0 force @a[distance=..32] +particle fishing ~1.89 ~0.0 ~4.56 ~1.89 ~1000000000.0 ~4.56 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.74 ~0.0 ~4.11 ~2.74 ~1000000000.0 ~4.11 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.49 ~0.0 ~3.49 ~3.49 ~1000000000.0 ~3.49 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.11 ~0.0 ~2.74 ~4.11 ~999999936.0 ~2.74 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.56 ~0.0 ~1.89 ~4.56 ~1000000000.0 ~1.89 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.85 ~0.0 ~0.96 ~4.85 ~1000000000.0 ~0.96 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.94 ~0.0 ~-0.0 ~4.94 ~1000000000.0 ~-0.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.85 ~0.0 ~-0.96 ~4.85 ~1000000000.0 ~-0.96 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.56 ~0.0 ~-1.89 ~4.56 ~1000000000.0 ~-1.89 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.11 ~0.0 ~-2.74 ~4.11 ~1000000000.0 ~-2.74 0.00000000000 0 force @a[distance=..32] +particle fishing ~3.49 ~0.0 ~-3.49 ~3.49 ~1000000000.0 ~-3.49 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.74 ~0.0 ~-4.11 ~2.74 ~1000000000.0 ~-4.11 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.89 ~0.0 ~-4.56 ~1.89 ~1000000000.0 ~-4.56 0.00000000000 0 force @a[distance=..32] +particle fishing ~0.96 ~0.0 ~-4.85 ~0.96 ~1000000000.0 ~-4.85 0.00000000001 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_002.mcfunction new file mode 100644 index 000000000..0a886815a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_002.mcfunction @@ -0,0 +1,119 @@ +# frame 2 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.648 0 +# 2_circle +particle fishing ~-2.03 ~0.0 ~6.93 ~944853632.0 ~0.0 ~-327492992.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~0.78 ~0.020000000000000018 ~7.18 ~747604864.0 ~0.0 ~-664143936.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~3.47 ~-0.050000000000000044 ~6.34 ~436539904.0 ~0.0 ~-899684992.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~5.63 ~0.09999999999999987 ~4.53 ~59015880.0 ~0.0 ~-998257024.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~6.93 ~0.09999999999999987 ~2.03 ~-327492992.0 ~0.0 ~-944853632.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~7.18 ~-0.08999999999999986 ~-0.78 ~-664143936.0 ~0.0 ~-747604800.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~6.34 ~0.039999999999999813 ~-3.47 ~-899684992.0 ~0.0 ~-436539904.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~4.53 ~0.0 ~-5.63 ~-998257024.0 ~0.0 ~-59015576.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~2.03 ~-0.029999999999999805 ~-6.93 ~-944853632.0 ~0.0 ~327493024.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-0.78 ~-0.019999999999999796 ~-7.18 ~-747604864.0 ~0.0 ~664143936.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-3.47 ~0.07000000000000006 ~-6.34 ~-436539808.0 ~0.0 ~899684928.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-5.63 ~-0.06000000000000005 ~-4.53 ~-59015424.0 ~0.0 ~998257088.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-6.93 ~0.08000000000000007 ~-2.03 ~327492992.0 ~0.0 ~944853632.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-7.18 ~-0.1399999999999999 ~0.78 ~664144128.0 ~0.0 ~747604544.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-6.34 ~0.020000000000000018 ~3.47 ~899685056.0 ~0.0 ~436539744.0 0.00000000031 0 force @a[distance=..32] +particle fishing ~-4.53 ~-0.030000000000000027 ~5.63 ~998257024.0 ~0.0 ~59015880.0 0.00000000031 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-6.92 ~-0.0 ~1000000000.0 ~-6.92 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.35 ~0.0 ~-6.79 ~-1.35 ~1000000000.0 ~-6.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.65 ~0.0 ~-6.39 ~-2.65 ~1000000000.0 ~-6.39 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.84 ~0.0 ~-5.75 ~-3.84 ~1000000000.0 ~-5.75 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.89 ~0.0 ~-4.89 ~-4.89 ~1000000000.0 ~-4.89 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.75 ~0.0 ~-3.84 ~-5.75 ~1000000000.0 ~-3.84 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.39 ~0.0 ~-2.65 ~-6.39 ~1000000000.0 ~-2.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.79 ~0.0 ~-1.35 ~-6.79 ~1000000000.0 ~-1.35 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.92 ~0.0 ~0.0 ~-6.92 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.79 ~0.0 ~1.35 ~-6.79 ~1000000000.0 ~1.35 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.39 ~0.0 ~2.65 ~-6.39 ~1000000000.0 ~2.65 0.00000000000 0 force @a[distance=..32] +particle fishing ~-5.75 ~0.0 ~3.84 ~-5.75 ~1000000000.0 ~3.84 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.89 ~0.0 ~4.89 ~-4.89 ~1000000000.0 ~4.89 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.84 ~0.0 ~5.75 ~-3.84 ~1000000000.0 ~5.75 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.65 ~0.0 ~6.39 ~-2.65 ~1000000000.0 ~6.39 0.00000000000 0 force @a[distance=..32] +particle fishing ~-1.35 ~0.0 ~6.79 ~-1.35 ~1000000000.0 ~6.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~6.92 ~0.0 ~1000000000.0 ~6.92 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.35 ~0.0 ~6.79 ~1.35 ~1000000000.0 ~6.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.65 ~0.0 ~6.39 ~2.65 ~1000000000.0 ~6.39 0.00000000000 0 force @a[distance=..32] +particle fishing ~3.84 ~0.0 ~5.75 ~3.84 ~1000000000.0 ~5.75 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.89 ~0.0 ~4.89 ~4.89 ~1000000000.0 ~4.89 0.00000000000 0 force @a[distance=..32] +particle fishing ~5.75 ~0.0 ~3.84 ~5.75 ~1000000000.0 ~3.84 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.39 ~0.0 ~2.65 ~6.39 ~1000000000.0 ~2.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.79 ~0.0 ~1.35 ~6.79 ~999999936.0 ~1.35 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.92 ~0.0 ~-0.0 ~6.92 ~1000000000.0 ~-0.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~6.79 ~0.0 ~-1.35 ~6.79 ~1000000000.0 ~-1.35 0.00000000000 0 force @a[distance=..32] +particle fishing ~6.39 ~0.0 ~-2.65 ~6.39 ~1000000000.0 ~-2.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.75 ~0.0 ~-3.84 ~5.75 ~1000000000.0 ~-3.84 0.00000000000 0 force @a[distance=..32] +particle fishing ~4.89 ~0.0 ~-4.89 ~4.89 ~1000000000.0 ~-4.89 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.84 ~0.0 ~-5.75 ~3.84 ~1000000000.0 ~-5.75 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.65 ~0.0 ~-6.39 ~2.65 ~1000000000.0 ~-6.39 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.35 ~0.0 ~-6.79 ~1.35 ~999999936.0 ~-6.79 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-5.91 ~-0.0 ~999999936.0 ~-5.91 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.15 ~0.0 ~-5.79 ~-1.15 ~1000000000.0 ~-5.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.26 ~0.0 ~-5.46 ~-2.26 ~1000000000.0 ~-5.46 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.28 ~0.0 ~-4.91 ~-3.28 ~1000000000.0 ~-4.91 0.00000000000 0 force @a[distance=..32] +particle fishing ~-4.18 ~0.0 ~-4.18 ~-4.18 ~1000000000.0 ~-4.18 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.91 ~0.0 ~-3.28 ~-4.91 ~1000000000.0 ~-3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.46 ~0.0 ~-2.26 ~-5.46 ~1000000000.0 ~-2.26 0.00000000000 0 force @a[distance=..32] +particle fishing ~-5.79 ~0.0 ~-1.15 ~-5.79 ~1000000000.0 ~-1.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.91 ~0.0 ~0.0 ~-5.91 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.79 ~0.0 ~1.15 ~-5.79 ~1000000000.0 ~1.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.46 ~0.0 ~2.26 ~-5.46 ~1000000000.0 ~2.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.91 ~0.0 ~3.28 ~-4.91 ~999999936.0 ~3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.18 ~0.0 ~4.18 ~-4.18 ~999999936.0 ~4.18 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.28 ~0.0 ~4.91 ~-3.28 ~1000000000.0 ~4.91 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.26 ~0.0 ~5.46 ~-2.26 ~1000000000.0 ~5.46 0.00000000000 0 force @a[distance=..32] +particle fishing ~-1.15 ~0.0 ~5.79 ~-1.15 ~1000000000.0 ~5.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~5.91 ~0.0 ~1000000000.0 ~5.91 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.15 ~0.0 ~5.79 ~1.15 ~999999936.0 ~5.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.26 ~0.0 ~5.46 ~2.26 ~1000000000.0 ~5.46 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.28 ~0.0 ~4.91 ~3.28 ~1000000000.0 ~4.91 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.18 ~0.0 ~4.18 ~4.18 ~1000000000.0 ~4.18 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.91 ~0.0 ~3.28 ~4.91 ~1000000000.0 ~3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.46 ~0.0 ~2.26 ~5.46 ~1000000000.0 ~2.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.79 ~0.0 ~1.15 ~5.79 ~1000000000.0 ~1.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.91 ~0.0 ~-0.0 ~5.91 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.79 ~0.0 ~-1.15 ~5.79 ~1000000000.0 ~-1.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.46 ~0.0 ~-2.26 ~5.46 ~1000000000.0 ~-2.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.91 ~0.0 ~-3.28 ~4.91 ~1000000000.0 ~-3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.18 ~0.0 ~-4.18 ~4.18 ~1000000000.0 ~-4.18 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.28 ~0.0 ~-4.91 ~3.28 ~999999936.0 ~-4.91 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.26 ~0.0 ~-5.46 ~2.26 ~1000000000.0 ~-5.46 0.00000000000 0 force @a[distance=..32] +particle fishing ~1.15 ~0.0 ~-5.79 ~1.15 ~1000000000.0 ~-5.79 0.00000000001 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-4.63 ~-0.0 ~1000000000.0 ~-4.63 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.9 ~0.0 ~-4.54 ~-0.9 ~1000000000.0 ~-4.54 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.77 ~0.0 ~-4.28 ~-1.77 ~999999936.0 ~-4.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.57 ~0.0 ~-3.85 ~-2.57 ~1000000000.0 ~-3.85 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.28 ~0.0 ~-3.28 ~-3.28 ~1000000000.0 ~-3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.85 ~0.0 ~-2.57 ~-3.85 ~1000000000.0 ~-2.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.28 ~0.0 ~-1.77 ~-4.28 ~1000000000.0 ~-1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.54 ~0.0 ~-0.9 ~-4.54 ~1000000000.0 ~-0.9 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.63 ~0.0 ~0.0 ~-4.63 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.54 ~0.0 ~0.9 ~-4.54 ~1000000000.0 ~0.9 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.28 ~0.0 ~1.77 ~-4.28 ~1000000000.0 ~1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.85 ~0.0 ~2.57 ~-3.85 ~1000000000.0 ~2.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.28 ~0.0 ~3.28 ~-3.28 ~1000000000.0 ~3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.57 ~0.0 ~3.85 ~-2.57 ~1000000000.0 ~3.85 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.77 ~0.0 ~4.28 ~-1.77 ~1000000000.0 ~4.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.9 ~0.0 ~4.54 ~-0.9 ~1000000000.0 ~4.54 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.63 ~0.0 ~1000000000.0 ~4.63 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.9 ~0.0 ~4.54 ~0.9 ~1000000000.0 ~4.54 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.77 ~0.0 ~4.28 ~1.77 ~1000000000.0 ~4.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.57 ~0.0 ~3.85 ~2.57 ~1000000000.0 ~3.85 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.28 ~0.0 ~3.28 ~3.28 ~1000000000.0 ~3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.85 ~0.0 ~2.57 ~3.85 ~1000000000.0 ~2.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.28 ~0.0 ~1.77 ~4.28 ~1000000000.0 ~1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.54 ~0.0 ~0.9 ~4.54 ~1000000000.0 ~0.9 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.63 ~0.0 ~-0.0 ~4.63 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.54 ~0.0 ~-0.9 ~4.54 ~1000000000.0 ~-0.9 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.28 ~0.0 ~-1.77 ~4.28 ~1000000000.0 ~-1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.85 ~0.0 ~-2.57 ~3.85 ~1000000000.0 ~-2.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.28 ~0.0 ~-3.28 ~3.28 ~1000000000.0 ~-3.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.57 ~0.0 ~-3.85 ~2.57 ~1000000000.0 ~-3.85 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.77 ~0.0 ~-4.28 ~1.77 ~1000000000.0 ~-4.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.9 ~0.0 ~-4.54 ~0.9 ~1000000000.0 ~-4.54 0.00000000001 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_003.mcfunction new file mode 100644 index 000000000..06e93827b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_003.mcfunction @@ -0,0 +1,119 @@ +# frame 3 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.904 0 +# 2_circle +particle fishing ~-2.09 ~0.05999999999999983 ~6.71 ~951371200.0 ~0.0 ~-308046912.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~0.64 ~-0.08999999999999986 ~7.0 ~761067840.0 ~0.0 ~-648672320.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~3.27 ~-0.05999999999999983 ~6.23 ~454898880.0 ~0.0 ~-890543040.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~5.4 ~-0.040000000000000036 ~4.5 ~79475648.0 ~0.0 ~-996836736.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~6.71 ~-0.020000000000000018 ~2.09 ~-308046912.0 ~0.0 ~-951371200.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~7.0 ~-0.08000000000000007 ~-0.64 ~-648672320.0 ~0.0 ~-761067840.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~6.23 ~0.030000000000000027 ~-3.27 ~-890543040.0 ~0.0 ~-454898880.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~4.5 ~-0.019999999999999796 ~-5.4 ~-996836864.0 ~0.0 ~-79475640.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~2.09 ~-0.1299999999999999 ~-6.71 ~-951371200.0 ~0.0 ~308046912.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.64 ~0.09999999999999987 ~-7.0 ~-761067904.0 ~0.0 ~648672192.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-3.27 ~-0.020000000000000018 ~-6.23 ~-454898720.0 ~0.0 ~890543104.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-5.4 ~0.010000000000000009 ~-4.5 ~-79475488.0 ~0.0 ~996836864.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-6.71 ~-0.11999999999999988 ~-2.09 ~308046912.0 ~0.0 ~951371200.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-7.0 ~0.11999999999999988 ~0.64 ~648672320.0 ~0.0 ~761067712.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-6.23 ~-0.1399999999999999 ~3.27 ~890543104.0 ~0.0 ~454898720.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-4.5 ~-0.030000000000000027 ~5.4 ~996836800.0 ~0.0 ~79475632.0 0.00000000030 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-6.57 ~-0.0 ~1000000000.0 ~-6.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.28 ~0.0 ~-6.44 ~-1.28 ~1000000000.0 ~-6.44 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.51 ~0.0 ~-6.07 ~-2.51 ~1000000000.0 ~-6.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.65 ~0.0 ~-5.46 ~-3.65 ~1000000000.0 ~-5.46 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.65 ~0.0 ~-4.65 ~-4.65 ~1000000000.0 ~-4.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.46 ~0.0 ~-3.65 ~-5.46 ~1000000000.0 ~-3.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.07 ~0.0 ~-2.51 ~-6.07 ~1000000000.0 ~-2.51 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.44 ~0.0 ~-1.28 ~-6.44 ~1000000000.0 ~-1.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.57 ~0.0 ~0.0 ~-6.57 ~999999936.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.44 ~0.0 ~1.28 ~-6.44 ~1000000000.0 ~1.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.07 ~0.0 ~2.51 ~-6.07 ~1000000000.0 ~2.51 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.46 ~0.0 ~3.65 ~-5.46 ~1000000000.0 ~3.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.65 ~0.0 ~4.65 ~-4.65 ~1000000000.0 ~4.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.65 ~0.0 ~5.46 ~-3.65 ~999999936.0 ~5.46 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.51 ~0.0 ~6.07 ~-2.51 ~1000000000.0 ~6.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.28 ~0.0 ~6.44 ~-1.28 ~1000000000.0 ~6.44 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~6.57 ~0.0 ~1000000000.0 ~6.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.28 ~0.0 ~6.44 ~1.28 ~1000000000.0 ~6.44 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.51 ~0.0 ~6.07 ~2.51 ~1000000000.0 ~6.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.65 ~0.0 ~5.46 ~3.65 ~1000000000.0 ~5.46 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.65 ~0.0 ~4.65 ~4.65 ~1000000000.0 ~4.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.46 ~0.0 ~3.65 ~5.46 ~999999936.0 ~3.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.07 ~0.0 ~2.51 ~6.07 ~999999936.0 ~2.51 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.44 ~0.0 ~1.28 ~6.44 ~1000000000.0 ~1.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.57 ~0.0 ~-0.0 ~6.57 ~999999936.0 ~-0.0 0.00000000000 0 force @a[distance=..32] +particle fishing ~6.44 ~0.0 ~-1.28 ~6.44 ~1000000000.0 ~-1.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~6.07 ~0.0 ~-2.51 ~6.07 ~1000000000.0 ~-2.51 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.46 ~0.0 ~-3.65 ~5.46 ~1000000000.0 ~-3.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.65 ~0.0 ~-4.65 ~4.65 ~1000000000.0 ~-4.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.65 ~0.0 ~-5.46 ~3.65 ~1000000000.0 ~-5.46 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.51 ~0.0 ~-6.07 ~2.51 ~999999936.0 ~-6.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.28 ~0.0 ~-6.44 ~1.28 ~999999936.0 ~-6.44 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-5.52 ~-0.0 ~1000000000.0 ~-5.52 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.08 ~0.0 ~-5.42 ~-1.08 ~1000000000.0 ~-5.42 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.11 ~0.0 ~-5.1 ~-2.11 ~1000000000.0 ~-5.1 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.07 ~0.0 ~-4.59 ~-3.07 ~999999936.0 ~-4.59 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.91 ~0.0 ~-3.91 ~-3.91 ~1000000000.0 ~-3.91 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.59 ~0.0 ~-3.07 ~-4.59 ~1000000000.0 ~-3.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.1 ~0.0 ~-2.11 ~-5.1 ~999999936.0 ~-2.11 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.42 ~0.0 ~-1.08 ~-5.42 ~1000000000.0 ~-1.08 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.52 ~0.0 ~0.0 ~-5.52 ~1000000000.0 ~0.0 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.42 ~0.0 ~1.08 ~-5.42 ~1000000000.0 ~1.08 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.1 ~0.0 ~2.11 ~-5.1 ~1000000000.0 ~2.11 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.59 ~0.0 ~3.07 ~-4.59 ~1000000000.0 ~3.07 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.91 ~0.0 ~3.91 ~-3.91 ~1000000000.0 ~3.91 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.07 ~0.0 ~4.59 ~-3.07 ~1000000000.0 ~4.59 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.11 ~0.0 ~5.1 ~-2.11 ~1000000000.0 ~5.1 0.00000000002 0 force @a[distance=..32] +particle fishing ~-1.08 ~0.0 ~5.42 ~-1.08 ~999999936.0 ~5.42 0.00000000002 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~5.52 ~0.0 ~1000000000.0 ~5.52 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.08 ~0.0 ~5.42 ~1.08 ~1000000000.0 ~5.42 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.11 ~0.0 ~5.1 ~2.11 ~1000000000.0 ~5.1 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.07 ~0.0 ~4.59 ~3.07 ~999999936.0 ~4.59 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.91 ~0.0 ~3.91 ~3.91 ~1000000000.0 ~3.91 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.59 ~0.0 ~3.07 ~4.59 ~1000000000.0 ~3.07 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.1 ~0.0 ~2.11 ~5.1 ~1000000000.0 ~2.11 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.42 ~0.0 ~1.08 ~5.42 ~1000000000.0 ~1.08 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.52 ~0.0 ~-0.0 ~5.52 ~1000000000.0 ~-0.0 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.42 ~0.0 ~-1.08 ~5.42 ~1000000000.0 ~-1.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.1 ~0.0 ~-2.11 ~5.1 ~999999936.0 ~-2.11 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.59 ~0.0 ~-3.07 ~4.59 ~1000000000.0 ~-3.07 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.91 ~0.0 ~-3.91 ~3.91 ~1000000000.0 ~-3.91 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.07 ~0.0 ~-4.59 ~3.07 ~1000000000.0 ~-4.59 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.11 ~0.0 ~-5.1 ~2.11 ~1000000000.0 ~-5.1 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.08 ~0.0 ~-5.42 ~1.08 ~1000000000.0 ~-5.42 0.00000000002 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-4.22 ~-0.0 ~999999936.0 ~-4.22 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.82 ~0.0 ~-4.14 ~-0.82 ~1000000000.0 ~-4.14 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.62 ~0.0 ~-3.9 ~-1.62 ~1000000000.0 ~-3.9 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.34 ~0.0 ~-3.51 ~-2.34 ~1000000000.0 ~-3.51 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.98 ~0.0 ~-2.98 ~-2.98 ~1000000000.0 ~-2.98 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.51 ~0.0 ~-2.34 ~-3.51 ~1000000000.0 ~-2.34 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.9 ~0.0 ~-1.62 ~-3.9 ~1000000000.0 ~-1.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.14 ~0.0 ~-0.82 ~-4.14 ~1000000000.0 ~-0.82 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.22 ~0.0 ~0.0 ~-4.22 ~1000000000.0 ~0.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.14 ~0.0 ~0.82 ~-4.14 ~1000000000.0 ~0.82 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.9 ~0.0 ~1.62 ~-3.9 ~1000000000.0 ~1.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.51 ~0.0 ~2.34 ~-3.51 ~1000000000.0 ~2.34 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.98 ~0.0 ~2.98 ~-2.98 ~1000000000.0 ~2.98 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.34 ~0.0 ~3.51 ~-2.34 ~1000000000.0 ~3.51 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.62 ~0.0 ~3.9 ~-1.62 ~1000000000.0 ~3.9 0.00000000003 0 force @a[distance=..32] +particle fishing ~-0.82 ~0.0 ~4.14 ~-0.82 ~1000000000.0 ~4.14 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.22 ~0.0 ~1000000000.0 ~4.22 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.82 ~0.0 ~4.14 ~0.82 ~999999936.0 ~4.14 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.62 ~0.0 ~3.9 ~1.62 ~999999936.0 ~3.9 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.34 ~0.0 ~3.51 ~2.34 ~1000000000.0 ~3.51 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.98 ~0.0 ~2.98 ~2.98 ~1000000000.0 ~2.98 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.51 ~0.0 ~2.34 ~3.51 ~1000000000.0 ~2.34 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.9 ~0.0 ~1.62 ~3.9 ~1000000000.0 ~1.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.14 ~0.0 ~0.82 ~4.14 ~1000000000.0 ~0.82 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.22 ~0.0 ~-0.0 ~4.22 ~1000000000.0 ~-0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.14 ~0.0 ~-0.82 ~4.14 ~1000000000.0 ~-0.82 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.9 ~0.0 ~-1.62 ~3.9 ~1000000000.0 ~-1.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.51 ~0.0 ~-2.34 ~3.51 ~1000000000.0 ~-2.34 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.98 ~0.0 ~-2.98 ~2.98 ~1000000000.0 ~-2.98 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.34 ~0.0 ~-3.51 ~2.34 ~1000000000.0 ~-3.51 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.62 ~0.0 ~-3.9 ~1.62 ~1000000000.0 ~-3.9 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.82 ~0.0 ~-4.14 ~0.82 ~999999936.0 ~-4.14 0.00000000002 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_004.mcfunction new file mode 100644 index 000000000..a2e54c154 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_004.mcfunction @@ -0,0 +1,119 @@ +# frame 4 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.201 0 +# 2_circle +particle fishing ~-2.18 ~-0.1100000000000001 ~6.3 ~972790656.0 ~0.0 ~-231686064.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.4 ~0.09999999999999987 ~6.66 ~810078912.0 ~0.0 ~-586320960.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~2.91 ~0.020000000000000018 ~6.0 ~524040096.0 ~0.0 ~-851693632.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~4.99 ~-0.06999999999999984 ~4.43 ~158220784.0 ~0.0 ~-987403776.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~6.3 ~0.050000000000000044 ~2.18 ~-231686064.0 ~0.0 ~-972790656.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~6.66 ~-0.030000000000000027 ~-0.4 ~-586321024.0 ~0.0 ~-810078784.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~6.0 ~-0.09999999999999987 ~-2.91 ~-851693632.0 ~0.0 ~-524040096.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~4.43 ~0.06000000000000005 ~-4.99 ~-987403840.0 ~0.0 ~-158220640.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~2.18 ~0.030000000000000027 ~-6.3 ~-972790656.0 ~0.0 ~231686064.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-0.4 ~0.10999999999999988 ~-6.66 ~-810078912.0 ~0.0 ~586320960.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-2.91 ~-0.039999999999999813 ~-6.0 ~-524039968.0 ~0.0 ~851693760.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-4.99 ~-0.08999999999999986 ~-4.43 ~-158220640.0 ~0.0 ~987403840.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-6.3 ~-0.010000000000000009 ~-2.18 ~231686048.0 ~0.0 ~972790656.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-6.66 ~0.010000000000000009 ~0.4 ~586321024.0 ~0.0 ~810078848.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-6.0 ~-0.019999999999999796 ~2.91 ~851693760.0 ~0.0 ~524039936.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-4.43 ~0.07999999999999985 ~4.99 ~987403776.0 ~0.0 ~158220784.0 0.00000000029 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-6.2 ~-0.0 ~1000000000.0 ~-6.2 0.00000000002 0 force @a[distance=..32] +particle fishing ~-1.21 ~0.0 ~-6.08 ~-1.21 ~1000000000.0 ~-6.08 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.37 ~0.0 ~-5.73 ~-2.37 ~999999936.0 ~-5.73 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.45 ~0.0 ~-5.16 ~-3.45 ~1000000000.0 ~-5.16 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.39 ~0.0 ~-4.39 ~-4.39 ~1000000000.0 ~-4.39 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.16 ~0.0 ~-3.45 ~-5.16 ~1000000000.0 ~-3.45 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.73 ~0.0 ~-2.37 ~-5.73 ~1000000000.0 ~-2.37 0.00000000002 0 force @a[distance=..32] +particle fishing ~-6.08 ~0.0 ~-1.21 ~-6.08 ~1000000000.0 ~-1.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~-6.2 ~0.0 ~0.0 ~-6.2 ~1000000000.0 ~0.0 0.00000000002 0 force @a[distance=..32] +particle fishing ~-6.08 ~0.0 ~1.21 ~-6.08 ~1000000000.0 ~1.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.73 ~0.0 ~2.37 ~-5.73 ~1000000000.0 ~2.37 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.16 ~0.0 ~3.45 ~-5.16 ~1000000000.0 ~3.45 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.39 ~0.0 ~4.39 ~-4.39 ~1000000000.0 ~4.39 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.45 ~0.0 ~5.16 ~-3.45 ~1000000000.0 ~5.16 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.37 ~0.0 ~5.73 ~-2.37 ~1000000000.0 ~5.73 0.00000000002 0 force @a[distance=..32] +particle fishing ~-1.21 ~0.0 ~6.08 ~-1.21 ~1000000000.0 ~6.08 0.00000000002 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~6.2 ~0.0 ~1000000000.0 ~6.2 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.21 ~0.0 ~6.08 ~1.21 ~1000000000.0 ~6.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.37 ~0.0 ~5.73 ~2.37 ~1000000000.0 ~5.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.45 ~0.0 ~5.16 ~3.45 ~1000000000.0 ~5.16 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.39 ~0.0 ~4.39 ~4.39 ~1000000000.0 ~4.39 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.16 ~0.0 ~3.45 ~5.16 ~999999936.0 ~3.45 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.73 ~0.0 ~2.37 ~5.73 ~1000000000.0 ~2.37 0.00000000002 0 force @a[distance=..32] +particle fishing ~6.08 ~0.0 ~1.21 ~6.08 ~1000000000.0 ~1.21 0.00000000002 0 force @a[distance=..32] +particle fishing ~6.2 ~0.0 ~-0.0 ~6.2 ~1000000000.0 ~-0.0 0.00000000002 0 force @a[distance=..32] +particle fishing ~6.08 ~0.0 ~-1.21 ~6.08 ~1000000000.0 ~-1.21 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.73 ~0.0 ~-2.37 ~5.73 ~1000000000.0 ~-2.37 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.16 ~0.0 ~-3.45 ~5.16 ~1000000000.0 ~-3.45 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.39 ~0.0 ~-4.39 ~4.39 ~1000000000.0 ~-4.39 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.45 ~0.0 ~-5.16 ~3.45 ~1000000000.0 ~-5.16 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.37 ~0.0 ~-5.73 ~2.37 ~1000000000.0 ~-5.73 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.21 ~0.0 ~-6.08 ~1.21 ~999999936.0 ~-6.08 0.00000000002 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-5.12 ~-0.0 ~1000000000.0 ~-5.12 0.00000000004 0 force @a[distance=..32] +particle fishing ~-1.0 ~0.0 ~-5.02 ~-1.0 ~1000000000.0 ~-5.02 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.96 ~0.0 ~-4.73 ~-1.96 ~1000000000.0 ~-4.73 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.85 ~0.0 ~-4.26 ~-2.85 ~1000000000.0 ~-4.26 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.62 ~0.0 ~-3.62 ~-3.62 ~1000000000.0 ~-3.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.26 ~0.0 ~-2.85 ~-4.26 ~1000000000.0 ~-2.85 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.73 ~0.0 ~-1.96 ~-4.73 ~1000000000.0 ~-1.96 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.02 ~0.0 ~-1.0 ~-5.02 ~1000000000.0 ~-1.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~-5.12 ~0.0 ~0.0 ~-5.12 ~1000000000.0 ~0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~-5.02 ~0.0 ~1.0 ~-5.02 ~1000000000.0 ~1.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.73 ~0.0 ~1.96 ~-4.73 ~1000000000.0 ~1.96 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.26 ~0.0 ~2.85 ~-4.26 ~1000000000.0 ~2.85 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.62 ~0.0 ~3.62 ~-3.62 ~1000000000.0 ~3.62 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.85 ~0.0 ~4.26 ~-2.85 ~1000000000.0 ~4.26 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.96 ~0.0 ~4.73 ~-1.96 ~1000000000.0 ~4.73 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.0 ~0.0 ~5.02 ~-1.0 ~1000000000.0 ~5.02 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~5.12 ~0.0 ~1000000000.0 ~5.12 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.0 ~0.0 ~5.02 ~1.0 ~1000000000.0 ~5.02 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.96 ~0.0 ~4.73 ~1.96 ~1000000000.0 ~4.73 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.85 ~0.0 ~4.26 ~2.85 ~1000000000.0 ~4.26 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.62 ~0.0 ~3.62 ~3.62 ~1000000000.0 ~3.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.26 ~0.0 ~2.85 ~4.26 ~999999936.0 ~2.85 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.73 ~0.0 ~1.96 ~4.73 ~1000000000.0 ~1.96 0.00000000004 0 force @a[distance=..32] +particle fishing ~5.02 ~0.0 ~1.0 ~5.02 ~1000000000.0 ~1.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.12 ~0.0 ~-0.0 ~5.12 ~1000000000.0 ~-0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~5.02 ~0.0 ~-1.0 ~5.02 ~1000000000.0 ~-1.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.73 ~0.0 ~-1.96 ~4.73 ~1000000000.0 ~-1.96 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.26 ~0.0 ~-2.85 ~4.26 ~1000000000.0 ~-2.85 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.62 ~0.0 ~-3.62 ~3.62 ~1000000000.0 ~-3.62 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.85 ~0.0 ~-4.26 ~2.85 ~1000000000.0 ~-4.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.96 ~0.0 ~-4.73 ~1.96 ~1000000000.0 ~-4.73 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.0 ~0.0 ~-5.02 ~1.0 ~1000000000.0 ~-5.02 0.00000000003 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-3.78 ~-0.0 ~1000000000.0 ~-3.78 0.00000000005 0 force @a[distance=..32] +particle fishing ~-0.74 ~0.0 ~-3.71 ~-0.74 ~999999936.0 ~-3.71 0.00000000008 0 force @a[distance=..32] +particle fishing ~-1.45 ~0.0 ~-3.49 ~-1.45 ~1000000000.0 ~-3.49 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.1 ~0.0 ~-3.14 ~-2.1 ~1000000000.0 ~-3.14 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.67 ~0.0 ~-2.67 ~-2.67 ~1000000000.0 ~-2.67 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.14 ~0.0 ~-2.1 ~-3.14 ~1000000000.0 ~-2.1 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.49 ~0.0 ~-1.45 ~-3.49 ~1000000000.0 ~-1.45 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.71 ~0.0 ~-0.74 ~-3.71 ~1000000000.0 ~-0.74 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.78 ~0.0 ~0.0 ~-3.78 ~1000000000.0 ~0.0 0.00000000007 0 force @a[distance=..32] +particle fishing ~-3.71 ~0.0 ~0.74 ~-3.71 ~1000000000.0 ~0.74 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.49 ~0.0 ~1.45 ~-3.49 ~1000000000.0 ~1.45 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.14 ~0.0 ~2.1 ~-3.14 ~999999936.0 ~2.1 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.67 ~0.0 ~2.67 ~-2.67 ~1000000000.0 ~2.67 0.00000000007 0 force @a[distance=..32] +particle fishing ~-2.1 ~0.0 ~3.14 ~-2.1 ~999999936.0 ~3.14 0.00000000004 0 force @a[distance=..32] +particle fishing ~-1.45 ~0.0 ~3.49 ~-1.45 ~1000000000.0 ~3.49 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.74 ~0.0 ~3.71 ~-0.74 ~1000000000.0 ~3.71 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.78 ~0.0 ~1000000000.0 ~3.78 0.00000000002 0 force @a[distance=..32] +particle fishing ~0.74 ~0.0 ~3.71 ~0.74 ~1000000000.0 ~3.71 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.45 ~0.0 ~3.49 ~1.45 ~1000000000.0 ~3.49 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.1 ~0.0 ~3.14 ~2.1 ~1000000000.0 ~3.14 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.67 ~0.0 ~2.67 ~2.67 ~1000000000.0 ~2.67 0.00000000005 0 force @a[distance=..32] +particle fishing ~3.14 ~0.0 ~2.1 ~3.14 ~1000000000.0 ~2.1 0.00000000006 0 force @a[distance=..32] +particle fishing ~3.49 ~0.0 ~1.45 ~3.49 ~1000000000.0 ~1.45 0.00000000004 0 force @a[distance=..32] +particle fishing ~3.71 ~0.0 ~0.74 ~3.71 ~1000000000.0 ~0.74 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.78 ~0.0 ~-0.0 ~3.78 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.71 ~0.0 ~-0.74 ~3.71 ~1000000000.0 ~-0.74 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.49 ~0.0 ~-1.45 ~3.49 ~1000000000.0 ~-1.45 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.14 ~0.0 ~-2.1 ~3.14 ~1000000000.0 ~-2.1 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.67 ~0.0 ~-2.67 ~2.67 ~999999936.0 ~-2.67 0.00000000007 0 force @a[distance=..32] +particle fishing ~2.1 ~0.0 ~-3.14 ~2.1 ~1000000000.0 ~-3.14 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.45 ~0.0 ~-3.49 ~1.45 ~1000000000.0 ~-3.49 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.74 ~0.0 ~-3.71 ~0.74 ~1000000000.0 ~-3.71 0.00000000006 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_005.mcfunction new file mode 100644 index 000000000..8c67d99ef --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_005.mcfunction @@ -0,0 +1,119 @@ +# frame 5 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.495 0 +# 2_circle +particle fishing ~-2.28 ~-0.07999999999999985 ~5.71 ~995635776.0 ~0.0 ~-93323920.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.08 ~0.010000000000000009 ~6.15 ~884133952.0 ~0.0 ~-467233472.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~2.42 ~-0.11999999999999988 ~5.65 ~638030912.0 ~0.0 ~-770010752.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~4.4 ~0.010000000000000009 ~4.29 ~294793248.0 ~0.0 ~-955560960.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~5.71 ~0.020000000000000018 ~2.28 ~-93323920.0 ~0.0 ~-995635776.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~6.15 ~0.15999999999999992 ~-0.08 ~-467233504.0 ~0.0 ~-884133952.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~5.65 ~0.0 ~-2.42 ~-770010752.0 ~0.0 ~-638030912.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~4.29 ~-0.09999999999999987 ~-4.4 ~-955560960.0 ~0.0 ~-294793216.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~2.28 ~0.0 ~-5.71 ~-995635776.0 ~0.0 ~93323920.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.010000000000000009 ~-6.15 ~-884133952.0 ~0.0 ~467233504.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-2.42 ~0.1399999999999999 ~-5.65 ~-638030720.0 ~0.0 ~770010816.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-4.4 ~-0.010000000000000009 ~-4.29 ~-294792896.0 ~0.0 ~955561152.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-5.71 ~-0.08000000000000007 ~-2.28 ~93323912.0 ~0.0 ~995635776.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-6.15 ~0.020000000000000018 ~0.08 ~467233376.0 ~0.0 ~884134016.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-5.65 ~-0.04999999999999982 ~2.42 ~770011008.0 ~0.0 ~638030528.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~-4.29 ~0.0 ~4.4 ~955561088.0 ~0.0 ~294793024.0 0.00000000029 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-5.83 ~-0.0 ~1000000000.0 ~-5.83 0.00000000002 0 force @a[distance=..32] +particle fishing ~-1.14 ~0.0 ~-5.71 ~-1.14 ~1000000000.0 ~-5.71 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.23 ~0.0 ~-5.38 ~-2.23 ~1000000000.0 ~-5.38 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.24 ~0.0 ~-4.84 ~-3.24 ~1000000000.0 ~-4.84 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.12 ~0.0 ~-4.12 ~-4.12 ~1000000000.0 ~-4.12 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.84 ~0.0 ~-3.24 ~-4.84 ~1000000000.0 ~-3.24 0.00000000003 0 force @a[distance=..32] +particle fishing ~-5.38 ~0.0 ~-2.23 ~-5.38 ~1000000000.0 ~-2.23 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.71 ~0.0 ~-1.14 ~-5.71 ~1000000000.0 ~-1.14 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.83 ~0.0 ~0.0 ~-5.83 ~1000000000.0 ~0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~-5.71 ~0.0 ~1.14 ~-5.71 ~1000000000.0 ~1.14 0.00000000002 0 force @a[distance=..32] +particle fishing ~-5.38 ~0.0 ~2.23 ~-5.38 ~1000000000.0 ~2.23 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.84 ~0.0 ~3.24 ~-4.84 ~1000000000.0 ~3.24 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.12 ~0.0 ~4.12 ~-4.12 ~1000000000.0 ~4.12 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.24 ~0.0 ~4.84 ~-3.24 ~1000000000.0 ~4.84 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.23 ~0.0 ~5.38 ~-2.23 ~1000000000.0 ~5.38 0.00000000002 0 force @a[distance=..32] +particle fishing ~-1.14 ~0.0 ~5.71 ~-1.14 ~1000000000.0 ~5.71 0.00000000002 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~5.83 ~0.0 ~1000000000.0 ~5.83 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.14 ~0.0 ~5.71 ~1.14 ~999999936.0 ~5.71 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.23 ~0.0 ~5.38 ~2.23 ~1000000000.0 ~5.38 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.24 ~0.0 ~4.84 ~3.24 ~1000000000.0 ~4.84 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.12 ~0.0 ~4.12 ~4.12 ~1000000000.0 ~4.12 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.84 ~0.0 ~3.24 ~4.84 ~999999936.0 ~3.24 0.00000000003 0 force @a[distance=..32] +particle fishing ~5.38 ~0.0 ~2.23 ~5.38 ~1000000000.0 ~2.23 0.00000000003 0 force @a[distance=..32] +particle fishing ~5.71 ~0.0 ~1.14 ~5.71 ~1000000000.0 ~1.14 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.83 ~0.0 ~-0.0 ~5.83 ~1000000000.0 ~-0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~5.71 ~0.0 ~-1.14 ~5.71 ~1000000000.0 ~-1.14 0.00000000004 0 force @a[distance=..32] +particle fishing ~5.38 ~0.0 ~-2.23 ~5.38 ~1000000000.0 ~-2.23 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.84 ~0.0 ~-3.24 ~4.84 ~1000000000.0 ~-3.24 0.00000000002 0 force @a[distance=..32] +particle fishing ~4.12 ~0.0 ~-4.12 ~4.12 ~1000000000.0 ~-4.12 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.24 ~0.0 ~-4.84 ~3.24 ~1000000000.0 ~-4.84 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.23 ~0.0 ~-5.38 ~2.23 ~1000000000.0 ~-5.38 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.14 ~0.0 ~-5.71 ~1.14 ~1000000000.0 ~-5.71 0.00000000002 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-4.71 ~-0.0 ~1000000000.0 ~-4.71 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.92 ~0.0 ~-4.62 ~-0.92 ~1000000000.0 ~-4.62 0.00000000004 0 force @a[distance=..32] +particle fishing ~-1.8 ~0.0 ~-4.35 ~-1.8 ~1000000000.0 ~-4.35 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.62 ~0.0 ~-3.92 ~-2.62 ~1000000000.0 ~-3.92 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.33 ~0.0 ~-3.33 ~-3.33 ~1000000000.0 ~-3.33 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.92 ~0.0 ~-2.62 ~-3.92 ~1000000000.0 ~-2.62 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.35 ~0.0 ~-1.8 ~-4.35 ~999999936.0 ~-1.8 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.62 ~0.0 ~-0.92 ~-4.62 ~1000000000.0 ~-0.92 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.71 ~0.0 ~0.0 ~-4.71 ~999999936.0 ~0.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.62 ~0.0 ~0.92 ~-4.62 ~1000000000.0 ~0.92 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.35 ~0.0 ~1.8 ~-4.35 ~999999936.0 ~1.8 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.92 ~0.0 ~2.62 ~-3.92 ~1000000000.0 ~2.62 0.00000000006 0 force @a[distance=..32] +particle fishing ~-3.33 ~0.0 ~3.33 ~-3.33 ~1000000000.0 ~3.33 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.62 ~0.0 ~3.92 ~-2.62 ~1000000000.0 ~3.92 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.8 ~0.0 ~4.35 ~-1.8 ~1000000000.0 ~4.35 0.00000000003 0 force @a[distance=..32] +particle fishing ~-0.92 ~0.0 ~4.62 ~-0.92 ~1000000000.0 ~4.62 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.71 ~0.0 ~1000000000.0 ~4.71 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.92 ~0.0 ~4.62 ~0.92 ~1000000000.0 ~4.62 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.8 ~0.0 ~4.35 ~1.8 ~1000000000.0 ~4.35 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.62 ~0.0 ~3.92 ~2.62 ~1000000000.0 ~3.92 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.33 ~0.0 ~3.33 ~3.33 ~1000000000.0 ~3.33 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.92 ~0.0 ~2.62 ~3.92 ~1000000000.0 ~2.62 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.35 ~0.0 ~1.8 ~4.35 ~1000000000.0 ~1.8 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.62 ~0.0 ~0.92 ~4.62 ~999999936.0 ~0.92 0.00000000005 0 force @a[distance=..32] +particle fishing ~4.71 ~0.0 ~-0.0 ~4.71 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.62 ~0.0 ~-0.92 ~4.62 ~1000000000.0 ~-0.92 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.35 ~0.0 ~-1.8 ~4.35 ~1000000000.0 ~-1.8 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.92 ~0.0 ~-2.62 ~3.92 ~1000000000.0 ~-2.62 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.33 ~0.0 ~-3.33 ~3.33 ~1000000000.0 ~-3.33 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.62 ~0.0 ~-3.92 ~2.62 ~999999936.0 ~-3.92 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.8 ~0.0 ~-4.35 ~1.8 ~1000000000.0 ~-4.35 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.92 ~0.0 ~-4.62 ~0.92 ~1000000000.0 ~-4.62 0.00000000001 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-3.32 ~-0.0 ~1000000000.0 ~-3.32 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.65 ~0.0 ~-3.26 ~-0.65 ~1000000000.0 ~-3.26 0.00000000004 0 force @a[distance=..32] +particle fishing ~-1.27 ~0.0 ~-3.07 ~-1.27 ~1000000000.0 ~-3.07 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.85 ~0.0 ~-2.76 ~-1.85 ~1000000000.0 ~-2.76 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.35 ~0.0 ~-2.35 ~-2.35 ~1000000000.0 ~-2.35 0.00000000005 0 force @a[distance=..32] +particle fishing ~-2.76 ~0.0 ~-1.85 ~-2.76 ~1000000000.0 ~-1.85 0.00000000009 0 force @a[distance=..32] +particle fishing ~-3.07 ~0.0 ~-1.27 ~-3.07 ~1000000000.0 ~-1.27 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.26 ~0.0 ~-0.65 ~-3.26 ~1000000000.0 ~-0.65 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.32 ~0.0 ~0.0 ~-3.32 ~1000000000.0 ~0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.26 ~0.0 ~0.65 ~-3.26 ~1000000000.0 ~0.65 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.07 ~0.0 ~1.27 ~-3.07 ~1000000000.0 ~1.27 0.00000000013 0 force @a[distance=..32] +particle fishing ~-2.76 ~0.0 ~1.85 ~-2.76 ~1000000000.0 ~1.85 0.00000000008 0 force @a[distance=..32] +particle fishing ~-2.35 ~0.0 ~2.35 ~-2.35 ~1000000000.0 ~2.35 0.00000000011 0 force @a[distance=..32] +particle fishing ~-1.85 ~0.0 ~2.76 ~-1.85 ~1000000000.0 ~2.76 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.27 ~0.0 ~3.07 ~-1.27 ~1000000000.0 ~3.07 0.00000000011 0 force @a[distance=..32] +particle fishing ~-0.65 ~0.0 ~3.26 ~-0.65 ~1000000000.0 ~3.26 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.32 ~0.0 ~1000000000.0 ~3.32 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.65 ~0.0 ~3.26 ~0.65 ~1000000000.0 ~3.26 0.00000000011 0 force @a[distance=..32] +particle fishing ~1.27 ~0.0 ~3.07 ~1.27 ~1000000000.0 ~3.07 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.85 ~0.0 ~2.76 ~1.85 ~1000000000.0 ~2.76 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.35 ~0.0 ~2.35 ~2.35 ~1000000000.0 ~2.35 0.00000000005 0 force @a[distance=..32] +particle fishing ~2.76 ~0.0 ~1.85 ~2.76 ~1000000000.0 ~1.85 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.07 ~0.0 ~1.27 ~3.07 ~1000000000.0 ~1.27 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.26 ~0.0 ~0.65 ~3.26 ~999999936.0 ~0.65 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.32 ~0.0 ~-0.0 ~3.32 ~1000000000.0 ~-0.0 0.00000000005 0 force @a[distance=..32] +particle fishing ~3.26 ~0.0 ~-0.65 ~3.26 ~1000000000.0 ~-0.65 0.00000000010 0 force @a[distance=..32] +particle fishing ~3.07 ~0.0 ~-1.27 ~3.07 ~1000000000.0 ~-1.27 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.76 ~0.0 ~-1.85 ~2.76 ~1000000000.0 ~-1.85 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.35 ~0.0 ~-2.35 ~2.35 ~1000000000.0 ~-2.35 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.85 ~0.0 ~-2.76 ~1.85 ~1000000000.0 ~-2.76 0.00000000011 0 force @a[distance=..32] +particle fishing ~1.27 ~0.0 ~-3.07 ~1.27 ~1000000000.0 ~-3.07 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.65 ~0.0 ~-3.26 ~0.65 ~1000000000.0 ~-3.26 0.00000000004 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_006.mcfunction new file mode 100644 index 000000000..da6efa568 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_006.mcfunction @@ -0,0 +1,119 @@ +# frame 6 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.428 0 +# 2_circle +particle fishing ~-2.38 ~-0.010000000000000009 ~5.16 ~999516544.0 ~0.0 ~31089932.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.22 ~-0.07999999999999985 ~5.67 ~935330496.0 ~0.0 ~-353775200.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~1.97 ~0.1499999999999999 ~5.32 ~728748864.0 ~0.0 ~-684780992.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~3.85 ~-0.039999999999999813 ~4.17 ~411221728.0 ~0.0 ~-911535296.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~5.16 ~-0.1499999999999999 ~2.38 ~31089932.0 ~0.0 ~-999516544.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~5.67 ~-0.04999999999999982 ~0.22 ~-353775200.0 ~0.0 ~-935330496.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~5.32 ~0.0 ~-1.97 ~-684780992.0 ~0.0 ~-728748864.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~4.17 ~-0.020000000000000018 ~-3.85 ~-911535360.0 ~0.0 ~-411221600.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~2.38 ~0.1499999999999999 ~-5.16 ~-999516544.0 ~0.0 ~-31089932.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~0.22 ~-0.07000000000000006 ~-5.67 ~-935330496.0 ~0.0 ~353775200.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-1.97 ~0.030000000000000027 ~-5.32 ~-728748672.0 ~0.0 ~684781184.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-3.85 ~-0.050000000000000044 ~-4.17 ~-411221440.0 ~0.0 ~911535424.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-5.16 ~-0.10999999999999988 ~-2.38 ~-31089932.0 ~0.0 ~999516544.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-5.67 ~-0.09999999999999987 ~-0.22 ~353775360.0 ~0.0 ~935330432.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-5.32 ~-0.06000000000000005 ~1.97 ~684781376.0 ~0.0 ~728748544.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-4.17 ~0.10000000000000009 ~3.85 ~911535232.0 ~0.0 ~411221824.0 0.00000000028 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-5.45 ~-0.0 ~1000000000.0 ~-5.45 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.06 ~0.0 ~-5.34 ~-1.06 ~1000000000.0 ~-5.34 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.08 ~0.0 ~-5.03 ~-2.08 ~1000000000.0 ~-5.03 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.03 ~0.0 ~-4.53 ~-3.03 ~1000000000.0 ~-4.53 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.85 ~0.0 ~-3.85 ~-3.85 ~1000000000.0 ~-3.85 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.53 ~0.0 ~-3.03 ~-4.53 ~1000000000.0 ~-3.03 0.00000000004 0 force @a[distance=..32] +particle fishing ~-5.03 ~0.0 ~-2.08 ~-5.03 ~1000000000.0 ~-2.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~-5.34 ~0.0 ~-1.06 ~-5.34 ~1000000000.0 ~-1.06 0.00000000004 0 force @a[distance=..32] +particle fishing ~-5.45 ~0.0 ~0.0 ~-5.45 ~1000000000.0 ~0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~-5.34 ~0.0 ~1.06 ~-5.34 ~1000000000.0 ~1.06 0.00000000004 0 force @a[distance=..32] +particle fishing ~-5.03 ~0.0 ~2.08 ~-5.03 ~1000000000.0 ~2.08 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.53 ~0.0 ~3.03 ~-4.53 ~1000000000.0 ~3.03 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.85 ~0.0 ~3.85 ~-3.85 ~1000000000.0 ~3.85 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.03 ~0.0 ~4.53 ~-3.03 ~1000000000.0 ~4.53 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.08 ~0.0 ~5.03 ~-2.08 ~1000000000.0 ~5.03 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.06 ~0.0 ~5.34 ~-1.06 ~1000000000.0 ~5.34 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~5.45 ~0.0 ~999999936.0 ~5.45 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.06 ~0.0 ~5.34 ~1.06 ~1000000000.0 ~5.34 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.08 ~0.0 ~5.03 ~2.08 ~1000000000.0 ~5.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.03 ~0.0 ~4.53 ~3.03 ~1000000000.0 ~4.53 0.00000000005 0 force @a[distance=..32] +particle fishing ~3.85 ~0.0 ~3.85 ~3.85 ~1000000000.0 ~3.85 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.53 ~0.0 ~3.03 ~4.53 ~1000000000.0 ~3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.03 ~0.0 ~2.08 ~5.03 ~1000000000.0 ~2.08 0.00000000004 0 force @a[distance=..32] +particle fishing ~5.34 ~0.0 ~1.06 ~5.34 ~1000000000.0 ~1.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~5.45 ~0.0 ~-0.0 ~5.45 ~1000000000.0 ~-0.0 0.00000000002 0 force @a[distance=..32] +particle fishing ~5.34 ~0.0 ~-1.06 ~5.34 ~999999936.0 ~-1.06 0.00000000004 0 force @a[distance=..32] +particle fishing ~5.03 ~0.0 ~-2.08 ~5.03 ~999999936.0 ~-2.08 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.53 ~0.0 ~-3.03 ~4.53 ~999999936.0 ~-3.03 0.00000000004 0 force @a[distance=..32] +particle fishing ~3.85 ~0.0 ~-3.85 ~3.85 ~1000000000.0 ~-3.85 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.03 ~0.0 ~-4.53 ~3.03 ~1000000000.0 ~-4.53 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.08 ~0.0 ~-5.03 ~2.08 ~1000000000.0 ~-5.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.06 ~0.0 ~-5.34 ~1.06 ~1000000000.0 ~-5.34 0.00000000004 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-4.29 ~-0.0 ~999999936.0 ~-4.29 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.84 ~0.0 ~-4.21 ~-0.84 ~1000000000.0 ~-4.21 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.64 ~0.0 ~-3.96 ~-1.64 ~1000000000.0 ~-3.96 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.38 ~0.0 ~-3.57 ~-2.38 ~1000000000.0 ~-3.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.03 ~0.0 ~-3.03 ~-3.03 ~1000000000.0 ~-3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.57 ~0.0 ~-2.38 ~-3.57 ~1000000000.0 ~-2.38 0.00000000009 0 force @a[distance=..32] +particle fishing ~-3.96 ~0.0 ~-1.64 ~-3.96 ~1000000000.0 ~-1.64 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.21 ~0.0 ~-0.84 ~-4.21 ~1000000000.0 ~-0.84 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.29 ~0.0 ~0.0 ~-4.29 ~1000000000.0 ~0.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.21 ~0.0 ~0.84 ~-4.21 ~999999936.0 ~0.84 0.00000000007 0 force @a[distance=..32] +particle fishing ~-3.96 ~0.0 ~1.64 ~-3.96 ~1000000000.0 ~1.64 0.00000000006 0 force @a[distance=..32] +particle fishing ~-3.57 ~0.0 ~2.38 ~-3.57 ~1000000000.0 ~2.38 0.00000000006 0 force @a[distance=..32] +particle fishing ~-3.03 ~0.0 ~3.03 ~-3.03 ~1000000000.0 ~3.03 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.38 ~0.0 ~3.57 ~-2.38 ~1000000000.0 ~3.57 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.64 ~0.0 ~3.96 ~-1.64 ~1000000000.0 ~3.96 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.84 ~0.0 ~4.21 ~-0.84 ~1000000000.0 ~4.21 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.29 ~0.0 ~1000000000.0 ~4.29 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.84 ~0.0 ~4.21 ~0.84 ~1000000000.0 ~4.21 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.64 ~0.0 ~3.96 ~1.64 ~999999936.0 ~3.96 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.38 ~0.0 ~3.57 ~2.38 ~1000000000.0 ~3.57 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.03 ~0.0 ~3.03 ~3.03 ~1000000000.0 ~3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.57 ~0.0 ~2.38 ~3.57 ~1000000000.0 ~2.38 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.96 ~0.0 ~1.64 ~3.96 ~1000000000.0 ~1.64 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.21 ~0.0 ~0.84 ~4.21 ~1000000000.0 ~0.84 0.00000000005 0 force @a[distance=..32] +particle fishing ~4.29 ~0.0 ~-0.0 ~4.29 ~1000000000.0 ~-0.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.21 ~0.0 ~-0.84 ~4.21 ~1000000000.0 ~-0.84 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.96 ~0.0 ~-1.64 ~3.96 ~1000000000.0 ~-1.64 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.57 ~0.0 ~-2.38 ~3.57 ~999999936.0 ~-2.38 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.03 ~0.0 ~-3.03 ~3.03 ~1000000000.0 ~-3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.38 ~0.0 ~-3.57 ~2.38 ~1000000000.0 ~-3.57 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.64 ~0.0 ~-3.96 ~1.64 ~1000000000.0 ~-3.96 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.84 ~0.0 ~-4.21 ~0.84 ~1000000000.0 ~-4.21 0.00000000001 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-2.86 ~-0.0 ~1000000000.0 ~-2.86 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.56 ~0.0 ~-2.8 ~-0.56 ~1000000000.0 ~-2.8 0.00000000009 0 force @a[distance=..32] +particle fishing ~-1.09 ~0.0 ~-2.64 ~-1.09 ~1000000000.0 ~-2.64 0.00000000005 0 force @a[distance=..32] +particle fishing ~-1.59 ~0.0 ~-2.38 ~-1.59 ~1000000000.0 ~-2.38 0.00000000006 0 force @a[distance=..32] +particle fishing ~-2.02 ~0.0 ~-2.02 ~-2.02 ~1000000000.0 ~-2.02 0.00000000009 0 force @a[distance=..32] +particle fishing ~-2.38 ~0.0 ~-1.59 ~-2.38 ~1000000000.0 ~-1.59 0.00000000006 0 force @a[distance=..32] +particle fishing ~-2.64 ~0.0 ~-1.09 ~-2.64 ~1000000000.0 ~-1.09 0.00000000005 0 force @a[distance=..32] +particle fishing ~-2.8 ~0.0 ~-0.56 ~-2.8 ~1000000000.0 ~-0.56 0.00000000009 0 force @a[distance=..32] +particle fishing ~-2.86 ~0.0 ~0.0 ~-2.86 ~1000000000.0 ~0.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-2.8 ~0.0 ~0.56 ~-2.8 ~1000000000.0 ~0.56 0.00000000006 0 force @a[distance=..32] +particle fishing ~-2.64 ~0.0 ~1.09 ~-2.64 ~1000000000.0 ~1.09 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.38 ~0.0 ~1.59 ~-2.38 ~999999936.0 ~1.59 0.00000000010 0 force @a[distance=..32] +particle fishing ~-2.02 ~0.0 ~2.02 ~-2.02 ~1000000000.0 ~2.02 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.59 ~0.0 ~2.38 ~-1.59 ~1000000000.0 ~2.38 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.09 ~0.0 ~2.64 ~-1.09 ~1000000000.0 ~2.64 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.56 ~0.0 ~2.8 ~-0.56 ~1000000000.0 ~2.8 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~2.86 ~0.0 ~1000000000.0 ~2.86 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.56 ~0.0 ~2.8 ~0.56 ~1000000000.0 ~2.8 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.09 ~0.0 ~2.64 ~1.09 ~1000000000.0 ~2.64 0.00000000006 0 force @a[distance=..32] +particle fishing ~1.59 ~0.0 ~2.38 ~1.59 ~1000000000.0 ~2.38 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.02 ~0.0 ~2.02 ~2.02 ~1000000000.0 ~2.02 0.00000000016 0 force @a[distance=..32] +particle fishing ~2.38 ~0.0 ~1.59 ~2.38 ~999999936.0 ~1.59 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.64 ~0.0 ~1.09 ~2.64 ~999999936.0 ~1.09 0.00000000007 0 force @a[distance=..32] +particle fishing ~2.8 ~0.0 ~0.56 ~2.8 ~1000000000.0 ~0.56 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.86 ~0.0 ~-0.0 ~2.86 ~999999936.0 ~-0.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.8 ~0.0 ~-0.56 ~2.8 ~1000000000.0 ~-0.56 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.64 ~0.0 ~-1.09 ~2.64 ~1000000000.0 ~-1.09 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.38 ~0.0 ~-1.59 ~2.38 ~1000000000.0 ~-1.59 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.02 ~0.0 ~-2.02 ~2.02 ~1000000000.0 ~-2.02 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.59 ~0.0 ~-2.38 ~1.59 ~1000000000.0 ~-2.38 0.00000000018 0 force @a[distance=..32] +particle fishing ~1.09 ~0.0 ~-2.64 ~1.09 ~999999936.0 ~-2.64 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.56 ~0.0 ~-2.8 ~0.56 ~1000000000.0 ~-2.8 0.00000000011 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_007.mcfunction new file mode 100644 index 000000000..a495a8f80 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_007.mcfunction @@ -0,0 +1,119 @@ +# frame 7 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.362 0 +# 2_circle +particle fishing ~-2.46 ~0.06000000000000005 ~4.65 ~991217344.0 ~0.0 ~132242880.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.5 ~-0.1100000000000001 ~5.24 ~966372672.0 ~0.0 ~-257145792.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~1.55 ~-0.10000000000000009 ~5.03 ~794406400.0 ~0.0 ~-607386560.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~3.36 ~0.039999999999999813 ~4.06 ~501499008.0 ~0.0 ~-865158208.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~4.65 ~0.08000000000000007 ~2.46 ~132242880.0 ~0.0 ~-991217344.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~5.24 ~0.1399999999999999 ~0.5 ~-257145792.0 ~0.0 ~-966372672.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~5.03 ~0.15999999999999992 ~-1.55 ~-607386560.0 ~0.0 ~-794406400.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~4.06 ~-0.050000000000000044 ~-3.36 ~-865158336.0 ~0.0 ~-501498752.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~2.46 ~0.07000000000000006 ~-4.65 ~-991217344.0 ~0.0 ~-132242880.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~0.5 ~-0.010000000000000009 ~-5.24 ~-966372672.0 ~0.0 ~257145792.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-1.55 ~0.010000000000000009 ~-5.03 ~-794406144.0 ~0.0 ~607386816.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-3.36 ~0.020000000000000018 ~-4.06 ~-501498592.0 ~0.0 ~865158528.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-4.65 ~-0.050000000000000044 ~-2.46 ~-132242880.0 ~0.0 ~991217344.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-5.24 ~0.030000000000000027 ~-0.5 ~257146272.0 ~0.0 ~966372480.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-5.03 ~0.07000000000000006 ~1.55 ~607387008.0 ~0.0 ~794406144.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-4.06 ~-0.030000000000000027 ~3.36 ~865158336.0 ~0.0 ~501498880.0 0.00000000028 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-5.06 ~-0.0 ~1000000000.0 ~-5.06 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.99 ~0.0 ~-4.96 ~-0.99 ~1000000000.0 ~-4.96 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.94 ~0.0 ~-4.67 ~-1.94 ~1000000000.0 ~-4.67 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.81 ~0.0 ~-4.21 ~-2.81 ~1000000000.0 ~-4.21 0.00000000005 0 force @a[distance=..32] +particle fishing ~-3.58 ~0.0 ~-3.58 ~-3.58 ~1000000000.0 ~-3.58 0.00000000002 0 force @a[distance=..32] +particle fishing ~-4.21 ~0.0 ~-2.81 ~-4.21 ~1000000000.0 ~-2.81 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.67 ~0.0 ~-1.94 ~-4.67 ~1000000000.0 ~-1.94 0.00000000005 0 force @a[distance=..32] +particle fishing ~-4.96 ~0.0 ~-0.99 ~-4.96 ~1000000000.0 ~-0.99 0.00000000003 0 force @a[distance=..32] +particle fishing ~-5.06 ~0.0 ~0.0 ~-5.06 ~1000000000.0 ~0.0 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.96 ~0.0 ~0.99 ~-4.96 ~1000000000.0 ~0.99 0.00000000004 0 force @a[distance=..32] +particle fishing ~-4.67 ~0.0 ~1.94 ~-4.67 ~1000000000.0 ~1.94 0.00000000007 0 force @a[distance=..32] +particle fishing ~-4.21 ~0.0 ~2.81 ~-4.21 ~1000000000.0 ~2.81 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.58 ~0.0 ~3.58 ~-3.58 ~1000000000.0 ~3.58 0.00000000006 0 force @a[distance=..32] +particle fishing ~-2.81 ~0.0 ~4.21 ~-2.81 ~999999936.0 ~4.21 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.94 ~0.0 ~4.67 ~-1.94 ~1000000000.0 ~4.67 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.99 ~0.0 ~4.96 ~-0.99 ~999999936.0 ~4.96 0.00000000008 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~5.06 ~0.0 ~1000000000.0 ~5.06 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.99 ~0.0 ~4.96 ~0.99 ~1000000000.0 ~4.96 0.00000000006 0 force @a[distance=..32] +particle fishing ~1.94 ~0.0 ~4.67 ~1.94 ~1000000000.0 ~4.67 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.81 ~0.0 ~4.21 ~2.81 ~1000000000.0 ~4.21 0.00000000005 0 force @a[distance=..32] +particle fishing ~3.58 ~0.0 ~3.58 ~3.58 ~1000000000.0 ~3.58 0.00000000005 0 force @a[distance=..32] +particle fishing ~4.21 ~0.0 ~2.81 ~4.21 ~1000000000.0 ~2.81 0.00000000003 0 force @a[distance=..32] +particle fishing ~4.67 ~0.0 ~1.94 ~4.67 ~1000000000.0 ~1.94 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.96 ~0.0 ~0.99 ~4.96 ~1000000000.0 ~0.99 0.00000000004 0 force @a[distance=..32] +particle fishing ~5.06 ~0.0 ~-0.0 ~5.06 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.96 ~0.0 ~-0.99 ~4.96 ~1000000000.0 ~-0.99 0.00000000001 0 force @a[distance=..32] +particle fishing ~4.67 ~0.0 ~-1.94 ~4.67 ~1000000000.0 ~-1.94 0.00000000005 0 force @a[distance=..32] +particle fishing ~4.21 ~0.0 ~-2.81 ~4.21 ~1000000000.0 ~-2.81 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.58 ~0.0 ~-3.58 ~3.58 ~1000000000.0 ~-3.58 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.81 ~0.0 ~-4.21 ~2.81 ~1000000000.0 ~-4.21 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.94 ~0.0 ~-4.67 ~1.94 ~1000000000.0 ~-4.67 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.99 ~0.0 ~-4.96 ~0.99 ~1000000000.0 ~-4.96 0.00000000005 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-3.86 ~-0.0 ~1000000000.0 ~-3.86 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.75 ~0.0 ~-3.79 ~-0.75 ~1000000000.0 ~-3.79 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.48 ~0.0 ~-3.57 ~-1.48 ~1000000000.0 ~-3.57 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.15 ~0.0 ~-3.21 ~-2.15 ~1000000000.0 ~-3.21 0.00000000012 0 force @a[distance=..32] +particle fishing ~-2.73 ~0.0 ~-2.73 ~-2.73 ~1000000000.0 ~-2.73 0.00000000005 0 force @a[distance=..32] +particle fishing ~-3.21 ~0.0 ~-2.15 ~-3.21 ~1000000000.0 ~-2.15 0.00000000014 0 force @a[distance=..32] +particle fishing ~-3.57 ~0.0 ~-1.48 ~-3.57 ~1000000000.0 ~-1.48 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.79 ~0.0 ~-0.75 ~-3.79 ~1000000000.0 ~-0.75 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.86 ~0.0 ~0.0 ~-3.86 ~1000000000.0 ~0.0 0.00000000007 0 force @a[distance=..32] +particle fishing ~-3.79 ~0.0 ~0.75 ~-3.79 ~999999936.0 ~0.75 0.00000000009 0 force @a[distance=..32] +particle fishing ~-3.57 ~0.0 ~1.48 ~-3.57 ~1000000000.0 ~1.48 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.21 ~0.0 ~2.15 ~-3.21 ~1000000000.0 ~2.15 0.00000000006 0 force @a[distance=..32] +particle fishing ~-2.73 ~0.0 ~2.73 ~-2.73 ~1000000000.0 ~2.73 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.15 ~0.0 ~3.21 ~-2.15 ~1000000000.0 ~3.21 0.00000000012 0 force @a[distance=..32] +particle fishing ~-1.48 ~0.0 ~3.57 ~-1.48 ~1000000000.0 ~3.57 0.00000000011 0 force @a[distance=..32] +particle fishing ~-0.75 ~0.0 ~3.79 ~-0.75 ~1000000000.0 ~3.79 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.86 ~0.0 ~1000000000.0 ~3.86 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.75 ~0.0 ~3.79 ~0.75 ~1000000000.0 ~3.79 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.48 ~0.0 ~3.57 ~1.48 ~1000000000.0 ~3.57 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.15 ~0.0 ~3.21 ~2.15 ~999999936.0 ~3.21 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.73 ~0.0 ~2.73 ~2.73 ~1000000000.0 ~2.73 0.00000000013 0 force @a[distance=..32] +particle fishing ~3.21 ~0.0 ~2.15 ~3.21 ~1000000000.0 ~2.15 0.00000000011 0 force @a[distance=..32] +particle fishing ~3.57 ~0.0 ~1.48 ~3.57 ~1000000000.0 ~1.48 0.00000000006 0 force @a[distance=..32] +particle fishing ~3.79 ~0.0 ~0.75 ~3.79 ~1000000000.0 ~0.75 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.86 ~0.0 ~-0.0 ~3.86 ~1000000000.0 ~-0.0 0.00000000006 0 force @a[distance=..32] +particle fishing ~3.79 ~0.0 ~-0.75 ~3.79 ~1000000000.0 ~-0.75 0.00000000006 0 force @a[distance=..32] +particle fishing ~3.57 ~0.0 ~-1.48 ~3.57 ~999999936.0 ~-1.48 0.00000000004 0 force @a[distance=..32] +particle fishing ~3.21 ~0.0 ~-2.15 ~3.21 ~1000000000.0 ~-2.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.73 ~0.0 ~-2.73 ~2.73 ~1000000000.0 ~-2.73 0.00000000005 0 force @a[distance=..32] +particle fishing ~2.15 ~0.0 ~-3.21 ~2.15 ~999999936.0 ~-3.21 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.48 ~0.0 ~-3.57 ~1.48 ~1000000000.0 ~-3.57 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.75 ~0.0 ~-3.79 ~0.75 ~1000000000.0 ~-3.79 0.00000000001 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-2.39 ~-0.0 ~1000000000.0 ~-2.39 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.47 ~0.0 ~-2.34 ~-0.47 ~1000000000.0 ~-2.34 0.00000000014 0 force @a[distance=..32] +particle fishing ~-0.91 ~0.0 ~-2.21 ~-0.91 ~999999936.0 ~-2.21 0.00000000017 0 force @a[distance=..32] +particle fishing ~-1.33 ~0.0 ~-1.98 ~-1.33 ~1000000000.0 ~-1.98 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.69 ~0.0 ~-1.69 ~-1.69 ~999999936.0 ~-1.69 0.00000000004 0 force @a[distance=..32] +particle fishing ~-1.98 ~0.0 ~-1.33 ~-1.98 ~1000000000.0 ~-1.33 0.00000000005 0 force @a[distance=..32] +particle fishing ~-2.21 ~0.0 ~-0.91 ~-2.21 ~1000000000.0 ~-0.91 0.00000000005 0 force @a[distance=..32] +particle fishing ~-2.34 ~0.0 ~-0.47 ~-2.34 ~1000000000.0 ~-0.47 0.00000000009 0 force @a[distance=..32] +particle fishing ~-2.39 ~0.0 ~0.0 ~-2.39 ~1000000000.0 ~0.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-2.34 ~0.0 ~0.47 ~-2.34 ~1000000000.0 ~0.47 0.00000000022 0 force @a[distance=..32] +particle fishing ~-2.21 ~0.0 ~0.91 ~-2.21 ~1000000000.0 ~0.91 0.00000000014 0 force @a[distance=..32] +particle fishing ~-1.98 ~0.0 ~1.33 ~-1.98 ~1000000000.0 ~1.33 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.69 ~0.0 ~1.69 ~-1.69 ~1000000000.0 ~1.69 0.00000000007 0 force @a[distance=..32] +particle fishing ~-1.33 ~0.0 ~1.98 ~-1.33 ~1000000000.0 ~1.98 0.00000000002 0 force @a[distance=..32] +particle fishing ~-0.91 ~0.0 ~2.21 ~-0.91 ~1000000000.0 ~2.21 0.00000000014 0 force @a[distance=..32] +particle fishing ~-0.47 ~0.0 ~2.34 ~-0.47 ~1000000000.0 ~2.34 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~2.39 ~0.0 ~1000000000.0 ~2.39 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.47 ~0.0 ~2.34 ~0.47 ~999999936.0 ~2.34 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.91 ~0.0 ~2.21 ~0.91 ~1000000000.0 ~2.21 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.33 ~0.0 ~1.98 ~1.33 ~1000000000.0 ~1.98 0.00000000007 0 force @a[distance=..32] +particle fishing ~1.69 ~0.0 ~1.69 ~1.69 ~1000000000.0 ~1.69 0.00000000014 0 force @a[distance=..32] +particle fishing ~1.98 ~0.0 ~1.33 ~1.98 ~1000000000.0 ~1.33 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.21 ~0.0 ~0.91 ~2.21 ~1000000000.0 ~0.91 0.00000000007 0 force @a[distance=..32] +particle fishing ~2.34 ~0.0 ~0.47 ~2.34 ~1000000000.0 ~0.47 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.39 ~0.0 ~-0.0 ~2.39 ~1000000000.0 ~-0.0 0.00000000011 0 force @a[distance=..32] +particle fishing ~2.34 ~0.0 ~-0.47 ~2.34 ~1000000000.0 ~-0.47 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.21 ~0.0 ~-0.91 ~2.21 ~1000000000.0 ~-0.91 0.00000000019 0 force @a[distance=..32] +particle fishing ~1.98 ~0.0 ~-1.33 ~1.98 ~1000000000.0 ~-1.33 0.00000000022 0 force @a[distance=..32] +particle fishing ~1.69 ~0.0 ~-1.69 ~1.69 ~1000000000.0 ~-1.69 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.33 ~0.0 ~-1.98 ~1.33 ~1000000000.0 ~-1.98 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.91 ~0.0 ~-2.21 ~0.91 ~1000000000.0 ~-2.21 0.00000000017 0 force @a[distance=..32] +particle fishing ~0.47 ~0.0 ~-2.34 ~0.47 ~1000000000.0 ~-2.34 0.00000000001 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_008.mcfunction new file mode 100644 index 000000000..38e79f7d5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_008.mcfunction @@ -0,0 +1,119 @@ +# frame 8 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.295 0 +# 2_circle +particle fishing ~-2.55 ~-0.10000000000000009 ~4.19 ~977935616.0 ~0.0 ~208906368.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.75 ~0.020000000000000018 ~4.85 ~983439680.0 ~0.0 ~-181235440.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~1.16 ~-0.050000000000000044 ~4.77 ~839224000.0 ~0.0 ~-543785856.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~2.9 ~0.030000000000000027 ~3.96 ~567244032.0 ~0.0 ~-823549760.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~4.19 ~-0.06999999999999984 ~2.55 ~208906368.0 ~0.0 ~-977935616.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~4.85 ~-0.1299999999999999 ~0.75 ~-181235440.0 ~0.0 ~-983439680.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~4.77 ~0.11999999999999988 ~-1.16 ~-543785856.0 ~0.0 ~-839224000.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~3.96 ~-0.10999999999999988 ~-2.9 ~-823549888.0 ~0.0 ~-567243904.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~2.55 ~0.040000000000000036 ~-4.19 ~-977935616.0 ~0.0 ~-208906368.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~0.75 ~0.010000000000000009 ~-4.85 ~-983439680.0 ~0.0 ~181235456.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-1.16 ~0.1499999999999999 ~-4.77 ~-839223872.0 ~0.0 ~543785984.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-2.9 ~0.09999999999999987 ~-3.96 ~-567243904.0 ~0.0 ~823549888.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-4.19 ~0.020000000000000018 ~-2.55 ~-208906368.0 ~0.0 ~977935616.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-4.85 ~0.08000000000000007 ~-0.75 ~181235632.0 ~0.0 ~983439680.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-4.77 ~0.10999999999999988 ~1.16 ~543786048.0 ~0.0 ~839223872.0 0.00000000028 0 force @a[distance=..32] +particle fishing ~-3.96 ~0.1299999999999999 ~2.9 ~823549760.0 ~0.0 ~567243904.0 0.00000000028 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-4.67 ~-0.0 ~1000000000.0 ~-4.67 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.91 ~0.0 ~-4.58 ~-0.91 ~1000000000.0 ~-4.58 0.00000000005 0 force @a[distance=..32] +particle fishing ~-1.79 ~0.0 ~-4.32 ~-1.79 ~1000000000.0 ~-4.32 0.00000000005 0 force @a[distance=..32] +particle fishing ~-2.59 ~0.0 ~-3.88 ~-2.59 ~1000000000.0 ~-3.88 0.00000000006 0 force @a[distance=..32] +particle fishing ~-3.3 ~0.0 ~-3.3 ~-3.3 ~1000000000.0 ~-3.3 0.00000000005 0 force @a[distance=..32] +particle fishing ~-3.88 ~0.0 ~-2.59 ~-3.88 ~999999936.0 ~-2.59 0.00000000008 0 force @a[distance=..32] +particle fishing ~-4.32 ~0.0 ~-1.79 ~-4.32 ~1000000000.0 ~-1.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~-4.58 ~0.0 ~-0.91 ~-4.58 ~1000000000.0 ~-0.91 0.00000000007 0 force @a[distance=..32] +particle fishing ~-4.67 ~0.0 ~0.0 ~-4.67 ~1000000000.0 ~0.0 0.00000000009 0 force @a[distance=..32] +particle fishing ~-4.58 ~0.0 ~0.91 ~-4.58 ~1000000000.0 ~0.91 0.00000000009 0 force @a[distance=..32] +particle fishing ~-4.32 ~0.0 ~1.79 ~-4.32 ~1000000000.0 ~1.79 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.88 ~0.0 ~2.59 ~-3.88 ~1000000000.0 ~2.59 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.3 ~0.0 ~3.3 ~-3.3 ~1000000000.0 ~3.3 0.00000000002 0 force @a[distance=..32] +particle fishing ~-2.59 ~0.0 ~3.88 ~-2.59 ~1000000000.0 ~3.88 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.79 ~0.0 ~4.32 ~-1.79 ~1000000000.0 ~4.32 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.91 ~0.0 ~4.58 ~-0.91 ~1000000000.0 ~4.58 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.67 ~0.0 ~1000000000.0 ~4.67 0.00000000009 0 force @a[distance=..32] +particle fishing ~0.91 ~0.0 ~4.58 ~0.91 ~1000000000.0 ~4.58 0.00000000002 0 force @a[distance=..32] +particle fishing ~1.79 ~0.0 ~4.32 ~1.79 ~1000000000.0 ~4.32 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.59 ~0.0 ~3.88 ~2.59 ~1000000000.0 ~3.88 0.00000000008 0 force @a[distance=..32] +particle fishing ~3.3 ~0.0 ~3.3 ~3.3 ~1000000000.0 ~3.3 0.00000000004 0 force @a[distance=..32] +particle fishing ~3.88 ~0.0 ~2.59 ~3.88 ~1000000000.0 ~2.59 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.32 ~0.0 ~1.79 ~4.32 ~1000000000.0 ~1.79 0.00000000009 0 force @a[distance=..32] +particle fishing ~4.58 ~0.0 ~0.91 ~4.58 ~1000000000.0 ~0.91 0.00000000007 0 force @a[distance=..32] +particle fishing ~4.67 ~0.0 ~-0.0 ~4.67 ~1000000000.0 ~-0.0 0.00000000006 0 force @a[distance=..32] +particle fishing ~4.58 ~0.0 ~-0.91 ~4.58 ~1000000000.0 ~-0.91 0.00000000005 0 force @a[distance=..32] +particle fishing ~4.32 ~0.0 ~-1.79 ~4.32 ~1000000000.0 ~-1.79 0.00000000005 0 force @a[distance=..32] +particle fishing ~3.88 ~0.0 ~-2.59 ~3.88 ~1000000000.0 ~-2.59 0.00000000009 0 force @a[distance=..32] +particle fishing ~3.3 ~0.0 ~-3.3 ~3.3 ~1000000000.0 ~-3.3 0.00000000005 0 force @a[distance=..32] +particle fishing ~2.59 ~0.0 ~-3.88 ~2.59 ~1000000000.0 ~-3.88 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.79 ~0.0 ~-4.32 ~1.79 ~1000000000.0 ~-4.32 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.91 ~0.0 ~-4.58 ~0.91 ~1000000000.0 ~-4.58 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-3.44 ~-0.0 ~1000000000.0 ~-3.44 0.00000000005 0 force @a[distance=..32] +particle fishing ~-0.67 ~0.0 ~-3.37 ~-0.67 ~1000000000.0 ~-3.37 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.31 ~0.0 ~-3.17 ~-1.31 ~1000000000.0 ~-3.17 0.00000000004 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~-2.86 ~-1.91 ~1000000000.0 ~-2.86 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.43 ~0.0 ~-2.43 ~-2.43 ~1000000000.0 ~-2.43 0.00000000007 0 force @a[distance=..32] +particle fishing ~-2.86 ~0.0 ~-1.91 ~-2.86 ~999999936.0 ~-1.91 0.00000000013 0 force @a[distance=..32] +particle fishing ~-3.17 ~0.0 ~-1.31 ~-3.17 ~1000000000.0 ~-1.31 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.37 ~0.0 ~-0.67 ~-3.37 ~1000000000.0 ~-0.67 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.44 ~0.0 ~0.0 ~-3.44 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.37 ~0.0 ~0.67 ~-3.37 ~1000000000.0 ~0.67 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.17 ~0.0 ~1.31 ~-3.17 ~1000000000.0 ~1.31 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.86 ~0.0 ~1.91 ~-2.86 ~1000000000.0 ~1.91 0.00000000003 0 force @a[distance=..32] +particle fishing ~-2.43 ~0.0 ~2.43 ~-2.43 ~1000000000.0 ~2.43 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~2.86 ~-1.91 ~1000000000.0 ~2.86 0.00000000007 0 force @a[distance=..32] +particle fishing ~-1.31 ~0.0 ~3.17 ~-1.31 ~1000000000.0 ~3.17 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.67 ~0.0 ~3.37 ~-0.67 ~1000000000.0 ~3.37 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.44 ~0.0 ~1000000000.0 ~3.44 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.67 ~0.0 ~3.37 ~0.67 ~1000000000.0 ~3.37 0.00000000009 0 force @a[distance=..32] +particle fishing ~1.31 ~0.0 ~3.17 ~1.31 ~1000000000.0 ~3.17 0.00000000006 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~2.86 ~1.91 ~1000000000.0 ~2.86 0.00000000008 0 force @a[distance=..32] +particle fishing ~2.43 ~0.0 ~2.43 ~2.43 ~999999936.0 ~2.43 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.86 ~0.0 ~1.91 ~2.86 ~999999936.0 ~1.91 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.17 ~0.0 ~1.31 ~3.17 ~1000000000.0 ~1.31 0.00000000012 0 force @a[distance=..32] +particle fishing ~3.37 ~0.0 ~0.67 ~3.37 ~1000000000.0 ~0.67 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.44 ~0.0 ~-0.0 ~3.44 ~1000000000.0 ~-0.0 0.00000000015 0 force @a[distance=..32] +particle fishing ~3.37 ~0.0 ~-0.67 ~3.37 ~1000000000.0 ~-0.67 0.00000000009 0 force @a[distance=..32] +particle fishing ~3.17 ~0.0 ~-1.31 ~3.17 ~1000000000.0 ~-1.31 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.86 ~0.0 ~-1.91 ~2.86 ~1000000000.0 ~-1.91 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.43 ~0.0 ~-2.43 ~2.43 ~999999936.0 ~-2.43 0.00000000016 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~-2.86 ~1.91 ~1000000000.0 ~-2.86 0.00000000007 0 force @a[distance=..32] +particle fishing ~1.31 ~0.0 ~-3.17 ~1.31 ~1000000000.0 ~-3.17 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.67 ~0.0 ~-3.37 ~0.67 ~1000000000.0 ~-3.37 0.00000000001 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-1.91 ~-0.0 ~1000000000.0 ~-1.91 0.00000000019 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.0 ~-1.87 ~-0.37 ~1000000000.0 ~-1.87 0.00000000034 0 force @a[distance=..32] +particle fishing ~-0.73 ~0.0 ~-1.76 ~-0.73 ~1000000000.0 ~-1.76 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.06 ~0.0 ~-1.59 ~-1.06 ~1000000000.0 ~-1.59 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.35 ~0.0 ~-1.35 ~-1.35 ~1000000000.0 ~-1.35 0.00000000023 0 force @a[distance=..32] +particle fishing ~-1.59 ~0.0 ~-1.06 ~-1.59 ~1000000000.0 ~-1.06 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.76 ~0.0 ~-0.73 ~-1.76 ~1000000000.0 ~-0.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.87 ~0.0 ~-0.37 ~-1.87 ~999999936.0 ~-0.37 0.00000000031 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~0.0 ~-1.91 ~1000000000.0 ~0.0 0.00000000014 0 force @a[distance=..32] +particle fishing ~-1.87 ~0.0 ~0.37 ~-1.87 ~999999936.0 ~0.37 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.76 ~0.0 ~0.73 ~-1.76 ~1000000000.0 ~0.73 0.00000000015 0 force @a[distance=..32] +particle fishing ~-1.59 ~0.0 ~1.06 ~-1.59 ~1000000000.0 ~1.06 0.00000000014 0 force @a[distance=..32] +particle fishing ~-1.35 ~0.0 ~1.35 ~-1.35 ~1000000000.0 ~1.35 0.00000000014 0 force @a[distance=..32] +particle fishing ~-1.06 ~0.0 ~1.59 ~-1.06 ~1000000000.0 ~1.59 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.73 ~0.0 ~1.76 ~-0.73 ~1000000000.0 ~1.76 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.0 ~1.87 ~-0.37 ~1000000000.0 ~1.87 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.91 ~0.0 ~1000000000.0 ~1.91 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.37 ~0.0 ~1.87 ~0.37 ~1000000000.0 ~1.87 0.00000000021 0 force @a[distance=..32] +particle fishing ~0.73 ~0.0 ~1.76 ~0.73 ~1000000000.0 ~1.76 0.00000000033 0 force @a[distance=..32] +particle fishing ~1.06 ~0.0 ~1.59 ~1.06 ~1000000000.0 ~1.59 0.00000000011 0 force @a[distance=..32] +particle fishing ~1.35 ~0.0 ~1.35 ~1.35 ~1000000000.0 ~1.35 0.00000000005 0 force @a[distance=..32] +particle fishing ~1.59 ~0.0 ~1.06 ~1.59 ~1000000000.0 ~1.06 0.00000000022 0 force @a[distance=..32] +particle fishing ~1.76 ~0.0 ~0.73 ~1.76 ~1000000000.0 ~0.73 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.87 ~0.0 ~0.37 ~1.87 ~1000000000.0 ~0.37 0.00000000024 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~-0.0 ~1.91 ~1000000000.0 ~-0.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~1.87 ~0.0 ~-0.37 ~1.87 ~1000000000.0 ~-0.37 0.00000000014 0 force @a[distance=..32] +particle fishing ~1.76 ~0.0 ~-0.73 ~1.76 ~1000000000.0 ~-0.73 0.00000000016 0 force @a[distance=..32] +particle fishing ~1.59 ~0.0 ~-1.06 ~1.59 ~1000000000.0 ~-1.06 0.00000000036 0 force @a[distance=..32] +particle fishing ~1.35 ~0.0 ~-1.35 ~1.35 ~1000000000.0 ~-1.35 0.00000000016 0 force @a[distance=..32] +particle fishing ~1.06 ~0.0 ~-1.59 ~1.06 ~1000000000.0 ~-1.59 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.73 ~0.0 ~-1.76 ~0.73 ~999999936.0 ~-1.76 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.37 ~0.0 ~-1.87 ~0.37 ~1000000000.0 ~-1.87 0.00000000001 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_009.mcfunction new file mode 100644 index 000000000..7db1499ec --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_009.mcfunction @@ -0,0 +1,119 @@ +# frame 9 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.229 0 +# 2_circle +particle fishing ~-2.62 ~0.15999999999999992 ~3.77 ~965350592.0 ~0.0 ~260956640.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.98 ~-0.1299999999999999 ~4.49 ~991731392.0 ~0.0 ~-128331208.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.81 ~0.029999999999999805 ~4.52 ~867130176.0 ~0.0 ~-498081728.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~2.48 ~-0.020000000000000018 ~3.87 ~610516160.0 ~0.0 ~-792003840.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~3.77 ~-0.030000000000000027 ~2.62 ~260956640.0 ~0.0 ~-965350528.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~4.49 ~0.06999999999999984 ~0.98 ~-128331384.0 ~0.0 ~-991731392.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~4.52 ~-0.07000000000000006 ~-0.81 ~-498081728.0 ~0.0 ~-867130176.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~3.87 ~0.11999999999999988 ~-2.48 ~-792003968.0 ~0.0 ~-610516032.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~2.62 ~-0.06999999999999984 ~-3.77 ~-965350592.0 ~0.0 ~-260956560.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.98 ~-0.030000000000000027 ~-4.49 ~-991731392.0 ~0.0 ~128331208.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.81 ~0.020000000000000018 ~-4.52 ~-867129984.0 ~0.0 ~498081888.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-2.48 ~0.020000000000000018 ~-3.87 ~-610516032.0 ~0.0 ~792003968.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-3.77 ~-0.06000000000000005 ~-2.62 ~-260956640.0 ~0.0 ~965350592.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-4.49 ~-0.020000000000000018 ~-0.98 ~128331560.0 ~0.0 ~991731392.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-4.52 ~0.04999999999999982 ~0.81 ~498082016.0 ~0.0 ~867129984.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-3.87 ~0.039999999999999813 ~2.48 ~792003840.0 ~0.0 ~610516288.0 0.00000000027 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-4.28 ~-0.0 ~1000000000.0 ~-4.28 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.83 ~0.0 ~-4.2 ~-0.83 ~1000000000.0 ~-4.2 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.64 ~0.0 ~-3.95 ~-1.64 ~1000000000.0 ~-3.95 0.00000000010 0 force @a[distance=..32] +particle fishing ~-2.38 ~0.0 ~-3.56 ~-2.38 ~1000000000.0 ~-3.56 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.03 ~0.0 ~-3.03 ~-3.03 ~1000000000.0 ~-3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.56 ~0.0 ~-2.38 ~-3.56 ~1000000000.0 ~-2.38 0.00000000013 0 force @a[distance=..32] +particle fishing ~-3.95 ~0.0 ~-1.64 ~-3.95 ~1000000000.0 ~-1.64 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.2 ~0.0 ~-0.83 ~-4.2 ~1000000000.0 ~-0.83 0.00000000007 0 force @a[distance=..32] +particle fishing ~-4.28 ~0.0 ~0.0 ~-4.28 ~1000000000.0 ~0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~-4.2 ~0.0 ~0.83 ~-4.2 ~1000000000.0 ~0.83 0.00000000013 0 force @a[distance=..32] +particle fishing ~-3.95 ~0.0 ~1.64 ~-3.95 ~1000000000.0 ~1.64 0.00000000009 0 force @a[distance=..32] +particle fishing ~-3.56 ~0.0 ~2.38 ~-3.56 ~1000000000.0 ~2.38 0.00000000003 0 force @a[distance=..32] +particle fishing ~-3.03 ~0.0 ~3.03 ~-3.03 ~1000000000.0 ~3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.38 ~0.0 ~3.56 ~-2.38 ~1000000000.0 ~3.56 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.64 ~0.0 ~3.95 ~-1.64 ~1000000000.0 ~3.95 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.83 ~0.0 ~4.2 ~-0.83 ~1000000000.0 ~4.2 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~4.28 ~0.0 ~1000000000.0 ~4.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.83 ~0.0 ~4.2 ~0.83 ~1000000000.0 ~4.2 0.00000000006 0 force @a[distance=..32] +particle fishing ~1.64 ~0.0 ~3.95 ~1.64 ~1000000000.0 ~3.95 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.38 ~0.0 ~3.56 ~2.38 ~1000000000.0 ~3.56 0.00000000013 0 force @a[distance=..32] +particle fishing ~3.03 ~0.0 ~3.03 ~3.03 ~1000000000.0 ~3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.56 ~0.0 ~2.38 ~3.56 ~1000000000.0 ~2.38 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.95 ~0.0 ~1.64 ~3.95 ~1000000000.0 ~1.64 0.00000000004 0 force @a[distance=..32] +particle fishing ~4.2 ~0.0 ~0.83 ~4.2 ~1000000000.0 ~0.83 0.00000000006 0 force @a[distance=..32] +particle fishing ~4.28 ~0.0 ~-0.0 ~4.28 ~1000000000.0 ~-0.0 0.00000000006 0 force @a[distance=..32] +particle fishing ~4.2 ~0.0 ~-0.83 ~4.2 ~1000000000.0 ~-0.83 0.00000000012 0 force @a[distance=..32] +particle fishing ~3.95 ~0.0 ~-1.64 ~3.95 ~1000000000.0 ~-1.64 0.00000000009 0 force @a[distance=..32] +particle fishing ~3.56 ~0.0 ~-2.38 ~3.56 ~1000000000.0 ~-2.38 0.00000000003 0 force @a[distance=..32] +particle fishing ~3.03 ~0.0 ~-3.03 ~3.03 ~1000000000.0 ~-3.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.38 ~0.0 ~-3.56 ~2.38 ~1000000000.0 ~-3.56 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.64 ~0.0 ~-3.95 ~1.64 ~1000000000.0 ~-3.95 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.83 ~0.0 ~-4.2 ~0.83 ~1000000000.0 ~-4.2 0.00000000002 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-3.0 ~-0.0 ~1000000000.0 ~-3.0 0.00000000005 0 force @a[distance=..32] +particle fishing ~-0.59 ~0.0 ~-2.94 ~-0.59 ~999999936.0 ~-2.94 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.15 ~0.0 ~-2.77 ~-1.15 ~1000000000.0 ~-2.77 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.67 ~0.0 ~-2.5 ~-1.67 ~999999936.0 ~-2.5 0.00000000009 0 force @a[distance=..32] +particle fishing ~-2.12 ~0.0 ~-2.12 ~-2.12 ~1000000000.0 ~-2.12 0.00000000008 0 force @a[distance=..32] +particle fishing ~-2.5 ~0.0 ~-1.67 ~-2.5 ~1000000000.0 ~-1.67 0.00000000022 0 force @a[distance=..32] +particle fishing ~-2.77 ~0.0 ~-1.15 ~-2.77 ~1000000000.0 ~-1.15 0.00000000020 0 force @a[distance=..32] +particle fishing ~-2.94 ~0.0 ~-0.59 ~-2.94 ~1000000000.0 ~-0.59 0.00000000004 0 force @a[distance=..32] +particle fishing ~-3.0 ~0.0 ~0.0 ~-3.0 ~1000000000.0 ~0.0 0.00000000009 0 force @a[distance=..32] +particle fishing ~-2.94 ~0.0 ~0.59 ~-2.94 ~1000000000.0 ~0.59 0.00000000019 0 force @a[distance=..32] +particle fishing ~-2.77 ~0.0 ~1.15 ~-2.77 ~1000000000.0 ~1.15 0.00000000022 0 force @a[distance=..32] +particle fishing ~-2.5 ~0.0 ~1.67 ~-2.5 ~1000000000.0 ~1.67 0.00000000007 0 force @a[distance=..32] +particle fishing ~-2.12 ~0.0 ~2.12 ~-2.12 ~1000000000.0 ~2.12 0.00000000022 0 force @a[distance=..32] +particle fishing ~-1.67 ~0.0 ~2.5 ~-1.67 ~1000000000.0 ~2.5 0.00000000005 0 force @a[distance=..32] +particle fishing ~-1.15 ~0.0 ~2.77 ~-1.15 ~1000000000.0 ~2.77 0.00000000010 0 force @a[distance=..32] +particle fishing ~-0.59 ~0.0 ~2.94 ~-0.59 ~1000000000.0 ~2.94 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.0 ~0.0 ~999999936.0 ~3.0 0.00000000008 0 force @a[distance=..32] +particle fishing ~0.59 ~0.0 ~2.94 ~0.59 ~1000000000.0 ~2.94 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.15 ~0.0 ~2.77 ~1.15 ~1000000000.0 ~2.77 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.67 ~0.0 ~2.5 ~1.67 ~1000000000.0 ~2.5 0.00000000010 0 force @a[distance=..32] +particle fishing ~2.12 ~0.0 ~2.12 ~2.12 ~1000000000.0 ~2.12 0.00000000016 0 force @a[distance=..32] +particle fishing ~2.5 ~0.0 ~1.67 ~2.5 ~1000000000.0 ~1.67 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.77 ~0.0 ~1.15 ~2.77 ~1000000000.0 ~1.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.94 ~0.0 ~0.59 ~2.94 ~1000000000.0 ~0.59 0.00000000016 0 force @a[distance=..32] +particle fishing ~3.0 ~0.0 ~-0.0 ~3.0 ~1000000000.0 ~-0.0 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.94 ~0.0 ~-0.59 ~2.94 ~1000000000.0 ~-0.59 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.77 ~0.0 ~-1.15 ~2.77 ~1000000000.0 ~-1.15 0.00000000014 0 force @a[distance=..32] +particle fishing ~2.5 ~0.0 ~-1.67 ~2.5 ~1000000000.0 ~-1.67 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.12 ~0.0 ~-2.12 ~2.12 ~1000000000.0 ~-2.12 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.67 ~0.0 ~-2.5 ~1.67 ~1000000000.0 ~-2.5 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.15 ~0.0 ~-2.77 ~1.15 ~1000000000.0 ~-2.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.59 ~0.0 ~-2.94 ~0.59 ~1000000000.0 ~-2.94 0.00000000022 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-1.43 ~-0.0 ~1000000000.0 ~-1.43 0.00000000003 0 force @a[distance=..32] +particle fishing ~-0.28 ~0.0 ~-1.4 ~-0.28 ~1000000000.0 ~-1.4 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.55 ~0.0 ~-1.32 ~-0.55 ~1000000000.0 ~-1.32 0.00000000003 0 force @a[distance=..32] +particle fishing ~-0.79 ~0.0 ~-1.19 ~-0.79 ~1000000000.0 ~-1.19 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.01 ~0.0 ~-1.01 ~-1.01 ~1000000000.0 ~-1.01 0.00000000017 0 force @a[distance=..32] +particle fishing ~-1.19 ~0.0 ~-0.79 ~-1.19 ~1000000000.0 ~-0.79 0.00000000027 0 force @a[distance=..32] +particle fishing ~-1.32 ~0.0 ~-0.55 ~-1.32 ~1000000000.0 ~-0.55 0.00000000005 0 force @a[distance=..32] +particle fishing ~-1.4 ~0.0 ~-0.28 ~-1.4 ~1000000000.0 ~-0.28 0.00000000012 0 force @a[distance=..32] +particle fishing ~-1.43 ~0.0 ~0.0 ~-1.43 ~1000000000.0 ~0.0 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.4 ~0.0 ~0.28 ~-1.4 ~1000000000.0 ~0.28 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.32 ~0.0 ~0.55 ~-1.32 ~1000000000.0 ~0.55 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.19 ~0.0 ~0.79 ~-1.19 ~1000000000.0 ~0.79 0.00000000019 0 force @a[distance=..32] +particle fishing ~-1.01 ~0.0 ~1.01 ~-1.01 ~1000000000.0 ~1.01 0.00000000032 0 force @a[distance=..32] +particle fishing ~-0.79 ~0.0 ~1.19 ~-0.79 ~1000000000.0 ~1.19 0.00000000042 0 force @a[distance=..32] +particle fishing ~-0.55 ~0.0 ~1.32 ~-0.55 ~1000000000.0 ~1.32 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.28 ~0.0 ~1.4 ~-0.28 ~1000000000.0 ~1.4 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.43 ~0.0 ~999999936.0 ~1.43 0.00000000017 0 force @a[distance=..32] +particle fishing ~0.28 ~0.0 ~1.4 ~0.28 ~999999936.0 ~1.4 0.00000000007 0 force @a[distance=..32] +particle fishing ~0.55 ~0.0 ~1.32 ~0.55 ~1000000000.0 ~1.32 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.79 ~0.0 ~1.19 ~0.79 ~1000000000.0 ~1.19 0.00000000024 0 force @a[distance=..32] +particle fishing ~1.01 ~0.0 ~1.01 ~1.01 ~1000000000.0 ~1.01 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.19 ~0.0 ~0.79 ~1.19 ~1000000000.0 ~0.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.32 ~0.0 ~0.55 ~1.32 ~1000000000.0 ~0.55 0.00000000032 0 force @a[distance=..32] +particle fishing ~1.4 ~0.0 ~0.28 ~1.4 ~1000000000.0 ~0.28 0.00000000027 0 force @a[distance=..32] +particle fishing ~1.43 ~0.0 ~-0.0 ~1.43 ~1000000000.0 ~-0.0 0.00000000009 0 force @a[distance=..32] +particle fishing ~1.4 ~0.0 ~-0.28 ~1.4 ~999999936.0 ~-0.28 0.00000000018 0 force @a[distance=..32] +particle fishing ~1.32 ~0.0 ~-0.55 ~1.32 ~999999936.0 ~-0.55 0.00000000036 0 force @a[distance=..32] +particle fishing ~1.19 ~0.0 ~-0.79 ~1.19 ~1000000000.0 ~-0.79 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.01 ~0.0 ~-1.01 ~1.01 ~999999936.0 ~-1.01 0.00000000031 0 force @a[distance=..32] +particle fishing ~0.79 ~0.0 ~-1.19 ~0.79 ~1000000000.0 ~-1.19 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.55 ~0.0 ~-1.32 ~0.55 ~1000000000.0 ~-1.32 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.28 ~0.0 ~-1.4 ~0.28 ~1000000000.0 ~-1.4 0.00000000003 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_010.mcfunction new file mode 100644 index 000000000..b79be9198 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_010.mcfunction @@ -0,0 +1,119 @@ +# frame 10 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.162 0 +# 2_circle +particle fishing ~-2.69 ~-0.040000000000000036 ~3.38 ~958118720.0 ~0.0 ~286371168.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-1.19 ~-0.07000000000000006 ~4.15 ~994775744.0 ~0.0 ~-102083576.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.49 ~-0.07000000000000006 ~4.29 ~879987200.0 ~0.0 ~-474997344.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~2.09 ~0.0 ~3.78 ~631228608.0 ~0.0 ~-775596864.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~3.38 ~-0.1399999999999999 ~2.69 ~286371168.0 ~0.0 ~-958118720.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~4.15 ~-0.07999999999999985 ~1.19 ~-102083760.0 ~0.0 ~-994775744.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~4.29 ~0.07999999999999985 ~-0.49 ~-474997344.0 ~0.0 ~-879987200.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~3.78 ~0.05999999999999983 ~-2.09 ~-775597056.0 ~0.0 ~-631228416.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~2.69 ~-0.15999999999999992 ~-3.38 ~-958118720.0 ~0.0 ~-286371040.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~1.19 ~0.06999999999999984 ~-4.15 ~-994775744.0 ~0.0 ~102083576.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.49 ~-0.040000000000000036 ~-4.29 ~-879987200.0 ~0.0 ~474997376.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-2.09 ~-0.17999999999999994 ~-3.78 ~-631228416.0 ~0.0 ~775597056.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-3.38 ~-0.15999999999999992 ~-2.69 ~-286371136.0 ~0.0 ~958118720.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-4.15 ~0.050000000000000044 ~-1.19 ~102083848.0 ~0.0 ~994775744.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-4.29 ~-0.030000000000000027 ~0.49 ~474997504.0 ~0.0 ~879987136.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-3.78 ~0.09000000000000008 ~2.09 ~775596800.0 ~0.0 ~631228672.0 0.00000000027 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-3.89 ~-0.0 ~1000000000.0 ~-3.89 0.00000000015 0 force @a[distance=..32] +particle fishing ~-0.76 ~0.0 ~-3.81 ~-0.76 ~1000000000.0 ~-3.81 0.00000000015 0 force @a[distance=..32] +particle fishing ~-1.49 ~0.0 ~-3.59 ~-1.49 ~1000000000.0 ~-3.59 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.16 ~0.0 ~-3.23 ~-2.16 ~1000000000.0 ~-3.23 0.00000000012 0 force @a[distance=..32] +particle fishing ~-2.75 ~0.0 ~-2.75 ~-2.75 ~1000000000.0 ~-2.75 0.00000000006 0 force @a[distance=..32] +particle fishing ~-3.23 ~0.0 ~-2.16 ~-3.23 ~1000000000.0 ~-2.16 0.00000000012 0 force @a[distance=..32] +particle fishing ~-3.59 ~0.0 ~-1.49 ~-3.59 ~1000000000.0 ~-1.49 0.00000000002 0 force @a[distance=..32] +particle fishing ~-3.81 ~0.0 ~-0.76 ~-3.81 ~1000000000.0 ~-0.76 0.00000000014 0 force @a[distance=..32] +particle fishing ~-3.89 ~0.0 ~0.0 ~-3.89 ~1000000000.0 ~0.0 0.00000000015 0 force @a[distance=..32] +particle fishing ~-3.81 ~0.0 ~0.76 ~-3.81 ~999999936.0 ~0.76 0.00000000009 0 force @a[distance=..32] +particle fishing ~-3.59 ~0.0 ~1.49 ~-3.59 ~1000000000.0 ~1.49 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.23 ~0.0 ~2.16 ~-3.23 ~1000000000.0 ~2.16 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.75 ~0.0 ~2.75 ~-2.75 ~1000000000.0 ~2.75 0.00000000009 0 force @a[distance=..32] +particle fishing ~-2.16 ~0.0 ~3.23 ~-2.16 ~1000000000.0 ~3.23 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.49 ~0.0 ~3.59 ~-1.49 ~1000000000.0 ~3.59 0.00000000008 0 force @a[distance=..32] +particle fishing ~-0.76 ~0.0 ~3.81 ~-0.76 ~1000000000.0 ~3.81 0.00000000008 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.89 ~0.0 ~1000000000.0 ~3.89 0.00000000007 0 force @a[distance=..32] +particle fishing ~0.76 ~0.0 ~3.81 ~0.76 ~1000000000.0 ~3.81 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.49 ~0.0 ~3.59 ~1.49 ~1000000000.0 ~3.59 0.00000000007 0 force @a[distance=..32] +particle fishing ~2.16 ~0.0 ~3.23 ~2.16 ~1000000000.0 ~3.23 0.00000000014 0 force @a[distance=..32] +particle fishing ~2.75 ~0.0 ~2.75 ~2.75 ~1000000000.0 ~2.75 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.23 ~0.0 ~2.16 ~3.23 ~1000000000.0 ~2.16 0.00000000015 0 force @a[distance=..32] +particle fishing ~3.59 ~0.0 ~1.49 ~3.59 ~1000000000.0 ~1.49 0.00000000013 0 force @a[distance=..32] +particle fishing ~3.81 ~0.0 ~0.76 ~3.81 ~1000000000.0 ~0.76 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.89 ~0.0 ~-0.0 ~3.89 ~1000000000.0 ~-0.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~3.81 ~0.0 ~-0.76 ~3.81 ~1000000000.0 ~-0.76 0.00000000007 0 force @a[distance=..32] +particle fishing ~3.59 ~0.0 ~-1.49 ~3.59 ~1000000000.0 ~-1.49 0.00000000002 0 force @a[distance=..32] +particle fishing ~3.23 ~0.0 ~-2.16 ~3.23 ~1000000000.0 ~-2.16 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.75 ~0.0 ~-2.75 ~2.75 ~1000000000.0 ~-2.75 0.00000000010 0 force @a[distance=..32] +particle fishing ~2.16 ~0.0 ~-3.23 ~2.16 ~1000000000.0 ~-3.23 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.49 ~0.0 ~-3.59 ~1.49 ~1000000000.0 ~-3.59 0.00000000009 0 force @a[distance=..32] +particle fishing ~0.76 ~0.0 ~-3.81 ~0.76 ~1000000000.0 ~-3.81 0.00000000006 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-2.57 ~-0.0 ~1000000000.0 ~-2.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.5 ~0.0 ~-2.52 ~-0.5 ~1000000000.0 ~-2.52 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.98 ~0.0 ~-2.37 ~-0.98 ~1000000000.0 ~-2.37 0.00000000019 0 force @a[distance=..32] +particle fishing ~-1.43 ~0.0 ~-2.13 ~-1.43 ~1000000000.0 ~-2.13 0.00000000021 0 force @a[distance=..32] +particle fishing ~-1.82 ~0.0 ~-1.82 ~-1.82 ~1000000000.0 ~-1.82 0.00000000011 0 force @a[distance=..32] +particle fishing ~-2.13 ~0.0 ~-1.43 ~-2.13 ~1000000000.0 ~-1.43 0.00000000016 0 force @a[distance=..32] +particle fishing ~-2.37 ~0.0 ~-0.98 ~-2.37 ~1000000000.0 ~-0.98 0.00000000024 0 force @a[distance=..32] +particle fishing ~-2.52 ~0.0 ~-0.5 ~-2.52 ~999999936.0 ~-0.5 0.00000000016 0 force @a[distance=..32] +particle fishing ~-2.57 ~0.0 ~0.0 ~-2.57 ~1000000000.0 ~0.0 0.00000000016 0 force @a[distance=..32] +particle fishing ~-2.52 ~0.0 ~0.5 ~-2.52 ~1000000000.0 ~0.5 0.00000000019 0 force @a[distance=..32] +particle fishing ~-2.37 ~0.0 ~0.98 ~-2.37 ~1000000000.0 ~0.98 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.13 ~0.0 ~1.43 ~-2.13 ~1000000000.0 ~1.43 0.00000000005 0 force @a[distance=..32] +particle fishing ~-1.82 ~0.0 ~1.82 ~-1.82 ~999999936.0 ~1.82 0.00000000025 0 force @a[distance=..32] +particle fishing ~-1.43 ~0.0 ~2.13 ~-1.43 ~1000000000.0 ~2.13 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.98 ~0.0 ~2.37 ~-0.98 ~999999936.0 ~2.37 0.00000000019 0 force @a[distance=..32] +particle fishing ~-0.5 ~0.0 ~2.52 ~-0.5 ~999999936.0 ~2.52 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~2.57 ~0.0 ~1000000000.0 ~2.57 0.00000000024 0 force @a[distance=..32] +particle fishing ~0.5 ~0.0 ~2.52 ~0.5 ~1000000000.0 ~2.52 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.98 ~0.0 ~2.37 ~0.98 ~999999936.0 ~2.37 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.43 ~0.0 ~2.13 ~1.43 ~1000000000.0 ~2.13 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.82 ~0.0 ~1.82 ~1.82 ~1000000000.0 ~1.82 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.13 ~0.0 ~1.43 ~2.13 ~999999936.0 ~1.43 0.00000000025 0 force @a[distance=..32] +particle fishing ~2.37 ~0.0 ~0.98 ~2.37 ~1000000000.0 ~0.98 0.00000000010 0 force @a[distance=..32] +particle fishing ~2.52 ~0.0 ~0.5 ~2.52 ~1000000000.0 ~0.5 0.00000000010 0 force @a[distance=..32] +particle fishing ~2.57 ~0.0 ~-0.0 ~2.57 ~1000000000.0 ~-0.0 0.00000000006 0 force @a[distance=..32] +particle fishing ~2.52 ~0.0 ~-0.5 ~2.52 ~1000000000.0 ~-0.5 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.37 ~0.0 ~-0.98 ~2.37 ~1000000000.0 ~-0.98 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.13 ~0.0 ~-1.43 ~2.13 ~1000000000.0 ~-1.43 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.82 ~0.0 ~-1.82 ~1.82 ~1000000000.0 ~-1.82 0.00000000008 0 force @a[distance=..32] +particle fishing ~1.43 ~0.0 ~-2.13 ~1.43 ~999999936.0 ~-2.13 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.98 ~0.0 ~-2.37 ~0.98 ~1000000000.0 ~-2.37 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.5 ~0.0 ~-2.52 ~0.5 ~999999936.0 ~-2.52 0.00000000025 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-0.94 ~-0.0 ~1000000000.0 ~-0.94 0.00000000010 0 force @a[distance=..32] +particle fishing ~-0.18 ~0.0 ~-0.92 ~-0.18 ~1000000000.0 ~-0.92 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.36 ~0.0 ~-0.87 ~-0.36 ~1000000000.0 ~-0.87 0.00000000046 0 force @a[distance=..32] +particle fishing ~-0.52 ~0.0 ~-0.78 ~-0.52 ~999999936.0 ~-0.78 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.66 ~0.0 ~-0.66 ~-0.66 ~1000000000.0 ~-0.66 0.00000000031 0 force @a[distance=..32] +particle fishing ~-0.78 ~0.0 ~-0.52 ~-0.78 ~1000000000.0 ~-0.52 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.87 ~0.0 ~-0.36 ~-0.87 ~1000000000.0 ~-0.36 0.00000000038 0 force @a[distance=..32] +particle fishing ~-0.92 ~0.0 ~-0.18 ~-0.92 ~1000000000.0 ~-0.18 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.94 ~0.0 ~0.0 ~-0.94 ~1000000000.0 ~0.0 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.92 ~0.0 ~0.18 ~-0.92 ~1000000000.0 ~0.18 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.87 ~0.0 ~0.36 ~-0.87 ~1000000000.0 ~0.36 0.00000000033 0 force @a[distance=..32] +particle fishing ~-0.78 ~0.0 ~0.52 ~-0.78 ~1000000000.0 ~0.52 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.66 ~0.0 ~0.66 ~-0.66 ~999999936.0 ~0.66 0.00000000007 0 force @a[distance=..32] +particle fishing ~-0.52 ~0.0 ~0.78 ~-0.52 ~1000000000.0 ~0.78 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.36 ~0.0 ~0.87 ~-0.36 ~1000000000.0 ~0.87 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.18 ~0.0 ~0.92 ~-0.18 ~1000000000.0 ~0.92 0.00000000019 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~0.94 ~0.0 ~1000000000.0 ~0.94 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.18 ~0.0 ~0.92 ~0.18 ~1000000000.0 ~0.92 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.36 ~0.0 ~0.87 ~0.36 ~1000000000.0 ~0.87 0.00000000018 0 force @a[distance=..32] +particle fishing ~0.52 ~0.0 ~0.78 ~0.52 ~1000000000.0 ~0.78 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.66 ~0.0 ~0.66 ~0.66 ~1000000000.0 ~0.66 0.00000000046 0 force @a[distance=..32] +particle fishing ~0.78 ~0.0 ~0.52 ~0.78 ~1000000000.0 ~0.52 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.87 ~0.0 ~0.36 ~0.87 ~999999936.0 ~0.36 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.92 ~0.0 ~0.18 ~0.92 ~1000000000.0 ~0.18 0.00000000028 0 force @a[distance=..32] +particle fishing ~0.94 ~0.0 ~-0.0 ~0.94 ~1000000000.0 ~-0.0 0.00000000009 0 force @a[distance=..32] +particle fishing ~0.92 ~0.0 ~-0.18 ~0.92 ~1000000000.0 ~-0.18 0.00000000043 0 force @a[distance=..32] +particle fishing ~0.87 ~0.0 ~-0.36 ~0.87 ~1000000000.0 ~-0.36 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.78 ~0.0 ~-0.52 ~0.78 ~1000000000.0 ~-0.52 0.00000000019 0 force @a[distance=..32] +particle fishing ~0.66 ~0.0 ~-0.66 ~0.66 ~1000000000.0 ~-0.66 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.52 ~0.0 ~-0.78 ~0.52 ~1000000000.0 ~-0.78 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.36 ~0.0 ~-0.87 ~0.36 ~999999936.0 ~-0.87 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.18 ~0.0 ~-0.92 ~0.18 ~1000000000.0 ~-0.92 0.00000000033 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_011.mcfunction new file mode 100644 index 000000000..bd6047a58 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_011.mcfunction @@ -0,0 +1,119 @@ +# frame 11 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.096 0 +# 2_circle +particle fishing ~-2.75 ~-0.029999999999999805 ~3.01 ~961358464.0 ~0.0 ~275299648.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-1.39 ~-0.020000000000000018 ~3.84 ~993532032.0 ~0.0 ~-113552328.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.19 ~-0.020000000000000018 ~4.08 ~874449280.0 ~0.0 ~-485116992.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~1.73 ~-0.06000000000000005 ~3.69 ~622239616.0 ~0.0 ~-782826752.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~3.01 ~-0.10000000000000009 ~2.75 ~275299552.0 ~0.0 ~-961358464.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~3.84 ~-0.07000000000000006 ~1.39 ~-113552424.0 ~0.0 ~-993532032.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~4.08 ~-0.05999999999999983 ~-0.19 ~-485116992.0 ~0.0 ~-874449280.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~3.69 ~0.009999999999999787 ~-1.73 ~-782827008.0 ~0.0 ~-622239552.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~2.75 ~0.0 ~-3.01 ~-961358464.0 ~0.0 ~-275299552.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~1.39 ~-0.030000000000000027 ~-3.84 ~-993532032.0 ~0.0 ~113552336.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-0.19 ~0.08000000000000007 ~-4.08 ~-874449280.0 ~0.0 ~485117024.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-1.73 ~-0.010000000000000009 ~-3.69 ~-622239424.0 ~0.0 ~782827008.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-3.01 ~-0.040000000000000036 ~-2.75 ~-275299648.0 ~0.0 ~961358464.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-3.84 ~-0.11999999999999988 ~-1.39 ~113552512.0 ~0.0 ~993532032.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-4.08 ~0.040000000000000036 ~0.19 ~485117120.0 ~0.0 ~874449152.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~-3.69 ~-0.09999999999999987 ~1.73 ~782826752.0 ~0.0 ~622239680.0 0.00000000026 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-3.49 ~-0.0 ~999999936.0 ~-3.49 0.00000000017 0 force @a[distance=..32] +particle fishing ~-0.68 ~0.0 ~-3.42 ~-0.68 ~1000000000.0 ~-3.42 0.00000000002 0 force @a[distance=..32] +particle fishing ~-1.34 ~0.0 ~-3.23 ~-1.34 ~1000000000.0 ~-3.23 0.00000000009 0 force @a[distance=..32] +particle fishing ~-1.94 ~0.0 ~-2.9 ~-1.94 ~1000000000.0 ~-2.9 0.00000000004 0 force @a[distance=..32] +particle fishing ~-2.47 ~0.0 ~-2.47 ~-2.47 ~1000000000.0 ~-2.47 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.9 ~0.0 ~-1.94 ~-2.9 ~1000000000.0 ~-1.94 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.23 ~0.0 ~-1.34 ~-3.23 ~999999936.0 ~-1.34 0.00000000016 0 force @a[distance=..32] +particle fishing ~-3.42 ~0.0 ~-0.68 ~-3.42 ~1000000000.0 ~-0.68 0.00000000005 0 force @a[distance=..32] +particle fishing ~-3.49 ~0.0 ~0.0 ~-3.49 ~1000000000.0 ~0.0 0.00000000005 0 force @a[distance=..32] +particle fishing ~-3.42 ~0.0 ~0.68 ~-3.42 ~1000000000.0 ~0.68 0.00000000001 0 force @a[distance=..32] +particle fishing ~-3.23 ~0.0 ~1.34 ~-3.23 ~999999936.0 ~1.34 0.00000000017 0 force @a[distance=..32] +particle fishing ~-2.9 ~0.0 ~1.94 ~-2.9 ~1000000000.0 ~1.94 0.00000000008 0 force @a[distance=..32] +particle fishing ~-2.47 ~0.0 ~2.47 ~-2.47 ~1000000000.0 ~2.47 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.94 ~0.0 ~2.9 ~-1.94 ~1000000000.0 ~2.9 0.00000000005 0 force @a[distance=..32] +particle fishing ~-1.34 ~0.0 ~3.23 ~-1.34 ~1000000000.0 ~3.23 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.68 ~0.0 ~3.42 ~-0.68 ~999999936.0 ~3.42 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.49 ~0.0 ~1000000000.0 ~3.49 0.00000000015 0 force @a[distance=..32] +particle fishing ~0.68 ~0.0 ~3.42 ~0.68 ~999999936.0 ~3.42 0.00000000017 0 force @a[distance=..32] +particle fishing ~1.34 ~0.0 ~3.23 ~1.34 ~1000000000.0 ~3.23 0.00000000009 0 force @a[distance=..32] +particle fishing ~1.94 ~0.0 ~2.9 ~1.94 ~1000000000.0 ~2.9 0.00000000004 0 force @a[distance=..32] +particle fishing ~2.47 ~0.0 ~2.47 ~2.47 ~1000000000.0 ~2.47 0.00000000001 0 force @a[distance=..32] +particle fishing ~2.9 ~0.0 ~1.94 ~2.9 ~999999936.0 ~1.94 0.00000000015 0 force @a[distance=..32] +particle fishing ~3.23 ~0.0 ~1.34 ~3.23 ~1000000000.0 ~1.34 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.42 ~0.0 ~0.68 ~3.42 ~1000000000.0 ~0.68 0.00000000012 0 force @a[distance=..32] +particle fishing ~3.49 ~0.0 ~-0.0 ~3.49 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.42 ~0.0 ~-0.68 ~3.42 ~1000000000.0 ~-0.68 0.00000000016 0 force @a[distance=..32] +particle fishing ~3.23 ~0.0 ~-1.34 ~3.23 ~999999936.0 ~-1.34 0.00000000017 0 force @a[distance=..32] +particle fishing ~2.9 ~0.0 ~-1.94 ~2.9 ~1000000000.0 ~-1.94 0.00000000007 0 force @a[distance=..32] +particle fishing ~2.47 ~0.0 ~-2.47 ~2.47 ~999999936.0 ~-2.47 0.00000000017 0 force @a[distance=..32] +particle fishing ~1.94 ~0.0 ~-2.9 ~1.94 ~1000000000.0 ~-2.9 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.34 ~0.0 ~-3.23 ~1.34 ~999999936.0 ~-3.23 0.00000000017 0 force @a[distance=..32] +particle fishing ~0.68 ~0.0 ~-3.42 ~0.68 ~1000000000.0 ~-3.42 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-2.13 ~-0.0 ~999999936.0 ~-2.13 0.00000000015 0 force @a[distance=..32] +particle fishing ~-0.42 ~0.0 ~-2.09 ~-0.42 ~1000000000.0 ~-2.09 0.00000000029 0 force @a[distance=..32] +particle fishing ~-0.82 ~0.0 ~-1.97 ~-0.82 ~1000000000.0 ~-1.97 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.18 ~0.0 ~-1.77 ~-1.18 ~1000000000.0 ~-1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.51 ~0.0 ~-1.51 ~-1.51 ~1000000000.0 ~-1.51 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.77 ~0.0 ~-1.18 ~-1.77 ~1000000000.0 ~-1.18 0.00000000021 0 force @a[distance=..32] +particle fishing ~-1.97 ~0.0 ~-0.82 ~-1.97 ~1000000000.0 ~-0.82 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.09 ~0.0 ~-0.42 ~-2.09 ~1000000000.0 ~-0.42 0.00000000023 0 force @a[distance=..32] +particle fishing ~-2.13 ~0.0 ~0.0 ~-2.13 ~1000000000.0 ~0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.09 ~0.0 ~0.42 ~-2.09 ~1000000000.0 ~0.42 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.97 ~0.0 ~0.82 ~-1.97 ~1000000000.0 ~0.82 0.00000000029 0 force @a[distance=..32] +particle fishing ~-1.77 ~0.0 ~1.18 ~-1.77 ~1000000000.0 ~1.18 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.51 ~0.0 ~1.51 ~-1.51 ~1000000000.0 ~1.51 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.18 ~0.0 ~1.77 ~-1.18 ~1000000000.0 ~1.77 0.00000000029 0 force @a[distance=..32] +particle fishing ~-0.82 ~0.0 ~1.97 ~-0.82 ~1000000000.0 ~1.97 0.00000000017 0 force @a[distance=..32] +particle fishing ~-0.42 ~0.0 ~2.09 ~-0.42 ~1000000000.0 ~2.09 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~2.13 ~0.0 ~1000000000.0 ~2.13 0.00000000008 0 force @a[distance=..32] +particle fishing ~0.42 ~0.0 ~2.09 ~0.42 ~1000000000.0 ~2.09 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.82 ~0.0 ~1.97 ~0.82 ~1000000000.0 ~1.97 0.00000000029 0 force @a[distance=..32] +particle fishing ~1.18 ~0.0 ~1.77 ~1.18 ~1000000000.0 ~1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.51 ~0.0 ~1.51 ~1.51 ~999999936.0 ~1.51 0.00000000009 0 force @a[distance=..32] +particle fishing ~1.77 ~0.0 ~1.18 ~1.77 ~1000000000.0 ~1.18 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.97 ~0.0 ~0.82 ~1.97 ~1000000000.0 ~0.82 0.00000000025 0 force @a[distance=..32] +particle fishing ~2.09 ~0.0 ~0.42 ~2.09 ~1000000000.0 ~0.42 0.00000000029 0 force @a[distance=..32] +particle fishing ~2.13 ~0.0 ~-0.0 ~2.13 ~1000000000.0 ~-0.0 0.00000000029 0 force @a[distance=..32] +particle fishing ~2.09 ~0.0 ~-0.42 ~2.09 ~999999936.0 ~-0.42 0.00000000019 0 force @a[distance=..32] +particle fishing ~1.97 ~0.0 ~-0.82 ~1.97 ~1000000000.0 ~-0.82 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.77 ~0.0 ~-1.18 ~1.77 ~1000000000.0 ~-1.18 0.00000000029 0 force @a[distance=..32] +particle fishing ~1.51 ~0.0 ~-1.51 ~1.51 ~1000000000.0 ~-1.51 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.18 ~0.0 ~-1.77 ~1.18 ~1000000000.0 ~-1.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.82 ~0.0 ~-1.97 ~0.82 ~1000000000.0 ~-1.97 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.42 ~0.0 ~-2.09 ~0.42 ~1000000000.0 ~-2.09 0.00000000017 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~-0.45 ~-0.0 ~1000000000.0 ~-0.45 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.09 ~0.0 ~-0.44 ~-0.09 ~1000000000.0 ~-0.44 0.00000000054 0 force @a[distance=..32] +particle fishing ~-0.17 ~0.0 ~-0.41 ~-0.17 ~1000000000.0 ~-0.41 0.00000000048 0 force @a[distance=..32] +particle fishing ~-0.25 ~0.0 ~-0.37 ~-0.25 ~1000000000.0 ~-0.37 0.00000000054 0 force @a[distance=..32] +particle fishing ~-0.32 ~0.0 ~-0.32 ~-0.32 ~1000000000.0 ~-0.32 0.00000000054 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.0 ~-0.25 ~-0.37 ~1000000000.0 ~-0.25 0.00000000005 0 force @a[distance=..32] +particle fishing ~-0.41 ~0.0 ~-0.17 ~-0.41 ~1000000000.0 ~-0.17 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.44 ~0.0 ~-0.09 ~-0.44 ~1000000000.0 ~-0.09 0.00000000054 0 force @a[distance=..32] +particle fishing ~-0.45 ~0.0 ~0.0 ~-0.45 ~999999936.0 ~0.0 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.44 ~0.0 ~0.09 ~-0.44 ~1000000000.0 ~0.09 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.41 ~0.0 ~0.17 ~-0.41 ~999999936.0 ~0.17 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.0 ~0.25 ~-0.37 ~1000000000.0 ~0.25 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.32 ~0.0 ~0.32 ~-0.32 ~999999936.0 ~0.32 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.25 ~0.0 ~0.37 ~-0.25 ~1000000000.0 ~0.37 0.00000000054 0 force @a[distance=..32] +particle fishing ~-0.17 ~0.0 ~0.41 ~-0.17 ~1000000000.0 ~0.41 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.09 ~0.0 ~0.44 ~-0.09 ~1000000000.0 ~0.44 0.00000000030 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~0.45 ~0.0 ~1000000000.0 ~0.45 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.09 ~0.0 ~0.44 ~0.09 ~1000000000.0 ~0.44 0.00000000051 0 force @a[distance=..32] +particle fishing ~0.17 ~0.0 ~0.41 ~0.17 ~1000000000.0 ~0.41 0.00000000034 0 force @a[distance=..32] +particle fishing ~0.25 ~0.0 ~0.37 ~0.25 ~1000000000.0 ~0.37 0.00000000039 0 force @a[distance=..32] +particle fishing ~0.32 ~0.0 ~0.32 ~0.32 ~1000000000.0 ~0.32 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.37 ~0.0 ~0.25 ~0.37 ~1000000000.0 ~0.25 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.41 ~0.0 ~0.17 ~0.41 ~1000000000.0 ~0.17 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.44 ~0.0 ~0.09 ~0.44 ~1000000000.0 ~0.09 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.45 ~0.0 ~-0.0 ~0.45 ~1000000000.0 ~-0.0 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.44 ~0.0 ~-0.09 ~0.44 ~1000000000.0 ~-0.09 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.41 ~0.0 ~-0.17 ~0.41 ~1000000000.0 ~-0.17 0.00000000039 0 force @a[distance=..32] +particle fishing ~0.37 ~0.0 ~-0.25 ~0.37 ~1000000000.0 ~-0.25 0.00000000039 0 force @a[distance=..32] +particle fishing ~0.32 ~0.0 ~-0.32 ~0.32 ~1000000000.0 ~-0.32 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.25 ~0.0 ~-0.37 ~0.25 ~1000000000.0 ~-0.37 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.17 ~0.0 ~-0.41 ~0.17 ~1000000000.0 ~-0.41 0.00000000031 0 force @a[distance=..32] +particle fishing ~0.09 ~0.0 ~-0.44 ~0.09 ~1000000000.0 ~-0.44 0.00000000041 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_012.mcfunction new file mode 100644 index 000000000..d3829766f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_012.mcfunction @@ -0,0 +1,119 @@ +# frame 12 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 1.029 0 +# 2_circle +particle fishing ~-2.79 ~0.08999999999999986 ~2.66 ~983954880.0 ~0.0 ~178417376.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.56 ~-0.040000000000000036 ~3.53 ~977333120.0 ~0.0 ~-211707184.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.09 ~-0.05999999999999983 ~3.86 ~821921280.0 ~0.0 ~-569601024.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~1.39 ~-0.020000000000000018 ~3.6 ~541379392.0 ~0.0 ~-840778496.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~2.66 ~0.1399999999999999 ~2.79 ~178417248.0 ~0.0 ~-983954816.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~3.53 ~0.1399999999999999 ~1.56 ~-211707280.0 ~0.0 ~-977333120.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~3.86 ~-0.08999999999999986 ~0.09 ~-569601024.0 ~0.0 ~-821921280.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~3.6 ~0.09000000000000008 ~-1.39 ~-840778560.0 ~0.0 ~-541379200.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~2.79 ~-0.17999999999999994 ~-2.66 ~-983954816.0 ~0.0 ~-178417248.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~1.56 ~-0.020000000000000018 ~-3.53 ~-977333120.0 ~0.0 ~211707184.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~0.09 ~0.07999999999999985 ~-3.86 ~-821921216.0 ~0.0 ~569601216.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.39 ~0.0 ~-3.6 ~-541379136.0 ~0.0 ~840778624.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-2.66 ~-0.030000000000000027 ~-2.79 ~-178417344.0 ~0.0 ~983954816.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-3.53 ~0.15999999999999992 ~-1.56 ~211707184.0 ~0.0 ~977333120.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-3.86 ~0.05999999999999983 ~-0.09 ~569601280.0 ~0.0 ~821921152.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-3.6 ~0.06000000000000005 ~1.39 ~840778432.0 ~0.0 ~541379328.0 0.00000000024 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-3.09 ~-0.0 ~1000000000.0 ~-3.09 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.6 ~0.0 ~-3.04 ~-0.6 ~1000000000.0 ~-3.04 0.00000000003 0 force @a[distance=..32] +particle fishing ~-1.18 ~0.0 ~-2.86 ~-1.18 ~1000000000.0 ~-2.86 0.00000000017 0 force @a[distance=..32] +particle fishing ~-1.72 ~0.0 ~-2.57 ~-1.72 ~1000000000.0 ~-2.57 0.00000000016 0 force @a[distance=..32] +particle fishing ~-2.19 ~0.0 ~-2.19 ~-2.19 ~999999936.0 ~-2.19 0.00000000014 0 force @a[distance=..32] +particle fishing ~-2.57 ~0.0 ~-1.72 ~-2.57 ~1000000000.0 ~-1.72 0.00000000012 0 force @a[distance=..32] +particle fishing ~-2.86 ~0.0 ~-1.18 ~-2.86 ~1000000000.0 ~-1.18 0.00000000018 0 force @a[distance=..32] +particle fishing ~-3.04 ~0.0 ~-0.6 ~-3.04 ~1000000000.0 ~-0.6 0.00000000013 0 force @a[distance=..32] +particle fishing ~-3.09 ~0.0 ~0.0 ~-3.09 ~1000000000.0 ~0.0 0.00000000006 0 force @a[distance=..32] +particle fishing ~-3.04 ~0.0 ~0.6 ~-3.04 ~1000000000.0 ~0.6 0.00000000006 0 force @a[distance=..32] +particle fishing ~-2.86 ~0.0 ~1.18 ~-2.86 ~1000000000.0 ~1.18 0.00000000005 0 force @a[distance=..32] +particle fishing ~-2.57 ~0.0 ~1.72 ~-2.57 ~1000000000.0 ~1.72 0.00000000016 0 force @a[distance=..32] +particle fishing ~-2.19 ~0.0 ~2.19 ~-2.19 ~1000000000.0 ~2.19 0.00000000019 0 force @a[distance=..32] +particle fishing ~-1.72 ~0.0 ~2.57 ~-1.72 ~1000000000.0 ~2.57 0.00000000017 0 force @a[distance=..32] +particle fishing ~-1.18 ~0.0 ~2.86 ~-1.18 ~1000000000.0 ~2.86 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.6 ~0.0 ~3.04 ~-0.6 ~1000000000.0 ~3.04 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~3.09 ~0.0 ~1000000000.0 ~3.09 0.00000000017 0 force @a[distance=..32] +particle fishing ~0.6 ~0.0 ~3.04 ~0.6 ~1000000000.0 ~3.04 0.00000000009 0 force @a[distance=..32] +particle fishing ~1.18 ~0.0 ~2.86 ~1.18 ~1000000000.0 ~2.86 0.00000000019 0 force @a[distance=..32] +particle fishing ~1.72 ~0.0 ~2.57 ~1.72 ~999999936.0 ~2.57 0.00000000015 0 force @a[distance=..32] +particle fishing ~2.19 ~0.0 ~2.19 ~2.19 ~1000000000.0 ~2.19 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.57 ~0.0 ~1.72 ~2.57 ~1000000000.0 ~1.72 0.00000000002 0 force @a[distance=..32] +particle fishing ~2.86 ~0.0 ~1.18 ~2.86 ~1000000000.0 ~1.18 0.00000000001 0 force @a[distance=..32] +particle fishing ~3.04 ~0.0 ~0.6 ~3.04 ~1000000000.0 ~0.6 0.00000000019 0 force @a[distance=..32] +particle fishing ~3.09 ~0.0 ~-0.0 ~3.09 ~1000000000.0 ~-0.0 0.00000000009 0 force @a[distance=..32] +particle fishing ~3.04 ~0.0 ~-0.6 ~3.04 ~1000000000.0 ~-0.6 0.00000000009 0 force @a[distance=..32] +particle fishing ~2.86 ~0.0 ~-1.18 ~2.86 ~1000000000.0 ~-1.18 0.00000000013 0 force @a[distance=..32] +particle fishing ~2.57 ~0.0 ~-1.72 ~2.57 ~1000000000.0 ~-1.72 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.19 ~0.0 ~-2.19 ~2.19 ~999999936.0 ~-2.19 0.00000000018 0 force @a[distance=..32] +particle fishing ~1.72 ~0.0 ~-2.57 ~1.72 ~1000000000.0 ~-2.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.18 ~0.0 ~-2.86 ~1.18 ~1000000000.0 ~-2.86 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.6 ~0.0 ~-3.04 ~0.6 ~1000000000.0 ~-3.04 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-1.69 ~-0.0 ~1000000000.0 ~-1.69 0.00000000014 0 force @a[distance=..32] +particle fishing ~-0.33 ~0.0 ~-1.66 ~-0.33 ~1000000000.0 ~-1.66 0.00000000031 0 force @a[distance=..32] +particle fishing ~-0.65 ~0.0 ~-1.56 ~-0.65 ~1000000000.0 ~-1.56 0.00000000014 0 force @a[distance=..32] +particle fishing ~-0.94 ~0.0 ~-1.41 ~-0.94 ~1000000000.0 ~-1.41 0.00000000033 0 force @a[distance=..32] +particle fishing ~-1.2 ~0.0 ~-1.2 ~-1.2 ~1000000000.0 ~-1.2 0.00000000025 0 force @a[distance=..32] +particle fishing ~-1.41 ~0.0 ~-0.94 ~-1.41 ~1000000000.0 ~-0.94 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.56 ~0.0 ~-0.65 ~-1.56 ~1000000000.0 ~-0.65 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.66 ~0.0 ~-0.33 ~-1.66 ~1000000000.0 ~-0.33 0.00000000033 0 force @a[distance=..32] +particle fishing ~-1.69 ~0.0 ~0.0 ~-1.69 ~999999936.0 ~0.0 0.00000000007 0 force @a[distance=..32] +particle fishing ~-1.66 ~0.0 ~0.33 ~-1.66 ~1000000000.0 ~0.33 0.00000000033 0 force @a[distance=..32] +particle fishing ~-1.56 ~0.0 ~0.65 ~-1.56 ~1000000000.0 ~0.65 0.00000000032 0 force @a[distance=..32] +particle fishing ~-1.41 ~0.0 ~0.94 ~-1.41 ~1000000000.0 ~0.94 0.00000000008 0 force @a[distance=..32] +particle fishing ~-1.2 ~0.0 ~1.2 ~-1.2 ~1000000000.0 ~1.2 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.94 ~0.0 ~1.41 ~-0.94 ~1000000000.0 ~1.41 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.65 ~0.0 ~1.56 ~-0.65 ~1000000000.0 ~1.56 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.33 ~0.0 ~1.66 ~-0.33 ~999999936.0 ~1.66 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.69 ~0.0 ~1000000000.0 ~1.69 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.33 ~0.0 ~1.66 ~0.33 ~1000000000.0 ~1.66 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.65 ~0.0 ~1.56 ~0.65 ~1000000000.0 ~1.56 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.94 ~0.0 ~1.41 ~0.94 ~1000000000.0 ~1.41 0.00000000018 0 force @a[distance=..32] +particle fishing ~1.2 ~0.0 ~1.2 ~1.2 ~1000000000.0 ~1.2 0.00000000033 0 force @a[distance=..32] +particle fishing ~1.41 ~0.0 ~0.94 ~1.41 ~1000000000.0 ~0.94 0.00000000020 0 force @a[distance=..32] +particle fishing ~1.56 ~0.0 ~0.65 ~1.56 ~999999936.0 ~0.65 0.00000000017 0 force @a[distance=..32] +particle fishing ~1.66 ~0.0 ~0.33 ~1.66 ~1000000000.0 ~0.33 0.00000000024 0 force @a[distance=..32] +particle fishing ~1.69 ~0.0 ~-0.0 ~1.69 ~1000000000.0 ~-0.0 0.00000000006 0 force @a[distance=..32] +particle fishing ~1.66 ~0.0 ~-0.33 ~1.66 ~1000000000.0 ~-0.33 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.56 ~0.0 ~-0.65 ~1.56 ~1000000000.0 ~-0.65 0.00000000005 0 force @a[distance=..32] +particle fishing ~1.41 ~0.0 ~-0.94 ~1.41 ~1000000000.0 ~-0.94 0.00000000009 0 force @a[distance=..32] +particle fishing ~1.2 ~0.0 ~-1.2 ~1.2 ~999999936.0 ~-1.2 0.00000000007 0 force @a[distance=..32] +particle fishing ~0.94 ~0.0 ~-1.41 ~0.94 ~1000000000.0 ~-1.41 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.65 ~0.0 ~-1.56 ~0.65 ~999999936.0 ~-1.56 0.00000000009 0 force @a[distance=..32] +particle fishing ~0.33 ~0.0 ~-1.66 ~0.33 ~1000000000.0 ~-1.66 0.00000000005 0 force @a[distance=..32] +# 3_circle3 +particle fishing ~-0.0 ~0.0 ~0.05 ~-0.0 ~1000000000.0 ~0.05 0.00000000011 0 force @a[distance=..32] +particle fishing ~0.01 ~0.0 ~0.04 ~0.01 ~1000000000.0 ~0.04 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.02 ~0.0 ~0.04 ~0.02 ~1000000000.0 ~0.04 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.03 ~0.0 ~0.04 ~0.03 ~1000000000.0 ~0.04 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.03 ~0.0 ~0.03 ~0.03 ~1000000000.0 ~0.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~0.03 ~0.04 ~1000000000.0 ~0.03 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~0.02 ~0.04 ~1000000000.0 ~0.02 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~0.01 ~0.04 ~1000000000.0 ~0.01 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.05 ~0.0 ~-0.0 ~0.05 ~999999936.0 ~-0.0 0.00000000052 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~-0.01 ~0.04 ~1000000000.0 ~-0.01 0.00000000046 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~-0.02 ~0.04 ~999999936.0 ~-0.02 0.00000000034 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~-0.03 ~0.04 ~1000000000.0 ~-0.03 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.03 ~0.0 ~-0.03 ~0.03 ~1000000000.0 ~-0.03 0.00000000032 0 force @a[distance=..32] +particle fishing ~0.03 ~0.0 ~-0.04 ~0.03 ~1000000000.0 ~-0.04 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.02 ~0.0 ~-0.04 ~0.02 ~1000000000.0 ~-0.04 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.01 ~0.0 ~-0.04 ~0.01 ~1000000000.0 ~-0.04 0.00000000019 0 force @a[distance=..32] +particle fishing ~-0.0 ~0.0 ~-0.05 ~-0.0 ~1000000000.0 ~-0.05 0.00000000014 0 force @a[distance=..32] +particle fishing ~-0.01 ~0.0 ~-0.04 ~-0.01 ~1000000000.0 ~-0.04 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.02 ~0.0 ~-0.04 ~-0.02 ~1000000000.0 ~-0.04 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.03 ~0.0 ~-0.04 ~-0.03 ~1000000000.0 ~-0.04 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.03 ~0.0 ~-0.03 ~-0.03 ~1000000000.0 ~-0.03 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~-0.03 ~-0.04 ~1000000000.0 ~-0.03 0.00000000061 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~-0.02 ~-0.04 ~1000000000.0 ~-0.02 0.00000000061 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~-0.01 ~-0.04 ~999999936.0 ~-0.01 0.00000000034 0 force @a[distance=..32] +particle fishing ~-0.05 ~0.0 ~0.0 ~-0.05 ~1000000000.0 ~0.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~0.01 ~-0.04 ~1000000000.0 ~0.01 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~0.02 ~-0.04 ~999999936.0 ~0.02 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~0.03 ~-0.04 ~1000000000.0 ~0.03 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.03 ~0.0 ~0.03 ~-0.03 ~1000000000.0 ~0.03 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.03 ~0.0 ~0.04 ~-0.03 ~1000000000.0 ~0.04 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.02 ~0.0 ~0.04 ~-0.02 ~1000000000.0 ~0.04 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.01 ~0.0 ~0.04 ~-0.01 ~1000000000.0 ~0.04 0.00000000007 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_013.mcfunction new file mode 100644 index 000000000..5fe7bdad7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_013.mcfunction @@ -0,0 +1,86 @@ +# frame 13 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.963 0 +# 2_circle +particle fishing ~-2.82 ~0.09000000000000008 ~2.31 ~997433280.0 ~0.0 ~-71601680.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-1.72 ~-0.06000000000000005 ~3.21 ~894107392.0 ~0.0 ~-447852544.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-0.36 ~0.10999999999999988 ~3.63 ~654661824.0 ~0.0 ~-755921856.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~1.05 ~0.029999999999999805 ~3.49 ~315549888.0 ~0.0 ~-948909056.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~2.31 ~-0.11999999999999988 ~2.82 ~-71601792.0 ~0.0 ~-997433280.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~3.21 ~0.0 ~1.72 ~-447852608.0 ~0.0 ~-894107392.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~3.63 ~-0.050000000000000044 ~0.36 ~-755921856.0 ~0.0 ~-654661824.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~3.49 ~0.020000000000000018 ~-1.05 ~-948909056.0 ~0.0 ~-315549728.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~2.82 ~-0.010000000000000009 ~-2.31 ~-997433344.0 ~0.0 ~71601800.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~1.72 ~0.04999999999999982 ~-3.21 ~-894107392.0 ~0.0 ~447852448.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~0.36 ~0.0 ~-3.63 ~-654661696.0 ~0.0 ~755922048.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-1.05 ~0.11999999999999988 ~-3.49 ~-315549536.0 ~0.0 ~948909184.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-2.31 ~0.07999999999999985 ~-2.82 ~71601680.0 ~0.0 ~997433280.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-3.21 ~0.030000000000000027 ~-1.72 ~447852736.0 ~0.0 ~894107328.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-3.63 ~-0.040000000000000036 ~-0.36 ~755922048.0 ~0.0 ~654661568.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~-3.49 ~-0.1399999999999999 ~1.05 ~948909056.0 ~0.0 ~315549856.0 0.00000000023 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-2.7 ~-0.0 ~1000000000.0 ~-2.7 0.00000000007 0 force @a[distance=..32] +particle fishing ~-0.53 ~0.0 ~-2.64 ~-0.53 ~1000000000.0 ~-2.64 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.03 ~0.0 ~-2.49 ~-1.03 ~1000000000.0 ~-2.49 0.00000000019 0 force @a[distance=..32] +particle fishing ~-1.5 ~0.0 ~-2.24 ~-1.5 ~1000000000.0 ~-2.24 0.00000000014 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~-1.91 ~-1.91 ~1000000000.0 ~-1.91 0.00000000013 0 force @a[distance=..32] +particle fishing ~-2.24 ~0.0 ~-1.5 ~-2.24 ~999999936.0 ~-1.5 0.00000000014 0 force @a[distance=..32] +particle fishing ~-2.49 ~0.0 ~-1.03 ~-2.49 ~1000000000.0 ~-1.03 0.00000000001 0 force @a[distance=..32] +particle fishing ~-2.64 ~0.0 ~-0.53 ~-2.64 ~1000000000.0 ~-0.53 0.00000000007 0 force @a[distance=..32] +particle fishing ~-2.7 ~0.0 ~0.0 ~-2.7 ~1000000000.0 ~0.0 0.00000000015 0 force @a[distance=..32] +particle fishing ~-2.64 ~0.0 ~0.53 ~-2.64 ~1000000000.0 ~0.53 0.00000000015 0 force @a[distance=..32] +particle fishing ~-2.49 ~0.0 ~1.03 ~-2.49 ~1000000000.0 ~1.03 0.00000000017 0 force @a[distance=..32] +particle fishing ~-2.24 ~0.0 ~1.5 ~-2.24 ~999999936.0 ~1.5 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~1.91 ~-1.91 ~1000000000.0 ~1.91 0.00000000011 0 force @a[distance=..32] +particle fishing ~-1.5 ~0.0 ~2.24 ~-1.5 ~1000000000.0 ~2.24 0.00000000006 0 force @a[distance=..32] +particle fishing ~-1.03 ~0.0 ~2.49 ~-1.03 ~1000000000.0 ~2.49 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.53 ~0.0 ~2.64 ~-0.53 ~1000000000.0 ~2.64 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~2.7 ~0.0 ~1000000000.0 ~2.7 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.53 ~0.0 ~2.64 ~0.53 ~1000000000.0 ~2.64 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.03 ~0.0 ~2.49 ~1.03 ~1000000000.0 ~2.49 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.5 ~0.0 ~2.24 ~1.5 ~999999936.0 ~2.24 0.00000000014 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~1.91 ~1.91 ~1000000000.0 ~1.91 0.00000000022 0 force @a[distance=..32] +particle fishing ~2.24 ~0.0 ~1.5 ~2.24 ~1000000000.0 ~1.5 0.00000000016 0 force @a[distance=..32] +particle fishing ~2.49 ~0.0 ~1.03 ~2.49 ~1000000000.0 ~1.03 0.00000000022 0 force @a[distance=..32] +particle fishing ~2.64 ~0.0 ~0.53 ~2.64 ~1000000000.0 ~0.53 0.00000000005 0 force @a[distance=..32] +particle fishing ~2.7 ~0.0 ~-0.0 ~2.7 ~1000000000.0 ~-0.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~2.64 ~0.0 ~-0.53 ~2.64 ~1000000000.0 ~-0.53 0.00000000014 0 force @a[distance=..32] +particle fishing ~2.49 ~0.0 ~-1.03 ~2.49 ~1000000000.0 ~-1.03 0.00000000014 0 force @a[distance=..32] +particle fishing ~2.24 ~0.0 ~-1.5 ~2.24 ~1000000000.0 ~-1.5 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~-1.91 ~1.91 ~1000000000.0 ~-1.91 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.5 ~0.0 ~-2.24 ~1.5 ~1000000000.0 ~-2.24 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.03 ~0.0 ~-2.49 ~1.03 ~1000000000.0 ~-2.49 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.53 ~0.0 ~-2.64 ~0.53 ~1000000000.0 ~-2.64 0.00000000009 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-1.25 ~-0.0 ~1000000000.0 ~-1.25 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.24 ~0.0 ~-1.23 ~-0.24 ~1000000000.0 ~-1.23 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.48 ~0.0 ~-1.15 ~-0.48 ~1000000000.0 ~-1.15 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.69 ~0.0 ~-1.04 ~-0.69 ~1000000000.0 ~-1.04 0.00000000011 0 force @a[distance=..32] +particle fishing ~-0.88 ~0.0 ~-0.88 ~-0.88 ~1000000000.0 ~-0.88 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.04 ~0.0 ~-0.69 ~-1.04 ~999999936.0 ~-0.69 0.00000000036 0 force @a[distance=..32] +particle fishing ~-1.15 ~0.0 ~-0.48 ~-1.15 ~1000000000.0 ~-0.48 0.00000000033 0 force @a[distance=..32] +particle fishing ~-1.23 ~0.0 ~-0.24 ~-1.23 ~1000000000.0 ~-0.24 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.25 ~0.0 ~0.0 ~-1.25 ~1000000000.0 ~0.0 0.00000000021 0 force @a[distance=..32] +particle fishing ~-1.23 ~0.0 ~0.24 ~-1.23 ~1000000000.0 ~0.24 0.00000000034 0 force @a[distance=..32] +particle fishing ~-1.15 ~0.0 ~0.48 ~-1.15 ~1000000000.0 ~0.48 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.04 ~0.0 ~0.69 ~-1.04 ~1000000000.0 ~0.69 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.88 ~0.0 ~0.88 ~-0.88 ~1000000000.0 ~0.88 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.69 ~0.0 ~1.04 ~-0.69 ~999999936.0 ~1.04 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.48 ~0.0 ~1.15 ~-0.48 ~1000000000.0 ~1.15 0.00000000034 0 force @a[distance=..32] +particle fishing ~-0.24 ~0.0 ~1.23 ~-0.24 ~1000000000.0 ~1.23 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.25 ~0.0 ~1000000000.0 ~1.25 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.24 ~0.0 ~1.23 ~0.24 ~1000000000.0 ~1.23 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.48 ~0.0 ~1.15 ~0.48 ~1000000000.0 ~1.15 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.69 ~0.0 ~1.04 ~0.69 ~1000000000.0 ~1.04 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.88 ~0.0 ~0.88 ~0.88 ~1000000000.0 ~0.88 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.04 ~0.0 ~0.69 ~1.04 ~1000000000.0 ~0.69 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.15 ~0.0 ~0.48 ~1.15 ~999999936.0 ~0.48 0.00000000036 0 force @a[distance=..32] +particle fishing ~1.23 ~0.0 ~0.24 ~1.23 ~1000000000.0 ~0.24 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.25 ~0.0 ~-0.0 ~1.25 ~1000000000.0 ~-0.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.23 ~0.0 ~-0.24 ~1.23 ~1000000000.0 ~-0.24 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.15 ~0.0 ~-0.48 ~1.15 ~999999936.0 ~-0.48 0.00000000036 0 force @a[distance=..32] +particle fishing ~1.04 ~0.0 ~-0.69 ~1.04 ~1000000000.0 ~-0.69 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.88 ~0.0 ~-0.88 ~0.88 ~1000000000.0 ~-0.88 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.69 ~0.0 ~-1.04 ~0.69 ~1000000000.0 ~-1.04 0.00000000007 0 force @a[distance=..32] +particle fishing ~0.48 ~0.0 ~-1.15 ~0.48 ~1000000000.0 ~-1.15 0.00000000003 0 force @a[distance=..32] +particle fishing ~0.24 ~0.0 ~-1.23 ~0.24 ~1000000000.0 ~-1.23 0.00000000012 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_014.mcfunction new file mode 100644 index 000000000..4e234a764 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_014.mcfunction @@ -0,0 +1,86 @@ +# frame 14 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.896 0 +# 2_circle +particle fishing ~-2.81 ~0.05999999999999983 ~1.9 ~973388928.0 ~0.0 ~-229159072.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-1.86 ~-0.030000000000000027 ~2.83 ~811598784.0 ~0.0 ~-584215232.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.64 ~0.09999999999999987 ~3.33 ~526250016.0 ~0.0 ~-850329792.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.68 ~-0.1399999999999999 ~3.32 ~160784480.0 ~0.0 ~-986989568.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~1.9 ~-0.06000000000000005 ~2.81 ~-229159120.0 ~0.0 ~-973388928.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~2.83 ~-0.040000000000000036 ~1.86 ~-584215296.0 ~0.0 ~-811598784.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~3.33 ~0.1499999999999999 ~0.64 ~-850329792.0 ~0.0 ~-526250016.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~3.32 ~0.07000000000000006 ~-0.68 ~-986989568.0 ~0.0 ~-160784256.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~2.81 ~-0.1399999999999999 ~-1.9 ~-973388928.0 ~0.0 ~229159184.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~1.86 ~-0.04999999999999982 ~-2.83 ~-811598784.0 ~0.0 ~584215104.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.64 ~0.0 ~-3.33 ~-526249760.0 ~0.0 ~850329984.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.68 ~-0.020000000000000018 ~-3.32 ~-160784144.0 ~0.0 ~986989568.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-1.9 ~-0.09000000000000008 ~-2.81 ~229159072.0 ~0.0 ~973388928.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-2.83 ~-0.10999999999999988 ~-1.86 ~584215424.0 ~0.0 ~811598720.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-3.33 ~-0.040000000000000036 ~-0.64 ~850330048.0 ~0.0 ~526249696.0 0.00000000022 0 force @a[distance=..32] +particle fishing ~-3.32 ~0.030000000000000027 ~0.68 ~986989568.0 ~0.0 ~160784480.0 0.00000000022 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-2.3 ~-0.0 ~1000000000.0 ~-2.3 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.45 ~0.0 ~-2.25 ~-0.45 ~1000000000.0 ~-2.25 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.88 ~0.0 ~-2.12 ~-0.88 ~1000000000.0 ~-2.12 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.28 ~0.0 ~-1.91 ~-1.28 ~1000000000.0 ~-1.91 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.62 ~0.0 ~-1.62 ~-1.62 ~1000000000.0 ~-1.62 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~-1.28 ~-1.91 ~1000000000.0 ~-1.28 0.00000000013 0 force @a[distance=..32] +particle fishing ~-2.12 ~0.0 ~-0.88 ~-2.12 ~1000000000.0 ~-0.88 0.00000000013 0 force @a[distance=..32] +particle fishing ~-2.25 ~0.0 ~-0.45 ~-2.25 ~1000000000.0 ~-0.45 0.00000000012 0 force @a[distance=..32] +particle fishing ~-2.3 ~0.0 ~0.0 ~-2.3 ~1000000000.0 ~0.0 0.00000000017 0 force @a[distance=..32] +particle fishing ~-2.25 ~0.0 ~0.45 ~-2.25 ~999999936.0 ~0.45 0.00000000016 0 force @a[distance=..32] +particle fishing ~-2.12 ~0.0 ~0.88 ~-2.12 ~1000000000.0 ~0.88 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.91 ~0.0 ~1.28 ~-1.91 ~1000000000.0 ~1.28 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.62 ~0.0 ~1.62 ~-1.62 ~1000000000.0 ~1.62 0.00000000024 0 force @a[distance=..32] +particle fishing ~-1.28 ~0.0 ~1.91 ~-1.28 ~1000000000.0 ~1.91 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.88 ~0.0 ~2.12 ~-0.88 ~1000000000.0 ~2.12 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.45 ~0.0 ~2.25 ~-0.45 ~1000000000.0 ~2.25 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~2.3 ~0.0 ~1000000000.0 ~2.3 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.45 ~0.0 ~2.25 ~0.45 ~1000000000.0 ~2.25 0.00000000018 0 force @a[distance=..32] +particle fishing ~0.88 ~0.0 ~2.12 ~0.88 ~1000000000.0 ~2.12 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.28 ~0.0 ~1.91 ~1.28 ~1000000000.0 ~1.91 0.00000000011 0 force @a[distance=..32] +particle fishing ~1.62 ~0.0 ~1.62 ~1.62 ~1000000000.0 ~1.62 0.00000000022 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~1.28 ~1.91 ~1000000000.0 ~1.28 0.00000000024 0 force @a[distance=..32] +particle fishing ~2.12 ~0.0 ~0.88 ~2.12 ~1000000000.0 ~0.88 0.00000000005 0 force @a[distance=..32] +particle fishing ~2.25 ~0.0 ~0.45 ~2.25 ~1000000000.0 ~0.45 0.00000000022 0 force @a[distance=..32] +particle fishing ~2.3 ~0.0 ~-0.0 ~2.3 ~1000000000.0 ~-0.0 0.00000000003 0 force @a[distance=..32] +particle fishing ~2.25 ~0.0 ~-0.45 ~2.25 ~1000000000.0 ~-0.45 0.00000000023 0 force @a[distance=..32] +particle fishing ~2.12 ~0.0 ~-0.88 ~2.12 ~1000000000.0 ~-0.88 0.00000000013 0 force @a[distance=..32] +particle fishing ~1.91 ~0.0 ~-1.28 ~1.91 ~1000000000.0 ~-1.28 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.62 ~0.0 ~-1.62 ~1.62 ~1000000000.0 ~-1.62 0.00000000019 0 force @a[distance=..32] +particle fishing ~1.28 ~0.0 ~-1.91 ~1.28 ~1000000000.0 ~-1.91 0.00000000024 0 force @a[distance=..32] +particle fishing ~0.88 ~0.0 ~-2.12 ~0.88 ~1000000000.0 ~-2.12 0.00000000024 0 force @a[distance=..32] +particle fishing ~0.45 ~0.0 ~-2.25 ~0.45 ~1000000000.0 ~-2.25 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-0.81 ~-0.0 ~1000000000.0 ~-0.81 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.16 ~0.0 ~-0.79 ~-0.16 ~1000000000.0 ~-0.79 0.00000000039 0 force @a[distance=..32] +particle fishing ~-0.31 ~0.0 ~-0.74 ~-0.31 ~1000000000.0 ~-0.74 0.00000000029 0 force @a[distance=..32] +particle fishing ~-0.45 ~0.0 ~-0.67 ~-0.45 ~1000000000.0 ~-0.67 0.00000000033 0 force @a[distance=..32] +particle fishing ~-0.57 ~0.0 ~-0.57 ~-0.57 ~1000000000.0 ~-0.57 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.67 ~0.0 ~-0.45 ~-0.67 ~1000000000.0 ~-0.45 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.74 ~0.0 ~-0.31 ~-0.74 ~1000000000.0 ~-0.31 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.79 ~0.0 ~-0.16 ~-0.79 ~1000000000.0 ~-0.16 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.81 ~0.0 ~0.0 ~-0.81 ~1000000000.0 ~0.0 0.00000000039 0 force @a[distance=..32] +particle fishing ~-0.79 ~0.0 ~0.16 ~-0.79 ~1000000000.0 ~0.16 0.00000000039 0 force @a[distance=..32] +particle fishing ~-0.74 ~0.0 ~0.31 ~-0.74 ~999999936.0 ~0.31 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.67 ~0.0 ~0.45 ~-0.67 ~1000000000.0 ~0.45 0.00000000039 0 force @a[distance=..32] +particle fishing ~-0.57 ~0.0 ~0.57 ~-0.57 ~999999936.0 ~0.57 0.00000000039 0 force @a[distance=..32] +particle fishing ~-0.45 ~0.0 ~0.67 ~-0.45 ~1000000000.0 ~0.67 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.31 ~0.0 ~0.74 ~-0.31 ~1000000000.0 ~0.74 0.00000000021 0 force @a[distance=..32] +particle fishing ~-0.16 ~0.0 ~0.79 ~-0.16 ~1000000000.0 ~0.79 0.00000000011 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~0.81 ~0.0 ~1000000000.0 ~0.81 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.16 ~0.0 ~0.79 ~0.16 ~1000000000.0 ~0.79 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.31 ~0.0 ~0.74 ~0.31 ~1000000000.0 ~0.74 0.00000000039 0 force @a[distance=..32] +particle fishing ~0.45 ~0.0 ~0.67 ~0.45 ~1000000000.0 ~0.67 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.57 ~0.0 ~0.57 ~0.57 ~1000000000.0 ~0.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.67 ~0.0 ~0.45 ~0.67 ~1000000000.0 ~0.45 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.74 ~0.0 ~0.31 ~0.74 ~1000000000.0 ~0.31 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.79 ~0.0 ~0.16 ~0.79 ~1000000000.0 ~0.16 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.81 ~0.0 ~-0.0 ~0.81 ~1000000000.0 ~-0.0 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.79 ~0.0 ~-0.16 ~0.79 ~1000000000.0 ~-0.16 0.00000000039 0 force @a[distance=..32] +particle fishing ~0.74 ~0.0 ~-0.31 ~0.74 ~1000000000.0 ~-0.31 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.67 ~0.0 ~-0.45 ~0.67 ~1000000000.0 ~-0.45 0.00000000011 0 force @a[distance=..32] +particle fishing ~0.57 ~0.0 ~-0.57 ~0.57 ~1000000000.0 ~-0.57 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.45 ~0.0 ~-0.67 ~0.45 ~1000000000.0 ~-0.67 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.31 ~0.0 ~-0.74 ~0.31 ~1000000000.0 ~-0.74 0.00000000023 0 force @a[distance=..32] +particle fishing ~0.16 ~0.0 ~-0.79 ~0.16 ~999999936.0 ~-0.79 0.00000000033 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_015.mcfunction new file mode 100644 index 000000000..dfeeedf9f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_015.mcfunction @@ -0,0 +1,86 @@ +# frame 15 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.829 0 +# 2_circle +particle fishing ~0.17 ~-0.1399999999999999 ~-1.39 ~842948480.0 ~0.0 ~537994304.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.040000000000000036 ~-1.35 ~984664320.0 ~0.0 ~174459472.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.86 ~-0.050000000000000044 ~-1.11 ~976474112.0 ~0.0 ~-215635216.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-1.22 ~0.0 ~-0.69 ~819624448.0 ~0.0 ~-572901312.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-1.39 ~0.050000000000000044 ~-0.17 ~537994240.0 ~0.0 ~-842948480.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-1.35 ~0.020000000000000018 ~0.37 ~174459376.0 ~0.0 ~-984664384.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-1.11 ~-0.08000000000000007 ~0.86 ~-215635216.0 ~0.0 ~-976474112.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.69 ~-0.029999999999999805 ~1.22 ~-572901504.0 ~0.0 ~-819624256.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.17 ~-0.1499999999999999 ~1.39 ~-842948544.0 ~0.0 ~-537994240.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.37 ~-0.07999999999999985 ~1.35 ~-984664320.0 ~0.0 ~-174459488.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.86 ~0.019999999999999796 ~1.11 ~-976473984.0 ~0.0 ~215635360.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.22 ~-0.1299999999999999 ~0.69 ~-819624192.0 ~0.0 ~572901632.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.39 ~-0.09000000000000008 ~0.17 ~-537994304.0 ~0.0 ~842948480.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.35 ~0.010000000000000009 ~-0.37 ~-174459296.0 ~0.0 ~984664384.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.11 ~-0.040000000000000036 ~-0.86 ~215635456.0 ~0.0 ~976473920.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.69 ~-0.04999999999999982 ~-1.22 ~572901312.0 ~0.0 ~819624320.0 0.00000000012 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-1.9 ~-0.0 ~999999936.0 ~-1.9 0.00000000007 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.0 ~-1.86 ~-0.37 ~1000000000.0 ~-1.86 0.00000000026 0 force @a[distance=..32] +particle fishing ~-0.73 ~0.0 ~-1.75 ~-0.73 ~1000000000.0 ~-1.75 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.05 ~0.0 ~-1.58 ~-1.05 ~1000000000.0 ~-1.58 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.34 ~0.0 ~-1.34 ~-1.34 ~999999936.0 ~-1.34 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.58 ~0.0 ~-1.05 ~-1.58 ~1000000000.0 ~-1.05 0.00000000015 0 force @a[distance=..32] +particle fishing ~-1.75 ~0.0 ~-0.73 ~-1.75 ~1000000000.0 ~-0.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.86 ~0.0 ~-0.37 ~-1.86 ~1000000000.0 ~-0.37 0.00000000026 0 force @a[distance=..32] +particle fishing ~-1.9 ~0.0 ~0.0 ~-1.9 ~1000000000.0 ~0.0 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.86 ~0.0 ~0.37 ~-1.86 ~1000000000.0 ~0.37 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.75 ~0.0 ~0.73 ~-1.75 ~1000000000.0 ~0.73 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.58 ~0.0 ~1.05 ~-1.58 ~1000000000.0 ~1.05 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.34 ~0.0 ~1.34 ~-1.34 ~1000000000.0 ~1.34 0.00000000021 0 force @a[distance=..32] +particle fishing ~-1.05 ~0.0 ~1.58 ~-1.05 ~1000000000.0 ~1.58 0.00000000026 0 force @a[distance=..32] +particle fishing ~-0.73 ~0.0 ~1.75 ~-0.73 ~1000000000.0 ~1.75 0.00000000010 0 force @a[distance=..32] +particle fishing ~-0.37 ~0.0 ~1.86 ~-0.37 ~1000000000.0 ~1.86 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.9 ~0.0 ~1000000000.0 ~1.9 0.00000000015 0 force @a[distance=..32] +particle fishing ~0.37 ~0.0 ~1.86 ~0.37 ~1000000000.0 ~1.86 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.73 ~0.0 ~1.75 ~0.73 ~1000000000.0 ~1.75 0.00000000026 0 force @a[distance=..32] +particle fishing ~1.05 ~0.0 ~1.58 ~1.05 ~1000000000.0 ~1.58 0.00000000006 0 force @a[distance=..32] +particle fishing ~1.34 ~0.0 ~1.34 ~1.34 ~1000000000.0 ~1.34 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.58 ~0.0 ~1.05 ~1.58 ~1000000000.0 ~1.05 0.00000000026 0 force @a[distance=..32] +particle fishing ~1.75 ~0.0 ~0.73 ~1.75 ~1000000000.0 ~0.73 0.00000000004 0 force @a[distance=..32] +particle fishing ~1.86 ~0.0 ~0.37 ~1.86 ~1000000000.0 ~0.37 0.00000000026 0 force @a[distance=..32] +particle fishing ~1.9 ~0.0 ~-0.0 ~1.9 ~1000000000.0 ~-0.0 0.00000000023 0 force @a[distance=..32] +particle fishing ~1.86 ~0.0 ~-0.37 ~1.86 ~999999936.0 ~-0.37 0.00000000003 0 force @a[distance=..32] +particle fishing ~1.75 ~0.0 ~-0.73 ~1.75 ~1000000000.0 ~-0.73 0.00000000007 0 force @a[distance=..32] +particle fishing ~1.58 ~0.0 ~-1.05 ~1.58 ~1000000000.0 ~-1.05 0.00000000021 0 force @a[distance=..32] +particle fishing ~1.34 ~0.0 ~-1.34 ~1.34 ~1000000000.0 ~-1.34 0.00000000023 0 force @a[distance=..32] +particle fishing ~1.05 ~0.0 ~-1.58 ~1.05 ~1000000000.0 ~-1.58 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.73 ~0.0 ~-1.75 ~0.73 ~1000000000.0 ~-1.75 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.37 ~0.0 ~-1.86 ~0.37 ~1000000000.0 ~-1.86 0.00000000001 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~-0.36 ~-0.0 ~1000000000.0 ~-0.36 0.00000000017 0 force @a[distance=..32] +particle fishing ~-0.07 ~0.0 ~-0.35 ~-0.07 ~1000000000.0 ~-0.35 0.00000000006 0 force @a[distance=..32] +particle fishing ~-0.14 ~0.0 ~-0.33 ~-0.14 ~1000000000.0 ~-0.33 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.2 ~0.0 ~-0.3 ~-0.2 ~1000000000.0 ~-0.3 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.26 ~0.0 ~-0.26 ~-0.26 ~1000000000.0 ~-0.26 0.00000000043 0 force @a[distance=..32] +particle fishing ~-0.3 ~0.0 ~-0.2 ~-0.3 ~999999936.0 ~-0.2 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.33 ~0.0 ~-0.14 ~-0.33 ~1000000000.0 ~-0.14 0.00000000003 0 force @a[distance=..32] +particle fishing ~-0.35 ~0.0 ~-0.07 ~-0.35 ~1000000000.0 ~-0.07 0.00000000039 0 force @a[distance=..32] +particle fishing ~-0.36 ~0.0 ~0.0 ~-0.36 ~1000000000.0 ~0.0 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.35 ~0.0 ~0.07 ~-0.35 ~1000000000.0 ~0.07 0.00000000034 0 force @a[distance=..32] +particle fishing ~-0.33 ~0.0 ~0.14 ~-0.33 ~1000000000.0 ~0.14 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.3 ~0.0 ~0.2 ~-0.3 ~1000000000.0 ~0.2 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.26 ~0.0 ~0.26 ~-0.26 ~1000000000.0 ~0.26 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.2 ~0.0 ~0.3 ~-0.2 ~1000000000.0 ~0.3 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.14 ~0.0 ~0.33 ~-0.14 ~1000000000.0 ~0.33 0.00000000043 0 force @a[distance=..32] +particle fishing ~-0.07 ~0.0 ~0.35 ~-0.07 ~1000000000.0 ~0.35 0.00000000024 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~0.36 ~0.0 ~1000000000.0 ~0.36 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.07 ~0.0 ~0.35 ~0.07 ~1000000000.0 ~0.35 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.14 ~0.0 ~0.33 ~0.14 ~1000000000.0 ~0.33 0.00000000043 0 force @a[distance=..32] +particle fishing ~0.2 ~0.0 ~0.3 ~0.2 ~1000000000.0 ~0.3 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.26 ~0.0 ~0.26 ~0.26 ~1000000000.0 ~0.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.3 ~0.0 ~0.2 ~0.3 ~1000000000.0 ~0.2 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.33 ~0.0 ~0.14 ~0.33 ~1000000000.0 ~0.14 0.00000000007 0 force @a[distance=..32] +particle fishing ~0.35 ~0.0 ~0.07 ~0.35 ~1000000000.0 ~0.07 0.00000000043 0 force @a[distance=..32] +particle fishing ~0.36 ~0.0 ~-0.0 ~0.36 ~1000000000.0 ~-0.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.35 ~0.0 ~-0.07 ~0.35 ~1000000000.0 ~-0.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.33 ~0.0 ~-0.14 ~0.33 ~1000000000.0 ~-0.14 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.3 ~0.0 ~-0.2 ~0.3 ~1000000000.0 ~-0.2 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.26 ~0.0 ~-0.26 ~0.26 ~1000000000.0 ~-0.26 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.2 ~0.0 ~-0.3 ~0.2 ~1000000000.0 ~-0.3 0.00000000022 0 force @a[distance=..32] +particle fishing ~0.14 ~0.0 ~-0.33 ~0.14 ~999999936.0 ~-0.33 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.07 ~0.0 ~-0.35 ~0.07 ~1000000000.0 ~-0.35 0.00000000028 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_016.mcfunction new file mode 100644 index 000000000..6984c21da --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_016.mcfunction @@ -0,0 +1,86 @@ +# frame 16 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.763 0 +# 2_circle +particle fishing ~1.05 ~0.09999999999999987 ~-1.6 ~960927872.0 ~0.0 ~-276799168.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.36 ~0.010000000000000009 ~-1.88 ~781855040.0 ~0.0 ~-623460224.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-0.39 ~0.039999999999999813 ~-1.88 ~483752000.0 ~0.0 ~-875205120.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.08 ~-0.020000000000000018 ~-1.59 ~112002072.0 ~0.0 ~-993708032.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.6 ~0.020000000000000018 ~-1.05 ~-276799232.0 ~0.0 ~-960927744.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.88 ~-0.07000000000000006 ~-0.36 ~-623460224.0 ~0.0 ~-781855168.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.88 ~-0.009999999999999787 ~0.39 ~-875205120.0 ~0.0 ~-483752000.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.59 ~0.05999999999999983 ~1.08 ~-993708032.0 ~0.0 ~-112001888.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-1.05 ~0.07999999999999985 ~1.6 ~-960927744.0 ~0.0 ~276799296.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~-0.36 ~-0.040000000000000036 ~1.88 ~-781855104.0 ~0.0 ~623460224.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.39 ~-0.020000000000000018 ~1.88 ~-483751840.0 ~0.0 ~875205184.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.08 ~0.10999999999999988 ~1.59 ~-112001688.0 ~0.0 ~993707968.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.6 ~0.030000000000000027 ~1.05 ~276799168.0 ~0.0 ~960927872.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.88 ~-0.010000000000000009 ~0.36 ~623460416.0 ~0.0 ~781854912.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.88 ~0.0 ~-0.39 ~875205248.0 ~0.0 ~483751744.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.59 ~0.10999999999999988 ~-1.08 ~993708032.0 ~0.0 ~112002056.0 0.00000000010 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-1.5 ~-0.0 ~1000000000.0 ~-1.5 0.00000000026 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.0 ~-1.47 ~-0.29 ~1000000000.0 ~-1.47 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.57 ~0.0 ~-1.38 ~-0.57 ~1000000000.0 ~-1.38 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.83 ~0.0 ~-1.24 ~-0.83 ~1000000000.0 ~-1.24 0.00000000008 0 force @a[distance=..32] +particle fishing ~-1.06 ~0.0 ~-1.06 ~-1.06 ~1000000000.0 ~-1.06 0.00000000027 0 force @a[distance=..32] +particle fishing ~-1.24 ~0.0 ~-0.83 ~-1.24 ~1000000000.0 ~-0.83 0.00000000020 0 force @a[distance=..32] +particle fishing ~-1.38 ~0.0 ~-0.57 ~-1.38 ~1000000000.0 ~-0.57 0.00000000028 0 force @a[distance=..32] +particle fishing ~-1.47 ~0.0 ~-0.29 ~-1.47 ~1000000000.0 ~-0.29 0.00000000028 0 force @a[distance=..32] +particle fishing ~-1.5 ~0.0 ~0.0 ~-1.5 ~999999936.0 ~0.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.47 ~0.0 ~0.29 ~-1.47 ~1000000000.0 ~0.29 0.00000000016 0 force @a[distance=..32] +particle fishing ~-1.38 ~0.0 ~0.57 ~-1.38 ~1000000000.0 ~0.57 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.24 ~0.0 ~0.83 ~-1.24 ~1000000000.0 ~0.83 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.06 ~0.0 ~1.06 ~-1.06 ~1000000000.0 ~1.06 0.00000000011 0 force @a[distance=..32] +particle fishing ~-0.83 ~0.0 ~1.24 ~-0.83 ~1000000000.0 ~1.24 0.00000000028 0 force @a[distance=..32] +particle fishing ~-0.57 ~0.0 ~1.38 ~-0.57 ~1000000000.0 ~1.38 0.00000000010 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.0 ~1.47 ~-0.29 ~1000000000.0 ~1.47 0.00000000028 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.5 ~0.0 ~999999936.0 ~1.5 0.00000000008 0 force @a[distance=..32] +particle fishing ~0.29 ~0.0 ~1.47 ~0.29 ~1000000000.0 ~1.47 0.00000000016 0 force @a[distance=..32] +particle fishing ~0.57 ~0.0 ~1.38 ~0.57 ~999999936.0 ~1.38 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.83 ~0.0 ~1.24 ~0.83 ~1000000000.0 ~1.24 0.00000000019 0 force @a[distance=..32] +particle fishing ~1.06 ~0.0 ~1.06 ~1.06 ~1000000000.0 ~1.06 0.00000000028 0 force @a[distance=..32] +particle fishing ~1.24 ~0.0 ~0.83 ~1.24 ~1000000000.0 ~0.83 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.38 ~0.0 ~0.57 ~1.38 ~1000000000.0 ~0.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.47 ~0.0 ~0.29 ~1.47 ~1000000000.0 ~0.29 0.00000000028 0 force @a[distance=..32] +particle fishing ~1.5 ~0.0 ~-0.0 ~1.5 ~1000000000.0 ~-0.0 0.00000000010 0 force @a[distance=..32] +particle fishing ~1.47 ~0.0 ~-0.29 ~1.47 ~1000000000.0 ~-0.29 0.00000000025 0 force @a[distance=..32] +particle fishing ~1.38 ~0.0 ~-0.57 ~1.38 ~1000000000.0 ~-0.57 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.24 ~0.0 ~-0.83 ~1.24 ~1000000000.0 ~-0.83 0.00000000012 0 force @a[distance=..32] +particle fishing ~1.06 ~0.0 ~-1.06 ~1.06 ~1000000000.0 ~-1.06 0.00000000017 0 force @a[distance=..32] +particle fishing ~0.83 ~0.0 ~-1.24 ~0.83 ~1000000000.0 ~-1.24 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.57 ~0.0 ~-1.38 ~0.57 ~1000000000.0 ~-1.38 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.29 ~0.0 ~-1.47 ~0.29 ~1000000000.0 ~-1.47 0.00000000017 0 force @a[distance=..32] +# 3_circle2 +particle fishing ~-0.0 ~0.0 ~0.09 ~-0.0 ~1000000000.0 ~0.09 0.00000000045 0 force @a[distance=..32] +particle fishing ~0.02 ~0.0 ~0.08 ~0.02 ~1000000000.0 ~0.08 0.00000000034 0 force @a[distance=..32] +particle fishing ~0.03 ~0.0 ~0.08 ~0.03 ~1000000000.0 ~0.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.05 ~0.0 ~0.07 ~0.05 ~1000000000.0 ~0.07 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.06 ~0.0 ~0.06 ~0.06 ~1000000000.0 ~0.06 0.00000000046 0 force @a[distance=..32] +particle fishing ~0.07 ~0.0 ~0.05 ~0.07 ~999999936.0 ~0.05 0.00000000037 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~0.03 ~0.08 ~999999936.0 ~0.03 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~0.02 ~0.08 ~1000000000.0 ~0.02 0.00000000043 0 force @a[distance=..32] +particle fishing ~0.09 ~0.0 ~-0.0 ~0.09 ~1000000000.0 ~-0.0 0.00000000012 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~-0.02 ~0.08 ~1000000000.0 ~-0.02 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~-0.03 ~0.08 ~999999936.0 ~-0.03 0.00000000028 0 force @a[distance=..32] +particle fishing ~0.07 ~0.0 ~-0.05 ~0.07 ~1000000000.0 ~-0.05 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.06 ~0.0 ~-0.06 ~0.06 ~999999936.0 ~-0.06 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.05 ~0.0 ~-0.07 ~0.05 ~999999936.0 ~-0.07 0.00000000017 0 force @a[distance=..32] +particle fishing ~0.03 ~0.0 ~-0.08 ~0.03 ~1000000000.0 ~-0.08 0.00000000021 0 force @a[distance=..32] +particle fishing ~0.02 ~0.0 ~-0.08 ~0.02 ~1000000000.0 ~-0.08 0.00000000041 0 force @a[distance=..32] +particle fishing ~-0.0 ~0.0 ~-0.09 ~-0.0 ~1000000000.0 ~-0.09 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.02 ~0.0 ~-0.08 ~-0.02 ~1000000000.0 ~-0.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.03 ~0.0 ~-0.08 ~-0.03 ~1000000000.0 ~-0.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.05 ~0.0 ~-0.07 ~-0.05 ~1000000000.0 ~-0.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.06 ~0.0 ~-0.06 ~-0.06 ~1000000000.0 ~-0.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.07 ~0.0 ~-0.05 ~-0.07 ~1000000000.0 ~-0.05 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~-0.03 ~-0.08 ~999999936.0 ~-0.03 0.00000000033 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~-0.02 ~-0.08 ~1000000000.0 ~-0.02 0.00000000046 0 force @a[distance=..32] +particle fishing ~-0.09 ~0.0 ~0.0 ~-0.09 ~1000000000.0 ~0.0 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~0.02 ~-0.08 ~1000000000.0 ~0.02 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~0.03 ~-0.08 ~1000000000.0 ~0.03 0.00000000046 0 force @a[distance=..32] +particle fishing ~-0.07 ~0.0 ~0.05 ~-0.07 ~1000000000.0 ~0.05 0.00000000046 0 force @a[distance=..32] +particle fishing ~-0.06 ~0.0 ~0.06 ~-0.06 ~1000000000.0 ~0.06 0.00000000046 0 force @a[distance=..32] +particle fishing ~-0.05 ~0.0 ~0.07 ~-0.05 ~1000000000.0 ~0.07 0.00000000023 0 force @a[distance=..32] +particle fishing ~-0.03 ~0.0 ~0.08 ~-0.03 ~1000000000.0 ~0.08 0.00000000042 0 force @a[distance=..32] +particle fishing ~-0.02 ~0.0 ~0.08 ~-0.02 ~1000000000.0 ~0.08 0.00000000046 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_017.mcfunction new file mode 100644 index 000000000..482598e82 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_017.mcfunction @@ -0,0 +1,53 @@ +# frame 17 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.696 0 +# 2_circle +particle fishing ~0.28 ~-0.18999999999999995 ~-0.12 ~653464832.0 ~0.0 ~-756956864.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.22 ~0.1200000000000001 ~-0.22 ~314047968.0 ~0.0 ~-949407104.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.11 ~-0.04999999999999982 ~-0.29 ~-73179896.0 ~0.0 ~-997318720.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.0 ~0.07000000000000006 ~-0.31 ~-449266752.0 ~0.0 ~-893397696.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.12 ~0.06000000000000005 ~-0.28 ~-756956928.0 ~0.0 ~-653464832.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.22 ~-0.039999999999999813 ~-0.22 ~-949407168.0 ~0.0 ~-314047872.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.040000000000000036 ~-0.11 ~-997318720.0 ~0.0 ~73179896.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.31 ~0.09999999999999987 ~0.0 ~-893397632.0 ~0.0 ~449266944.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.28 ~-0.11999999999999988 ~0.12 ~-653464768.0 ~0.0 ~756956928.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.22 ~0.10000000000000009 ~0.22 ~-314048000.0 ~0.0 ~949407104.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.11 ~-0.030000000000000027 ~0.29 ~73180064.0 ~0.0 ~997318720.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.0 ~0.050000000000000044 ~0.31 ~449267104.0 ~0.0 ~893397504.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.12 ~-0.09999999999999987 ~0.28 ~756956864.0 ~0.0 ~653464832.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.22 ~0.0 ~0.22 ~949407232.0 ~0.0 ~314047776.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.29 ~-0.1299999999999999 ~0.11 ~997318720.0 ~0.0 ~-73180232.0 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.31 ~0.10000000000000009 ~-0.0 ~893397696.0 ~0.0 ~-449266784.0 0.00000000025 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-1.09 ~-0.0 ~999999936.0 ~-1.09 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.21 ~0.0 ~-1.07 ~-0.21 ~999999936.0 ~-1.07 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.42 ~0.0 ~-1.01 ~-0.42 ~999999936.0 ~-1.01 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.61 ~0.0 ~-0.91 ~-0.61 ~1000000000.0 ~-0.91 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.77 ~0.0 ~-0.77 ~-0.77 ~999999936.0 ~-0.77 0.00000000030 0 force @a[distance=..32] +particle fishing ~-0.91 ~0.0 ~-0.61 ~-0.91 ~1000000000.0 ~-0.61 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.01 ~0.0 ~-0.42 ~-1.01 ~1000000000.0 ~-0.42 0.00000000001 0 force @a[distance=..32] +particle fishing ~-1.07 ~0.0 ~-0.21 ~-1.07 ~1000000000.0 ~-0.21 0.00000000014 0 force @a[distance=..32] +particle fishing ~-1.09 ~0.0 ~0.0 ~-1.09 ~1000000000.0 ~0.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-1.07 ~0.0 ~0.21 ~-1.07 ~999999936.0 ~0.21 0.00000000030 0 force @a[distance=..32] +particle fishing ~-1.01 ~0.0 ~0.42 ~-1.01 ~1000000000.0 ~0.42 0.00000000015 0 force @a[distance=..32] +particle fishing ~-0.91 ~0.0 ~0.61 ~-0.91 ~1000000000.0 ~0.61 0.00000000021 0 force @a[distance=..32] +particle fishing ~-0.77 ~0.0 ~0.77 ~-0.77 ~1000000000.0 ~0.77 0.00000000005 0 force @a[distance=..32] +particle fishing ~-0.61 ~0.0 ~0.91 ~-0.61 ~1000000000.0 ~0.91 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.42 ~0.0 ~1.01 ~-0.42 ~1000000000.0 ~1.01 0.00000000019 0 force @a[distance=..32] +particle fishing ~-0.21 ~0.0 ~1.07 ~-0.21 ~999999936.0 ~1.07 0.00000000030 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~1.09 ~0.0 ~999999936.0 ~1.09 0.00000000030 0 force @a[distance=..32] +particle fishing ~0.21 ~0.0 ~1.07 ~0.21 ~1000000000.0 ~1.07 0.00000000029 0 force @a[distance=..32] +particle fishing ~0.42 ~0.0 ~1.01 ~0.42 ~999999936.0 ~1.01 0.00000000030 0 force @a[distance=..32] +particle fishing ~0.61 ~0.0 ~0.91 ~0.61 ~1000000000.0 ~0.91 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.77 ~0.0 ~0.77 ~0.77 ~1000000000.0 ~0.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.91 ~0.0 ~0.61 ~0.91 ~1000000000.0 ~0.61 0.00000000017 0 force @a[distance=..32] +particle fishing ~1.01 ~0.0 ~0.42 ~1.01 ~1000000000.0 ~0.42 0.00000000023 0 force @a[distance=..32] +particle fishing ~1.07 ~0.0 ~0.21 ~1.07 ~1000000000.0 ~0.21 0.00000000001 0 force @a[distance=..32] +particle fishing ~1.09 ~0.0 ~-0.0 ~1.09 ~1000000000.0 ~-0.0 0.00000000014 0 force @a[distance=..32] +particle fishing ~1.07 ~0.0 ~-0.21 ~1.07 ~1000000000.0 ~-0.21 0.00000000020 0 force @a[distance=..32] +particle fishing ~1.01 ~0.0 ~-0.42 ~1.01 ~999999936.0 ~-0.42 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.91 ~0.0 ~-0.61 ~0.91 ~1000000000.0 ~-0.61 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.77 ~0.0 ~-0.77 ~0.77 ~1000000000.0 ~-0.77 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.61 ~0.0 ~-0.91 ~0.61 ~1000000000.0 ~-0.91 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.42 ~0.0 ~-1.01 ~0.42 ~999999936.0 ~-1.01 0.00000000005 0 force @a[distance=..32] +particle fishing ~0.21 ~0.0 ~-1.07 ~0.21 ~1000000000.0 ~-1.07 0.00000000024 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_018.mcfunction new file mode 100644 index 000000000..57a65b877 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_018.mcfunction @@ -0,0 +1,53 @@ +# frame 18 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.63 0 +# 2_circle +particle fishing ~-0.61 ~-0.1399999999999999 ~2.41 ~439319040.0 ~0.0 ~-898331136.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~0.36 ~0.10999999999999988 ~2.46 ~62101348.0 ~0.0 ~-998069824.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~1.27 ~0.10999999999999988 ~2.14 ~-324570592.0 ~0.0 ~-945861504.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~1.99 ~0.010000000000000009 ~1.49 ~-661829568.0 ~0.0 ~-749654208.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~2.41 ~-0.030000000000000027 ~0.61 ~-898331136.0 ~0.0 ~-439318912.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~2.46 ~-0.16999999999999993 ~-0.36 ~-998069824.0 ~0.0 ~-62101284.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~2.14 ~0.040000000000000036 ~-1.27 ~-945861504.0 ~0.0 ~324570592.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~1.49 ~-0.11999999999999988 ~-1.99 ~-749654144.0 ~0.0 ~661829824.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~0.61 ~0.06999999999999984 ~-2.41 ~-439318880.0 ~0.0 ~898331136.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-0.36 ~-0.1200000000000001 ~-2.46 ~-62101360.0 ~0.0 ~998069824.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-1.27 ~0.020000000000000018 ~-2.14 ~324570752.0 ~0.0 ~945861376.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-1.99 ~-0.009999999999999787 ~-1.49 ~661829888.0 ~0.0 ~749654080.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-2.41 ~0.030000000000000027 ~-0.61 ~898331136.0 ~0.0 ~439319040.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-2.46 ~-0.030000000000000027 ~0.36 ~998069952.0 ~0.0 ~62101204.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-2.14 ~-0.04999999999999982 ~1.27 ~945861376.0 ~0.0 ~-324570880.0 0.00000000047 0 force @a[distance=..32] +particle fishing ~-1.49 ~-0.040000000000000036 ~1.99 ~749654208.0 ~0.0 ~-661829568.0 0.00000000047 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-0.69 ~-0.0 ~999999936.0 ~-0.69 0.00000000020 0 force @a[distance=..32] +particle fishing ~-0.13 ~0.0 ~-0.68 ~-0.13 ~1000000000.0 ~-0.68 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.26 ~0.0 ~-0.64 ~-0.26 ~1000000000.0 ~-0.64 0.00000000012 0 force @a[distance=..32] +particle fishing ~-0.38 ~0.0 ~-0.57 ~-0.38 ~1000000000.0 ~-0.57 0.00000000003 0 force @a[distance=..32] +particle fishing ~-0.49 ~0.0 ~-0.49 ~-0.49 ~1000000000.0 ~-0.49 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.57 ~0.0 ~-0.38 ~-0.57 ~1000000000.0 ~-0.38 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.64 ~0.0 ~-0.26 ~-0.64 ~999999936.0 ~-0.26 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.68 ~0.0 ~-0.13 ~-0.68 ~999999936.0 ~-0.13 0.00000000019 0 force @a[distance=..32] +particle fishing ~-0.69 ~0.0 ~0.0 ~-0.69 ~1000000000.0 ~0.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.68 ~0.0 ~0.13 ~-0.68 ~1000000000.0 ~0.13 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.64 ~0.0 ~0.26 ~-0.64 ~1000000000.0 ~0.26 0.00000000033 0 force @a[distance=..32] +particle fishing ~-0.57 ~0.0 ~0.38 ~-0.57 ~1000000000.0 ~0.38 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.49 ~0.0 ~0.49 ~-0.49 ~1000000000.0 ~0.49 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.38 ~0.0 ~0.57 ~-0.38 ~1000000000.0 ~0.57 0.00000000023 0 force @a[distance=..32] +particle fishing ~-0.26 ~0.0 ~0.64 ~-0.26 ~1000000000.0 ~0.64 0.00000000008 0 force @a[distance=..32] +particle fishing ~-0.13 ~0.0 ~0.68 ~-0.13 ~1000000000.0 ~0.68 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~0.69 ~0.0 ~1000000000.0 ~0.69 0.00000000004 0 force @a[distance=..32] +particle fishing ~0.13 ~0.0 ~0.68 ~0.13 ~1000000000.0 ~0.68 0.00000000033 0 force @a[distance=..32] +particle fishing ~0.26 ~0.0 ~0.64 ~0.26 ~999999936.0 ~0.64 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.38 ~0.0 ~0.57 ~0.38 ~1000000000.0 ~0.57 0.00000000021 0 force @a[distance=..32] +particle fishing ~0.49 ~0.0 ~0.49 ~0.49 ~1000000000.0 ~0.49 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.57 ~0.0 ~0.38 ~0.57 ~999999936.0 ~0.38 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.64 ~0.0 ~0.26 ~0.64 ~1000000000.0 ~0.26 0.00000000011 0 force @a[distance=..32] +particle fishing ~0.68 ~0.0 ~0.13 ~0.68 ~1000000000.0 ~0.13 0.00000000024 0 force @a[distance=..32] +particle fishing ~0.69 ~0.0 ~-0.0 ~0.69 ~1000000000.0 ~-0.0 0.00000000019 0 force @a[distance=..32] +particle fishing ~0.68 ~0.0 ~-0.13 ~0.68 ~1000000000.0 ~-0.13 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.64 ~0.0 ~-0.26 ~0.64 ~1000000000.0 ~-0.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.57 ~0.0 ~-0.38 ~0.57 ~1000000000.0 ~-0.38 0.00000000020 0 force @a[distance=..32] +particle fishing ~0.49 ~0.0 ~-0.49 ~0.49 ~1000000000.0 ~-0.49 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.38 ~0.0 ~-0.57 ~0.38 ~1000000000.0 ~-0.57 0.00000000020 0 force @a[distance=..32] +particle fishing ~0.26 ~0.0 ~-0.64 ~0.26 ~1000000000.0 ~-0.64 0.00000000020 0 force @a[distance=..32] +particle fishing ~0.13 ~0.0 ~-0.68 ~0.13 ~1000000000.0 ~-0.68 0.00000000009 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_019.mcfunction new file mode 100644 index 000000000..20ab32425 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_019.mcfunction @@ -0,0 +1,53 @@ +# frame 19 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.563 0 +# 2_circle +particle fishing ~0.33 ~-0.07000000000000006 ~2.38 ~109047080.0 ~0.0 ~-994036672.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~1.22 ~-0.08000000000000007 ~2.07 ~-279655040.0 ~0.0 ~-960100608.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~1.92 ~-0.010000000000000009 ~1.45 ~-625782080.0 ~0.0 ~-779997888.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~2.33 ~-0.010000000000000009 ~0.6 ~-876639552.0 ~0.0 ~-481147712.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~2.38 ~0.010000000000000009 ~-0.33 ~-994036672.0 ~0.0 ~-109047032.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~2.07 ~-0.10999999999999988 ~-1.22 ~-960100544.0 ~0.0 ~279655008.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~1.45 ~0.1100000000000001 ~-1.92 ~-779997888.0 ~0.0 ~625782080.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~0.6 ~-0.09999999999999987 ~-2.33 ~-481147488.0 ~0.0 ~876639616.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-0.33 ~-0.15999999999999992 ~-2.38 ~-109046992.0 ~0.0 ~994036672.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-1.22 ~-0.07999999999999985 ~-2.07 ~279654976.0 ~0.0 ~960100608.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-1.92 ~0.030000000000000027 ~-1.45 ~625782208.0 ~0.0 ~779997824.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-2.33 ~-0.10999999999999988 ~-0.6 ~876639744.0 ~0.0 ~481147392.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-2.38 ~-0.040000000000000036 ~0.33 ~994036672.0 ~0.0 ~109047072.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-2.07 ~0.050000000000000044 ~1.22 ~960100544.0 ~0.0 ~-279655200.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-1.45 ~-0.030000000000000027 ~1.92 ~779997696.0 ~0.0 ~-625782336.0 0.00000000037 0 force @a[distance=..32] +particle fishing ~-0.6 ~0.019999999999999796 ~2.33 ~481147712.0 ~0.0 ~-876639552.0 0.00000000037 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~-0.29 ~-0.0 ~999999936.0 ~-0.29 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.06 ~0.0 ~-0.28 ~-0.06 ~1000000000.0 ~-0.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.11 ~0.0 ~-0.26 ~-0.11 ~1000000000.0 ~-0.26 0.00000000015 0 force @a[distance=..32] +particle fishing ~-0.16 ~0.0 ~-0.24 ~-0.16 ~1000000000.0 ~-0.24 0.00000000021 0 force @a[distance=..32] +particle fishing ~-0.2 ~0.0 ~-0.2 ~-0.2 ~999999936.0 ~-0.2 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.24 ~0.0 ~-0.16 ~-0.24 ~999999936.0 ~-0.16 0.00000000019 0 force @a[distance=..32] +particle fishing ~-0.26 ~0.0 ~-0.11 ~-0.26 ~1000000000.0 ~-0.11 0.00000000014 0 force @a[distance=..32] +particle fishing ~-0.28 ~0.0 ~-0.06 ~-0.28 ~1000000000.0 ~-0.06 0.00000000034 0 force @a[distance=..32] +particle fishing ~-0.29 ~0.0 ~0.0 ~-0.29 ~1000000000.0 ~0.0 0.00000000032 0 force @a[distance=..32] +particle fishing ~-0.28 ~0.0 ~0.06 ~-0.28 ~1000000000.0 ~0.06 0.00000000016 0 force @a[distance=..32] +particle fishing ~-0.26 ~0.0 ~0.11 ~-0.26 ~1000000000.0 ~0.11 0.00000000034 0 force @a[distance=..32] +particle fishing ~-0.24 ~0.0 ~0.16 ~-0.24 ~1000000000.0 ~0.16 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.2 ~0.0 ~0.2 ~-0.2 ~1000000000.0 ~0.2 0.00000000031 0 force @a[distance=..32] +particle fishing ~-0.16 ~0.0 ~0.24 ~-0.16 ~1000000000.0 ~0.24 0.00000000022 0 force @a[distance=..32] +particle fishing ~-0.11 ~0.0 ~0.26 ~-0.11 ~1000000000.0 ~0.26 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.06 ~0.0 ~0.28 ~-0.06 ~1000000000.0 ~0.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.0 ~0.0 ~0.29 ~0.0 ~999999936.0 ~0.29 0.00000000019 0 force @a[distance=..32] +particle fishing ~0.06 ~0.0 ~0.28 ~0.06 ~1000000000.0 ~0.28 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.11 ~0.0 ~0.26 ~0.11 ~1000000000.0 ~0.26 0.00000000034 0 force @a[distance=..32] +particle fishing ~0.16 ~0.0 ~0.24 ~0.16 ~1000000000.0 ~0.24 0.00000000034 0 force @a[distance=..32] +particle fishing ~0.2 ~0.0 ~0.2 ~0.2 ~1000000000.0 ~0.2 0.00000000014 0 force @a[distance=..32] +particle fishing ~0.24 ~0.0 ~0.16 ~0.24 ~1000000000.0 ~0.16 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.26 ~0.0 ~0.11 ~0.26 ~1000000000.0 ~0.11 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.28 ~0.0 ~0.06 ~0.28 ~1000000000.0 ~0.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.29 ~0.0 ~-0.0 ~0.29 ~1000000000.0 ~-0.0 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.28 ~0.0 ~-0.06 ~0.28 ~1000000000.0 ~-0.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.26 ~0.0 ~-0.11 ~0.26 ~1000000000.0 ~-0.11 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.24 ~0.0 ~-0.16 ~0.24 ~1000000000.0 ~-0.16 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.2 ~0.0 ~-0.2 ~0.2 ~999999936.0 ~-0.2 0.00000000007 0 force @a[distance=..32] +particle fishing ~0.16 ~0.0 ~-0.24 ~0.16 ~999999936.0 ~-0.24 0.00000000025 0 force @a[distance=..32] +particle fishing ~0.11 ~0.0 ~-0.26 ~0.11 ~1000000000.0 ~-0.26 0.00000000006 0 force @a[distance=..32] +particle fishing ~0.06 ~0.0 ~-0.28 ~0.06 ~1000000000.0 ~-0.28 0.00000000018 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_020.mcfunction new file mode 100644 index 000000000..44bb2da48 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/pillar_of_water/fc_020.mcfunction @@ -0,0 +1,53 @@ +# frame 20 / 20 +# 0_sound +playsound entity.dolphin.splash hostile @a[distance=..32] ~ ~ ~ 0.7 0.5 0 +# 2_circle +particle fishing ~-0.9 ~0.0 ~0.23 ~645004736.0 ~0.0 ~-764178624.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.75 ~-0.07000000000000006 ~0.56 ~303468096.0 ~0.0 ~-952841600.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.48 ~-0.06000000000000005 ~0.8 ~-84268704.0 ~0.0 ~-996443072.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.14 ~0.0 ~0.92 ~-459176320.0 ~0.0 ~-888345152.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.23 ~0.09000000000000008 ~0.9 ~-764178560.0 ~0.0 ~-645004672.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.56 ~-0.020000000000000018 ~0.75 ~-952841664.0 ~0.0 ~-303468096.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.8 ~-0.06000000000000005 ~0.48 ~-996443072.0 ~0.0 ~84268704.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.92 ~-0.1399999999999999 ~0.14 ~-888345152.0 ~0.0 ~459176480.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.9 ~-0.11999999999999988 ~-0.23 ~-645004672.0 ~0.0 ~764178624.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.75 ~0.010000000000000009 ~-0.56 ~-303468160.0 ~0.0 ~952841600.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.48 ~-0.039999999999999813 ~-0.8 ~84268800.0 ~0.0 ~996443072.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~0.14 ~-0.050000000000000044 ~-0.92 ~459176640.0 ~0.0 ~888345024.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.23 ~0.1399999999999999 ~-0.9 ~764178624.0 ~0.0 ~645004736.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.56 ~0.1499999999999999 ~-0.75 ~952841664.0 ~0.0 ~303467968.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.8 ~0.10999999999999988 ~-0.48 ~996443072.0 ~0.0 ~-84268984.0 0.00000000013 0 force @a[distance=..32] +particle fishing ~-0.92 ~0.1299999999999999 ~-0.14 ~888345152.0 ~0.0 ~-459176384.0 0.00000000013 0 force @a[distance=..32] +# 3_circle1 +particle fishing ~-0.0 ~0.0 ~0.1 ~-0.0 ~1000000000.0 ~0.1 0.00000000020 0 force @a[distance=..32] +particle fishing ~0.02 ~0.0 ~0.1 ~0.02 ~1000000000.0 ~0.1 0.00000000010 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~0.09 ~0.04 ~1000000000.0 ~0.09 0.00000000001 0 force @a[distance=..32] +particle fishing ~0.06 ~0.0 ~0.08 ~0.06 ~1000000000.0 ~0.08 0.00000000030 0 force @a[distance=..32] +particle fishing ~0.07 ~0.0 ~0.07 ~0.07 ~1000000000.0 ~0.07 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~0.06 ~0.08 ~999999936.0 ~0.06 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.09 ~0.0 ~0.04 ~0.09 ~999999936.0 ~0.04 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.1 ~0.0 ~0.02 ~0.1 ~999999936.0 ~0.02 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.1 ~0.0 ~-0.0 ~0.1 ~1000000000.0 ~-0.0 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.1 ~0.0 ~-0.02 ~0.1 ~1000000000.0 ~-0.02 0.00000000009 0 force @a[distance=..32] +particle fishing ~0.09 ~0.0 ~-0.04 ~0.09 ~1000000000.0 ~-0.04 0.00000000009 0 force @a[distance=..32] +particle fishing ~0.08 ~0.0 ~-0.06 ~0.08 ~1000000000.0 ~-0.06 0.00000000027 0 force @a[distance=..32] +particle fishing ~0.07 ~0.0 ~-0.07 ~0.07 ~999999936.0 ~-0.07 0.00000000019 0 force @a[distance=..32] +particle fishing ~0.06 ~0.0 ~-0.08 ~0.06 ~1000000000.0 ~-0.08 0.00000000026 0 force @a[distance=..32] +particle fishing ~0.04 ~0.0 ~-0.09 ~0.04 ~999999936.0 ~-0.09 0.00000000036 0 force @a[distance=..32] +particle fishing ~0.02 ~0.0 ~-0.1 ~0.02 ~999999936.0 ~-0.1 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.0 ~0.0 ~-0.1 ~-0.0 ~1000000000.0 ~-0.1 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.02 ~0.0 ~-0.1 ~-0.02 ~1000000000.0 ~-0.1 0.00000000009 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~-0.09 ~-0.04 ~999999936.0 ~-0.09 0.00000000004 0 force @a[distance=..32] +particle fishing ~-0.06 ~0.0 ~-0.08 ~-0.06 ~1000000000.0 ~-0.08 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.07 ~0.0 ~-0.07 ~-0.07 ~1000000000.0 ~-0.07 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~-0.06 ~-0.08 ~1000000000.0 ~-0.06 0.00000000001 0 force @a[distance=..32] +particle fishing ~-0.09 ~0.0 ~-0.04 ~-0.09 ~1000000000.0 ~-0.04 0.00000000025 0 force @a[distance=..32] +particle fishing ~-0.1 ~0.0 ~-0.02 ~-0.1 ~1000000000.0 ~-0.02 0.00000000027 0 force @a[distance=..32] +particle fishing ~-0.1 ~0.0 ~0.0 ~-0.1 ~1000000000.0 ~0.0 0.00000000033 0 force @a[distance=..32] +particle fishing ~-0.1 ~0.0 ~0.02 ~-0.1 ~999999936.0 ~0.02 0.00000000007 0 force @a[distance=..32] +particle fishing ~-0.09 ~0.0 ~0.04 ~-0.09 ~1000000000.0 ~0.04 0.00000000024 0 force @a[distance=..32] +particle fishing ~-0.08 ~0.0 ~0.06 ~-0.08 ~999999936.0 ~0.06 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.07 ~0.0 ~0.07 ~-0.07 ~999999936.0 ~0.07 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.06 ~0.0 ~0.08 ~-0.06 ~999999936.0 ~0.08 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.04 ~0.0 ~0.09 ~-0.04 ~999999936.0 ~0.09 0.00000000036 0 force @a[distance=..32] +particle fishing ~-0.02 ~0.0 ~0.1 ~-0.02 ~1000000000.0 ~0.1 0.00000000027 0 force @a[distance=..32] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_001.mcfunction new file mode 100644 index 000000000..1987c2c5e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_001.mcfunction @@ -0,0 +1,98 @@ +# frame 1 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.5 0 +# bo +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^0.01 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.0 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.02 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^0.01 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.02 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^-0.01 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.0 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.0 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^-0.01 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.0 ^0.01 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.0 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.0 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.0 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^-0.01 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.02 ^0.01 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.02 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.0 ^0.02 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.02 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.01 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.0 ^-0.02 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.01 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.02 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.02 ^-0.0 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.02 ^-0.01 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.0 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.01 ^0.01 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^-0.0 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^0.01 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.0 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,1.0,0.0],scale:1.5} ^-0.0 ^-0.01 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.0 ^-0.0 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.0 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.02 ^-0.01 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.0 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.02 ^0.01 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.0 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.0 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^-0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^-0.01 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.02 ^0.0 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.0 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.0 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^0.0 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^-0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.02 ^-0.01 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.0 ^-0.02 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.02 ^0.01 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.02 ^-0.0 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.0 ^0.02 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.02 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.0 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^-0.0 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.02 ^-0.0 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.0 ^-0.0 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^-0.0 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^0.01 ^0.01 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.0 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.096,0.0],scale:3.0} ^-0.01 ^0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.0} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_002.mcfunction new file mode 100644 index 000000000..0a9037127 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_002.mcfunction @@ -0,0 +1,98 @@ +# frame 2 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.503 0 +# bo +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.08 ^-0.05 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.07 ^0.03 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.02 ^-0.06 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.01 ^-0.09 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.02 ^-0.03 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.07 ^0.05 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.02 ^0.03 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.07 ^-0.05 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.07 ^-0.03 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.02 ^0.06 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.01 ^0.09 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.08 ^0.05 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.06 ^-0.06 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.09 ^-0.01 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.06 ^-0.02 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.08 ^0.04 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.09 ^0.0 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.04 ^-0.08 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.01 ^-0.09 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.06 ^-0.04 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.01 ^-0.07 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.05 ^0.01 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.05 ^0.07 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.04 ^0.08 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.0 ^-0.02 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.03 ^0.03 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.04 ^-0.08 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.03 ^-0.06 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.03 ^-0.03 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.05 ^-0.07 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^0.03 ^0.06 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.0 ^0.02 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.01 ^0.07 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.05 ^-0.01 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.08 ^-0.04 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.06 ^0.02 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.01 ^0.09 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.06 ^0.04 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.04 ^0.08 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.09 ^-0.0 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.09 ^0.01 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.445,0.999,0.0],scale:1.499} ^-0.06 ^0.06 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.04 ^0.03 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.05 ^0.06 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.02 ^0.09 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.09 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.05 ^-0.05 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.03 ^-0.03 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.05 ^0.05 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.03 ^0.03 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.05 ^-0.06 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.02 ^-0.09 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.09 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.04 ^-0.03 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.03 ^0.07 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.01 ^0.05 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.02 ^0.08 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.05 ^0.01 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.0 ^0.0 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.07 ^0.03 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.06 ^0.06 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.05 ^-0.01 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.08 ^-0.02 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.01 ^-0.05 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.08 ^0.02 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.07 ^-0.03 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.02 ^0.08 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.06 ^0.06 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.07 ^0.03 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.03 ^0.07 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.06 ^-0.06 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.08 ^-0.02 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.03 ^-0.07 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.02 ^-0.08 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.08 ^0.02 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.01 ^0.05 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.05 ^-0.01 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.02 ^-0.08 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.06 ^-0.06 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.05 ^0.01 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.07 ^-0.03 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.0 ^-0.0 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^-0.01 ^-0.05 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.001} ^0.03 ^-0.07 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.007} ^0.0 ^0.0 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^0.34 ^0.0 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^0.48 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^0.34 ^0.0 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^-0.0 ^0.0 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^-0.34 ^0.0 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^-0.48 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.007} ^-0.34 ^0.0 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_003.mcfunction new file mode 100644 index 000000000..1dc945c8d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_003.mcfunction @@ -0,0 +1,98 @@ +# frame 3 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.513 0 +# bo +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.16 ^0.05 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.11 ^-0.13 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.14 ^-0.05 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.08 ^0.13 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.01 ^0.16 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.02 ^0.01 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.01 ^-0.16 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.02 ^-0.01 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.11 ^0.13 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.14 ^0.05 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.08 ^-0.13 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.16 ^-0.05 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.18 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.16 ^-0.04 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.15 ^-0.11 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.08 ^-0.07 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.11 ^0.04 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.14 ^0.11 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.13 ^0.04 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.1 ^0.13 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.05 ^0.17 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.02 ^0.1 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.01 ^-0.15 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.03 ^-0.07 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.08 ^-0.13 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.06 ^-0.17 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.03 ^0.07 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^0.07 ^-0.03 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.06 ^0.17 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.01 ^0.15 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.07 ^0.03 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.08 ^0.13 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.05 ^-0.17 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.02 ^-0.1 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.08 ^0.07 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.15 ^0.11 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.13 ^-0.04 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.1 ^-0.13 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.14 ^-0.11 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.11 ^-0.04 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.16 ^0.04 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.443,0.997,0.0],scale:1.496} ^-0.18 ^-0.0 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.11 ^0.04 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.05 ^0.04 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.03 ^-0.11 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.14 ^-0.08 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.13 ^0.08 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.01 ^0.16 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.13 ^-0.08 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.01 ^-0.16 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.05 ^-0.04 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.03 ^0.11 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.14 ^0.08 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.11 ^-0.04 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.08 ^-0.04 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.04 ^0.05 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.02 ^-0.04 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.02 ^0.12 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.07 ^0.11 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.15 ^-0.03 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.1 ^-0.11 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.14 ^0.07 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.16 ^-0.0 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.08 ^0.14 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.11 ^0.07 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.07 ^0.14 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.06 ^-0.11 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.11 ^-0.02 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.07 ^-0.14 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.01 ^-0.16 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.11 ^0.02 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.11 ^-0.07 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.01 ^0.16 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.06 ^0.11 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.16 ^0.0 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.08 ^-0.14 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.02 ^-0.12 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^0.02 ^0.04 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.1 ^0.11 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.14 ^-0.07 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.15 ^0.03 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.07 ^-0.11 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.04 ^-0.05 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.096,0.0],scale:3.004} ^-0.08 ^0.04 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.027} ^0.01 ^0.0 ^0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^0.66 ^0.0 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^0.91 ^0.0 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^0.64 ^0.0 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^-0.01 ^0.0 ^-0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^-0.66 ^0.0 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^-0.91 ^0.0 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.027} ^-0.64 ^0.0 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_004.mcfunction new file mode 100644 index 000000000..4e84d1d7f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_004.mcfunction @@ -0,0 +1,98 @@ +# frame 4 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.529 0 +# bo +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.13 ^0.14 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.09 ^-0.15 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.14 ^0.03 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.1 ^0.26 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.16 ^0.21 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.28 ^-0.04 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.16 ^-0.21 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.28 ^0.04 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.09 ^0.15 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.14 ^-0.03 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.1 ^-0.26 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.13 ^-0.14 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.0 ^0.1 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.13 ^-0.01 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.03 ^-0.07 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.22 ^-0.11 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.24 ^0.06 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.02 ^0.23 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.14 ^0.17 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.17 ^0.21 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.04 ^0.28 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.26 ^0.1 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.11 ^-0.24 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.22 ^-0.17 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.17 ^-0.11 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.04 ^-0.21 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.22 ^0.17 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.24 ^0.04 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.04 ^0.21 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.11 ^0.24 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.24 ^-0.04 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.17 ^0.11 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.04 ^-0.28 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.26 ^-0.1 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.22 ^0.11 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.03 ^0.07 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.14 ^-0.17 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.17 ^-0.21 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.02 ^-0.23 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.24 ^-0.06 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^0.13 ^0.01 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.442,0.994,0.0],scale:1.49} ^-0.0 ^-0.1 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.07 ^-0.13 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.07 ^0.07 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.16 ^-0.13 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.02 ^-0.23 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.22 ^-0.09 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.16 ^0.1 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.22 ^0.09 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.16 ^-0.1 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.07 ^-0.07 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.16 ^0.13 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.02 ^0.23 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.07 ^0.13 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.05 ^-0.15 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.0 ^-0.03 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.14 ^-0.04 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.05 ^0.1 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.14 ^-0.02 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.05 ^-0.21 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.09 ^-0.22 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.17 ^-0.13 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.14 ^-0.19 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.22 ^0.01 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.05 ^0.18 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.09 ^0.2 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.23 ^-0.03 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.17 ^0.1 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.09 ^-0.2 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.19 ^-0.14 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.17 ^-0.1 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.05 ^-0.18 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.19 ^0.14 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.23 ^0.03 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.14 ^0.19 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.22 ^-0.01 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.05 ^-0.1 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.14 ^0.04 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.09 ^0.22 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.17 ^0.13 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.05 ^0.21 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^-0.14 ^0.02 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.0 ^0.03 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.216,0.095,0.0],scale:3.01} ^0.05 ^0.15 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.06} ^0.05 ^0.0 ^1.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^0.96 ^0.0 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^1.31 ^0.0 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^0.89 ^0.0 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^-0.05 ^0.0 ^-1.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^-0.96 ^0.0 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^-1.31 ^0.0 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.06} ^-0.89 ^0.0 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_005.mcfunction new file mode 100644 index 000000000..2d7f31183 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_005.mcfunction @@ -0,0 +1,98 @@ +# frame 5 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.551 0 +# bo +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.34 ^-0.07 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.03 ^0.1 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.0 ^-0.29 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.18 ^-0.33 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.32 ^0.04 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.23 ^0.31 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.32 ^-0.04 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.23 ^-0.31 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.03 ^-0.1 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.0 ^0.29 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.18 ^0.33 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.34 ^0.07 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.2 ^-0.21 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.21 ^0.02 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.02 ^-0.11 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.15 ^0.24 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.33 ^0.14 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.31 ^-0.24 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.11 ^-0.36 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.39 ^-0.02 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.3 ^-0.17 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.32 ^0.2 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.09 ^0.25 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.03 ^0.37 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.19 ^-0.19 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.17 ^0.04 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.03 ^-0.37 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.13 ^-0.35 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.17 ^-0.04 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.09 ^-0.25 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.13 ^0.35 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^-0.19 ^0.19 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.3 ^0.17 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.32 ^-0.2 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.15 ^-0.24 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.02 ^0.11 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.11 ^0.36 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.39 ^0.02 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.31 ^0.24 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.33 ^-0.14 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.21 ^-0.02 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.439,0.99,0.0],scale:1.483} ^0.2 ^0.21 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.1 ^0.17 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.29 ^-0.06 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.22 ^0.22 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.1 ^0.3 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.22 ^0.07 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.02 ^-0.15 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.22 ^-0.07 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.02 ^0.15 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.29 ^0.06 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.22 ^-0.22 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.1 ^-0.3 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.1 ^-0.17 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.19 ^0.23 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.23 ^0.07 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.3 ^0.1 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.19 ^-0.12 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.07 ^0.02 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.0 ^0.28 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.07 ^0.31 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.07 ^0.15 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.18 ^0.22 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.11 ^-0.04 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.23 ^-0.21 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.07 ^-0.26 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.25 ^0.09 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.3 ^-0.08 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.07 ^0.26 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.11 ^0.21 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.3 ^0.08 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.23 ^0.21 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.11 ^-0.21 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.25 ^-0.09 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.18 ^-0.22 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.11 ^0.04 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.19 ^0.12 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.3 ^-0.1 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.07 ^-0.31 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^0.07 ^-0.15 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.0 ^-0.28 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.07 ^-0.02 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.23 ^-0.07 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.215,0.095,0.0],scale:3.017} ^-0.19 ^-0.23 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.102} ^0.11 ^0.0 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^1.26 ^0.0 ^1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^1.68 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^1.11 ^0.0 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^-0.11 ^0.0 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^-1.26 ^0.0 ^-1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^-1.68 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.102} ^-1.11 ^0.0 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_006.mcfunction new file mode 100644 index 000000000..804e25b5b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_006.mcfunction @@ -0,0 +1,98 @@ +# frame 6 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.577 0 +# bo +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.48 ^-0.17 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.3 ^0.22 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.12 ^-0.29 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.07 ^-0.5 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.22 ^-0.12 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.36 ^0.32 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.22 ^0.12 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.36 ^-0.32 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.3 ^-0.22 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.12 ^0.29 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.07 ^0.5 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.48 ^0.17 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.36 ^-0.27 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.46 ^0.03 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.25 ^-0.04 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.39 ^0.31 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.49 ^0.09 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.33 ^-0.39 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.12 ^-0.46 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.41 ^-0.17 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.17 ^-0.36 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.34 ^0.12 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.13 ^0.42 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.17 ^0.48 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.06 ^-0.1 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.05 ^0.2 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.17 ^-0.48 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.14 ^-0.36 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.05 ^-0.2 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.13 ^-0.42 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.14 ^0.36 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^-0.06 ^0.1 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.17 ^0.36 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.34 ^-0.12 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.39 ^-0.31 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.25 ^0.04 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.12 ^0.46 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.41 ^0.17 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.33 ^0.39 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.49 ^-0.09 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.46 ^-0.03 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.436,0.984,0.001],scale:1.474} ^0.36 ^0.27 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.22 ^-0.2 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.09 ^-0.38 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.25 ^-0.27 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.38 ^0.09 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.12 ^0.2 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.18 ^-0.09 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.12 ^-0.2 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.18 ^0.09 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.09 ^0.38 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.25 ^0.27 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.38 ^-0.09 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.22 ^0.2 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.28 ^-0.27 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.07 ^-0.34 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.09 ^-0.38 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.16 ^-0.28 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.02 ^-0.17 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.35 ^-0.06 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.37 ^-0.1 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.2 ^0.0 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.29 ^0.17 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.04 ^0.07 ^-0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.28 ^-0.28 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.33 ^-0.11 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.08 ^-0.28 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.12 ^-0.34 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.33 ^0.11 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.25 ^-0.1 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.12 ^0.34 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.28 ^0.28 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.25 ^0.1 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.08 ^0.28 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.29 ^-0.17 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.04 ^-0.07 ^0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^-0.16 ^0.28 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.09 ^0.38 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.37 ^0.1 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.2 ^-0.0 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.35 ^0.06 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.02 ^0.17 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.07 ^0.34 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.214,0.095,0.0],scale:3.025} ^0.28 ^0.27 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.153} ^0.21 ^0.0 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^1.57 ^0.0 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^2.01 ^0.0 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^1.28 ^0.0 ^-1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^-0.21 ^0.0 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^-1.57 ^0.0 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^-2.01 ^0.0 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.153} ^-1.28 ^0.0 ^1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_007.mcfunction new file mode 100644 index 000000000..326249661 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_007.mcfunction @@ -0,0 +1,98 @@ +# frame 7 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.607 0 +# bo +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.25 ^-0.48 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.28 ^-0.57 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.34 ^-0.21 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.23 ^0.14 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.64 ^-0.0 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.32 ^-0.44 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.64 ^0.0 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.32 ^0.44 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.28 ^0.57 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.34 ^0.21 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.23 ^-0.14 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.25 ^0.48 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.05 ^-0.41 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.02 ^-0.62 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.37 ^-0.46 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.02 ^-0.6 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.34 ^-0.55 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.28 ^-0.2 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.06 ^-0.04 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.52 ^-0.29 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.51 ^0.08 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.56 ^-0.26 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.3 ^-0.42 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.05 ^-0.34 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.57 ^-0.12 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.54 ^-0.33 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.05 ^0.34 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.39 ^0.14 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.54 ^0.33 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.3 ^0.42 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.39 ^-0.14 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.57 ^0.12 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.51 ^-0.08 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.56 ^0.26 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.02 ^0.6 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.37 ^0.46 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.06 ^0.04 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.52 ^0.29 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.28 ^0.2 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^-0.34 ^0.55 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.02 ^0.62 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.432,0.977,0.001],scale:1.462} ^0.05 ^0.41 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.13 ^0.14 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.4 ^0.25 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.38 ^-0.22 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.09 ^-0.3 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.35 ^0.12 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.05 ^0.46 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.35 ^-0.12 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.05 ^-0.46 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.4 ^-0.25 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.38 ^0.22 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.09 ^0.3 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.13 ^-0.14 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.3 ^-0.04 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.31 ^0.23 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.46 ^0.02 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.21 ^0.42 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.05 ^0.36 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.02 ^-0.09 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.17 ^-0.3 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.13 ^0.16 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.26 ^-0.11 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.24 ^0.34 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.29 ^0.33 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.02 ^0.45 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.43 ^-0.2 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.44 ^0.08 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.02 ^-0.45 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.25 ^-0.4 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.44 ^-0.08 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.29 ^-0.33 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.25 ^0.4 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.43 ^0.2 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.26 ^0.11 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.24 ^-0.34 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.21 ^-0.42 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.46 ^-0.02 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.17 ^0.3 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^0.13 ^-0.16 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.02 ^0.09 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.05 ^-0.36 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.31 ^-0.23 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.213,0.095,0.0],scale:3.034} ^-0.3 ^0.04 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.212} ^0.36 ^0.0 ^2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^1.89 ^0.0 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^2.32 ^0.0 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^1.39 ^0.0 ^-1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^-0.36 ^0.0 ^-2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^-1.89 ^0.0 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^-2.32 ^0.0 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.212} ^-1.39 ^0.0 ^1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_008.mcfunction new file mode 100644 index 000000000..4765ca446 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_008.mcfunction @@ -0,0 +1,98 @@ +# frame 8 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.642 0 +# bo +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.18 ^0.21 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.38 ^0.62 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.54 ^-0.15 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.16 ^-0.58 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.75 ^-0.09 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.42 ^0.66 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.75 ^0.09 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.42 ^-0.66 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.38 ^-0.62 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.54 ^0.15 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.16 ^0.58 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.18 ^-0.21 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.21 ^0.03 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.11 ^0.48 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.54 ^0.28 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.02 ^0.75 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.35 ^0.51 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.2 ^-0.22 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.22 ^-0.43 ^-0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.55 ^0.07 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.53 ^-0.39 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.68 ^0.33 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.32 ^0.7 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.15 ^0.73 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.75 ^-0.04 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.66 ^0.41 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.15 ^-0.73 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.56 ^-0.47 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.66 ^-0.41 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.32 ^-0.7 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.56 ^0.47 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.75 ^0.04 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.53 ^0.39 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.68 ^-0.33 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.02 ^-0.75 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.54 ^-0.28 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.22 ^0.43 ^0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.55 ^-0.07 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.2 ^0.22 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^0.35 ^-0.51 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.11 ^-0.48 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.428,0.97,0.001],scale:1.449} ^-0.21 ^-0.03 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.01 ^0.48 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.06 ^-0.03 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.49 ^0.18 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.23 ^0.44 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.35 ^0.39 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.45 ^0.1 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.35 ^-0.39 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.45 ^-0.1 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.06 ^0.03 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.49 ^-0.18 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.23 ^-0.44 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.01 ^-0.48 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.28 ^0.39 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.03 ^0.27 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.32 ^0.09 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.23 ^0.04 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.27 ^0.35 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.13 ^0.54 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.42 ^0.36 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.21 ^0.52 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.07 ^0.49 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.47 ^0.29 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.1 ^-0.28 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.4 ^-0.2 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.49 ^-0.13 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.24 ^-0.25 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.4 ^0.2 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.55 ^0.04 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.24 ^0.25 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.1 ^0.28 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.55 ^-0.04 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.49 ^0.13 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.07 ^-0.49 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.47 ^-0.29 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.23 ^-0.04 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.32 ^-0.09 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.42 ^-0.36 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.21 ^-0.52 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.13 ^-0.54 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^0.27 ^-0.35 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.03 ^-0.27 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.212,0.095,0.0],scale:3.045} ^-0.28 ^-0.39 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.277} ^0.56 ^0.0 ^2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^2.22 ^0.0 ^1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^2.59 ^0.0 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^1.43 ^0.0 ^-2.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^-0.56 ^0.0 ^-2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^-2.22 ^0.0 ^-1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^-2.59 ^0.0 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.277} ^-1.43 ^0.0 ^2.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_009.mcfunction new file mode 100644 index 000000000..603f08b9c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_009.mcfunction @@ -0,0 +1,98 @@ +# frame 9 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.681 0 +# bo +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.58 ^-0.6 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.39 ^-0.74 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.11 ^-0.82 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.82 ^-0.14 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.75 ^0.36 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.01 ^-0.01 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.75 ^-0.36 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.01 ^0.01 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.39 ^0.74 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.11 ^0.82 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.82 ^0.14 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.58 ^0.6 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.41 ^-0.84 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.12 ^-0.79 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.16 ^-0.92 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.22 ^-0.44 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.35 ^-0.36 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.82 ^-0.44 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.55 ^-0.56 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.78 ^-0.14 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.92 ^0.13 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.45 ^0.21 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.71 ^-0.35 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.48 ^0.07 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.38 ^-0.69 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.67 ^-0.65 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.48 ^-0.07 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.06 ^-0.48 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.67 ^0.65 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.71 ^0.35 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.06 ^0.48 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.38 ^0.69 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.92 ^-0.13 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.45 ^-0.21 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.22 ^0.44 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^0.16 ^0.92 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.55 ^0.56 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.78 ^0.14 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.82 ^0.44 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.35 ^0.36 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.12 ^0.79 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.423,0.961,0.001],scale:1.435} ^-0.41 ^0.84 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.39 ^-0.47 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.13 ^-0.59 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.24 ^-0.43 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.22 ^0.03 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.62 ^0.15 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.4 ^-0.23 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.62 ^-0.15 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.4 ^0.23 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.13 ^0.59 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.24 ^0.43 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.22 ^-0.03 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.39 ^0.47 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.09 ^-0.53 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.16 ^-0.62 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.22 ^-0.6 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.16 ^-0.48 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.47 ^-0.41 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.36 ^-0.26 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.01 ^-0.23 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.6 ^-0.19 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.5 ^0.11 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.6 ^-0.05 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.21 ^-0.36 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.11 ^-0.15 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.51 ^-0.34 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.44 ^-0.43 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.11 ^0.15 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.38 ^-0.12 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.44 ^0.43 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.21 ^0.36 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.38 ^0.12 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.51 ^0.34 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.5 ^-0.11 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.6 ^0.05 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.16 ^0.48 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.22 ^0.6 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^-0.01 ^0.23 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.6 ^0.19 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.36 ^0.26 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.47 ^0.41 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.16 ^0.62 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.21,0.094,0.0],scale:3.056} ^0.09 ^0.53 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.346} ^0.83 ^0.0 ^2.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^2.57 ^0.0 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^2.81 ^0.0 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^1.4 ^0.0 ^-2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^-0.83 ^0.0 ^-2.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^-2.57 ^0.0 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^-2.81 ^0.0 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.346} ^-1.4 ^0.0 ^2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_010.mcfunction new file mode 100644 index 000000000..cca2f1690 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_010.mcfunction @@ -0,0 +1,98 @@ +# frame 10 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.723 0 +# bo +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.88 ^-0.21 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.95 ^0.41 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.41 ^0.84 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.15 ^-0.02 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.04 ^-0.98 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.72 ^-0.71 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.04 ^0.98 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.72 ^0.71 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.95 ^-0.41 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.41 ^-0.84 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.15 ^0.02 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.88 ^0.21 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.76 ^0.37 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-1.07 ^0.12 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.8 ^0.73 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.98 ^-0.18 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.94 ^-0.54 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.43 ^-0.14 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.15 ^0.48 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.54 ^-0.7 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.06 ^-0.59 ^-0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.45 ^-0.99 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.64 ^0.25 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.51 ^-0.41 ^0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.22 ^1.07 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.53 ^0.82 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.51 ^0.41 ^-0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.18 ^0.91 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.53 ^-0.82 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.64 ^-0.25 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.18 ^-0.91 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.22 ^-1.07 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^-0.06 ^0.59 ^0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.45 ^0.99 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.98 ^0.18 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.8 ^-0.73 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.15 ^-0.48 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.54 ^0.7 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.43 ^0.14 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.94 ^0.54 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^1.07 ^-0.12 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.417,0.951,0.002],scale:1.418} ^0.76 ^-0.37 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.12 ^0.24 ^-0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.02 ^0.72 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.56 ^0.31 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.3 ^-0.38 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.46 ^-0.39 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.66 ^0.29 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.46 ^0.39 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.66 ^-0.29 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.02 ^-0.72 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.56 ^-0.31 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.3 ^0.38 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.12 ^-0.24 ^0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.26 ^0.32 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.09 ^0.57 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.32 ^0.6 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.4 ^0.6 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.46 ^0.31 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.1 ^-0.08 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.51 ^-0.05 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.34 ^-0.09 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.09 ^-0.46 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.65 ^-0.06 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.19 ^0.65 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.56 ^0.4 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.6 ^0.41 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.25 ^0.66 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.56 ^-0.4 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.72 ^0.01 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.25 ^-0.66 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.19 ^-0.65 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.72 ^-0.01 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.6 ^-0.41 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.09 ^0.46 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.65 ^0.06 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.4 ^-0.6 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.32 ^-0.6 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.51 ^0.05 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.34 ^0.09 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.1 ^0.08 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.46 ^-0.31 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^0.09 ^-0.57 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.209,0.094,0.0],scale:3.068} ^-0.26 ^-0.32 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.419} ^1.16 ^0.0 ^2.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^2.93 ^0.0 ^1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^2.98 ^0.0 ^-1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^1.29 ^0.0 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^-1.16 ^0.0 ^-2.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^-2.93 ^0.0 ^-1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^-2.98 ^0.0 ^1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.419} ^-1.29 ^0.0 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_011.mcfunction new file mode 100644 index 000000000..6f3328110 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_011.mcfunction @@ -0,0 +1,98 @@ +# frame 11 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.768 0 +# bo +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.97 ^0.46 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-1.11 ^-0.58 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.87 ^0.62 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.03 ^1.25 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.25 ^0.44 ^-1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.41 ^-0.69 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.25 ^-0.44 ^1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.41 ^0.69 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^1.11 ^0.58 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.87 ^-0.62 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.03 ^-1.25 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.97 ^-0.46 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-1.08 ^0.64 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-1.22 ^-0.07 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-1.17 ^0.03 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.89 ^-0.75 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.81 ^-0.13 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.59 ^1.01 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.53 ^1.1 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.42 ^0.53 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.13 ^0.99 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.09 ^-0.15 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.63 ^-1.07 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.22 ^-1.14 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.66 ^0.11 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.8 ^-0.6 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.22 ^1.14 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.27 ^0.77 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.8 ^0.6 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.63 ^1.07 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.27 ^-0.77 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.66 ^-0.11 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^-0.13 ^-0.99 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.09 ^0.15 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.89 ^0.75 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^1.17 ^-0.03 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.53 ^-1.1 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.42 ^-0.53 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.59 ^-1.01 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^0.81 ^0.13 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^1.22 ^0.07 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.411,0.94,0.002],scale:1.401} ^1.08 ^-0.64 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.81 ^0.0 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.39 ^-0.65 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.32 ^-0.51 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.31 ^0.34 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.37 ^0.72 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.42 ^0.11 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.37 ^-0.72 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.42 ^-0.11 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.39 ^0.65 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.32 ^0.51 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.31 ^-0.34 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.81 ^-0.0 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.67 ^-0.3 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.71 ^-0.38 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.42 ^-0.68 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.48 ^-0.32 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.73 ^0.06 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.66 ^0.2 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.37 ^-0.1 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.7 ^0.42 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.4 ^0.62 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.47 ^0.49 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.05 ^-0.58 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.07 ^-0.14 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.03 ^-0.72 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.01 ^-0.81 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.07 ^0.14 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.06 ^-0.36 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.01 ^0.81 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.05 ^0.58 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.06 ^0.36 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^0.03 ^0.72 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.4 ^-0.62 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.47 ^-0.49 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.48 ^0.32 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.42 ^0.68 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.37 ^0.1 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.7 ^-0.42 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.66 ^-0.2 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.73 ^-0.06 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.71 ^0.38 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.207,0.093,0.0],scale:3.08} ^-0.67 ^0.3 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.493} ^1.56 ^0.0 ^3.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^3.28 ^0.0 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^3.08 ^0.0 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^1.08 ^0.0 ^-3.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^-1.56 ^0.0 ^-3.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^-3.28 ^0.0 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^-3.08 ^0.0 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.493} ^-1.08 ^0.0 ^3.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_012.mcfunction new file mode 100644 index 000000000..a22ecb1af --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_012.mcfunction @@ -0,0 +1,98 @@ +# frame 12 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.815 0 +# bo +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-1.18 ^0.36 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.19 ^0.33 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.47 ^-0.96 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-1.2 ^-0.7 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-1.0 ^0.74 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.14 ^1.38 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^1.0 ^-0.74 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.14 ^-1.38 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.19 ^-0.33 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.47 ^0.96 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^1.2 ^0.7 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^1.18 ^-0.36 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.97 ^-0.35 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.58 ^0.41 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.17 ^-0.37 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.03 ^1.01 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.78 ^1.02 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-1.4 ^-0.2 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.98 ^-0.98 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-1.28 ^0.65 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-1.3 ^0.02 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.67 ^1.25 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.82 ^0.61 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.62 ^1.23 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.31 ^-1.0 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.7 ^-0.24 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.62 ^-1.23 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.19 ^-1.38 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.7 ^0.24 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.82 ^-0.61 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.19 ^1.38 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.31 ^1.0 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^1.3 ^-0.02 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.67 ^-1.25 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^-0.03 ^-1.01 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.17 ^0.37 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.98 ^0.98 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^1.28 ^-0.65 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^1.4 ^0.2 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.78 ^-1.02 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.58 ^-0.41 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.404,0.929,0.002],scale:1.381} ^0.97 ^0.35 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.63 ^0.63 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.85 ^-0.24 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.39 ^0.36 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.22 ^0.85 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.14 ^0.55 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.53 ^-0.12 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.14 ^-0.55 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.53 ^0.12 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.85 ^0.24 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.39 ^-0.36 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.22 ^-0.85 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.63 ^-0.63 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.6 ^0.58 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.87 ^0.23 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.73 ^0.07 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.81 ^-0.22 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.68 ^0.3 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.24 ^0.87 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.1 ^0.71 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.29 ^0.69 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.21 ^0.83 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.23 ^0.25 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.63 ^-0.64 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.44 ^-0.57 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.31 ^-0.11 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.58 ^-0.47 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.44 ^0.57 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.08 ^0.28 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.58 ^0.47 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.63 ^0.64 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.08 ^-0.28 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.31 ^0.11 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^-0.21 ^-0.83 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.23 ^-0.25 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.81 ^0.22 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.73 ^-0.07 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.1 ^-0.71 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.29 ^-0.69 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.24 ^-0.87 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.68 ^-0.3 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.87 ^-0.23 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.205,0.093,0.0],scale:3.092} ^0.6 ^-0.58 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.568} ^2.01 ^0.0 ^3.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^3.62 ^0.0 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^3.1 ^0.0 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^0.77 ^0.0 ^-3.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^-2.01 ^0.0 ^-3.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^-3.62 ^0.0 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^-3.1 ^0.0 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.568} ^-0.77 ^0.0 ^3.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_013.mcfunction new file mode 100644 index 000000000..cd2993478 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_013.mcfunction @@ -0,0 +1,98 @@ +# frame 13 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.866 0 +# bo +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.44 ^0.69 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.99 ^-0.76 ^-1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.28 ^-0.74 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.69 ^0.73 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.03 ^1.62 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.22 ^0.7 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.03 ^-1.62 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.22 ^-0.7 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.99 ^0.76 ^1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.28 ^0.74 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.69 ^-0.73 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.44 ^-0.69 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.6 ^-0.03 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.43 ^-0.04 ^-0.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.34 ^-0.88 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.71 ^-0.04 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.97 ^0.81 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.25 ^0.84 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-1.16 ^-0.0 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.87 ^1.36 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.43 ^1.38 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.15 ^1.36 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.18 ^-0.88 ^-1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.28 ^-0.02 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.74 ^-1.38 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.56 ^-1.4 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.28 ^0.02 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^-0.63 ^-0.84 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.56 ^1.4 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.18 ^0.88 ^1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.63 ^0.84 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.74 ^1.38 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.43 ^-1.38 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.15 ^-1.36 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.71 ^0.04 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.34 ^0.88 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.16 ^0.0 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.87 ^-1.36 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.25 ^-0.84 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^0.97 ^-0.81 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.43 ^0.04 ^0.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.397,0.916,0.003],scale:1.361} ^1.6 ^0.03 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.8 ^-0.53 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.12 ^-0.7 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.4 ^0.18 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.86 ^0.49 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.63 ^-0.2 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.02 ^-0.94 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.63 ^0.2 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.02 ^0.94 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.12 ^0.7 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.4 ^-0.18 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.86 ^-0.49 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.8 ^0.53 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.71 ^-0.21 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.4 ^-0.72 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.16 ^-0.31 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.06 ^-0.97 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.49 ^-0.86 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.98 ^-0.02 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.74 ^0.39 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.84 ^-0.43 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.88 ^0.17 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.38 ^-0.67 ^-0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.58 ^-0.7 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.49 ^-0.84 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.14 ^0.22 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.44 ^-0.29 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.49 ^0.84 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.22 ^0.66 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.44 ^0.29 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.58 ^0.7 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.22 ^-0.66 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.14 ^-0.22 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.88 ^-0.17 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.38 ^0.67 ^0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^-0.06 ^0.97 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.16 ^0.31 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.74 ^-0.39 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.84 ^0.43 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.98 ^0.02 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.49 ^0.86 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.4 ^0.72 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.203,0.092,0.0],scale:3.104} ^0.71 ^0.21 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.641} ^2.52 ^0.0 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^3.91 ^0.0 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^3.01 ^0.0 ^-2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^0.35 ^0.0 ^-3.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^-2.52 ^0.0 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^-3.91 ^0.0 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^-3.01 ^0.0 ^2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.641} ^-0.35 ^0.0 ^3.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_014.mcfunction new file mode 100644 index 000000000..4cf64e4cc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_014.mcfunction @@ -0,0 +1,98 @@ +# frame 14 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.918 0 +# bo +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.72 ^-0.52 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.79 ^-0.78 ^1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.25 ^0.98 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.04 ^1.06 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.46 ^-0.64 ^-1.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.3 ^-1.78 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.46 ^0.64 ^1.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.3 ^1.78 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.79 ^0.78 ^-1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.25 ^-0.98 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.04 ^-1.06 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.72 ^0.52 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.74 ^0.27 ^0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.47 ^-0.76 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.2 ^0.12 ^1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.64 ^-1.5 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.19 ^-1.35 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.62 ^0.32 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.35 ^1.2 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-1.28 ^-0.68 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.88 ^0.25 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.45 ^-1.42 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.15 ^-1.08 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.44 ^-1.67 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.46 ^0.95 ^1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.19 ^-0.08 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.44 ^1.67 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.56 ^1.62 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.19 ^0.08 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^-0.15 ^1.08 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.56 ^-1.62 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.46 ^-0.95 ^-1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.88 ^-0.25 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.45 ^1.42 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^0.64 ^1.5 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.2 ^-0.12 ^-1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.35 ^-1.2 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.28 ^0.68 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.62 ^-0.32 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.19 ^1.35 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.47 ^0.76 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.39,0.903,0.003],scale:1.338} ^1.74 ^-0.27 ^-0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.58 ^0.91 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.92 ^0.02 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.01 ^0.61 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.56 ^0.92 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.0 ^0.53 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.92 ^-0.03 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.0 ^-0.53 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.92 ^0.03 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.92 ^-0.02 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.01 ^-0.61 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.56 ^-0.92 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.58 ^-0.91 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.34 ^0.89 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.88 ^0.55 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.55 ^0.37 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^1.08 ^-0.01 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.88 ^0.52 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.01 ^1.08 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.32 ^0.9 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.34 ^0.85 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.33 ^0.85 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.54 ^0.29 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.87 ^-0.53 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.87 ^-0.56 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.01 ^0.05 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.54 ^-0.3 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.87 ^0.56 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.53 ^0.38 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.54 ^0.3 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.87 ^0.53 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.53 ^-0.38 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.01 ^-0.05 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.33 ^-0.85 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.54 ^-0.29 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-1.08 ^0.01 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.55 ^-0.37 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^0.32 ^-0.9 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.34 ^-0.85 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.01 ^-1.08 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.88 ^-0.52 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.88 ^-0.55 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.2,0.092,0.0],scale:3.116} ^-0.34 ^-0.89 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.712} ^3.06 ^0.0 ^2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^4.14 ^0.0 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^2.8 ^0.0 ^-3.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^-0.18 ^0.0 ^-4.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^-3.06 ^0.0 ^-2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^-4.14 ^0.0 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^-2.8 ^0.0 ^3.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.712} ^0.18 ^0.0 ^4.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_015.mcfunction new file mode 100644 index 000000000..e389c3145 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_015.mcfunction @@ -0,0 +1,98 @@ +# frame 15 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.973 0 +# bo +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.07 ^-1.38 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.85 ^-1.8 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.61 ^-0.47 ^-1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.14 ^0.65 ^-1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.98 ^0.02 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.74 ^-1.49 ^1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.98 ^-0.02 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.74 ^1.49 ^-1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.85 ^1.8 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.61 ^0.47 ^1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.14 ^-0.65 ^1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.07 ^1.38 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.27 ^-1.09 ^-1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.13 ^-1.87 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.86 ^-1.33 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.06 ^-1.93 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.07 ^-1.69 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.3 ^-0.43 ^-1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.31 ^0.1 ^-1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.79 ^-0.8 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.83 ^0.39 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.6 ^-0.87 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.17 ^-1.44 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.23 ^-1.26 ^1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.52 ^-0.29 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.66 ^-1.07 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.23 ^1.26 ^-1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.79 ^0.6 ^-1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.66 ^1.07 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.17 ^1.44 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.79 ^-0.6 ^1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^1.52 ^0.29 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.83 ^-0.39 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.6 ^0.87 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.06 ^1.93 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^0.86 ^1.33 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.31 ^-0.1 ^1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.79 ^0.8 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.3 ^0.43 ^1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-1.07 ^1.69 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.13 ^1.87 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.382,0.889,0.004],scale:1.315} ^-0.27 ^1.09 ^1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.15 ^0.37 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.62 ^-0.55 ^-0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.88 ^0.6 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.17 ^1.15 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^1.08 ^0.33 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.59 ^-0.71 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-1.08 ^-0.33 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.59 ^0.71 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.62 ^0.55 ^0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.88 ^-0.6 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.17 ^-1.15 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.15 ^-0.37 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.43 ^0.57 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.28 ^-0.11 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.89 ^0.03 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.02 ^-0.74 ^-0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.44 ^-0.2 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.19 ^0.89 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.42 ^1.03 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.72 ^0.41 ^-0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.74 ^0.87 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.98 ^-0.22 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.47 ^-1.0 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.25 ^-1.1 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-1.16 ^0.16 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-1.0 ^-0.52 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.25 ^1.1 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.87 ^0.77 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^1.0 ^0.52 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.47 ^1.0 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.87 ^-0.77 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^1.16 ^-0.16 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.74 ^-0.87 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.98 ^0.22 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.02 ^0.74 ^0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.89 ^-0.03 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.42 ^-1.03 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.72 ^-0.41 ^0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.19 ^-0.89 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^-0.44 ^0.2 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.28 ^0.11 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.198,0.091,0.0],scale:3.127} ^0.43 ^-0.57 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.778} ^3.6 ^0.0 ^2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^4.28 ^0.0 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^2.46 ^0.0 ^-3.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^-0.8 ^0.0 ^-4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^-3.6 ^0.0 ^-2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^-4.28 ^0.0 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^-2.46 ^0.0 ^3.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.778} ^0.8 ^0.0 ^4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_016.mcfunction new file mode 100644 index 000000000..f35d6d508 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_016.mcfunction @@ -0,0 +1,98 @@ +# frame 16 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.028 0 +# bo +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.98 ^-0.51 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.13 ^1.5 ^1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.33 ^-0.47 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.09 ^-2.11 ^0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.88 ^-1.14 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.85 ^1.09 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.88 ^1.14 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.85 ^-1.09 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.13 ^-1.5 ^-1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.33 ^0.47 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.09 ^2.11 ^-0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.98 ^0.51 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.21 ^-0.58 ^2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.5 ^0.59 ^2.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.86 ^0.6 ^1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.01 ^1.53 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.66 ^0.34 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.52 ^-1.54 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.83 ^-1.52 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.68 ^-0.97 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.05 ^-1.91 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^2.19 ^-0.03 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.03 ^2.12 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.14 ^1.88 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.88 ^0.39 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.18 ^1.56 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.14 ^-1.88 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.87 ^-0.92 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.18 ^-1.56 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.03 ^-2.12 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.87 ^0.92 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^1.88 ^-0.39 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.05 ^1.91 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-2.19 ^0.03 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.01 ^-1.53 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.86 ^-0.6 ^-1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.83 ^1.52 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.68 ^0.97 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.52 ^1.54 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-1.66 ^-0.34 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^-0.5 ^-0.59 ^-2.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.373,0.875,0.004],scale:1.291} ^0.21 ^0.58 ^-2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.28 ^0.6 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.96 ^0.56 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.03 ^1.26 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-1.11 ^0.59 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.89 ^-0.52 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.39 ^-0.55 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.89 ^0.52 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.39 ^0.55 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.96 ^-0.56 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.03 ^-1.26 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^1.11 ^-0.59 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.28 ^-0.6 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.14 ^1.09 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.4 ^0.68 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.58 ^1.07 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.8 ^0.01 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.07 ^0.03 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.82 ^0.7 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.64 ^1.09 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.68 ^0.04 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-1.18 ^0.04 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.29 ^-0.63 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^1.22 ^-0.02 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.89 ^-0.67 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.54 ^1.05 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^1.09 ^0.64 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.89 ^0.67 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.21 ^1.06 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-1.09 ^-0.64 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-1.22 ^0.02 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.21 ^-1.06 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.54 ^-1.05 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^1.18 ^-0.04 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.29 ^0.63 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.8 ^-0.01 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.58 ^-1.07 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.64 ^-1.09 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.68 ^-0.04 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.82 ^-0.7 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.07 ^-0.03 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^-0.4 ^-0.68 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.195,0.09,0.0],scale:3.137} ^0.14 ^-1.09 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.84} ^4.1 ^0.0 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^4.31 ^0.0 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^1.99 ^0.0 ^-4.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^-1.49 ^0.0 ^-4.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^-4.1 ^0.0 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^-4.31 ^0.0 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^-1.99 ^0.0 ^4.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.84} ^1.49 ^0.0 ^4.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_017.mcfunction new file mode 100644 index 000000000..99aa7aa7b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_017.mcfunction @@ -0,0 +1,98 @@ +# frame 17 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.086 0 +# bo +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.91 ^1.93 ^-1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.55 ^0.26 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.55 ^1.76 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.16 ^2.02 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^2.21 ^0.68 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.77 ^-0.4 ^-1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-2.21 ^-0.68 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.77 ^0.4 ^1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.55 ^-0.26 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.55 ^-1.76 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.16 ^-2.02 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.91 ^-1.93 ^1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.38 ^2.17 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.21 ^1.29 ^-2.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.24 ^1.19 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.71 ^-0.08 ^-2.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.57 ^0.9 ^-1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.63 ^2.32 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.82 ^2.22 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.83 ^1.54 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.39 ^1.58 ^1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^2.34 ^0.16 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.42 ^-1.03 ^-2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.95 ^-1.42 ^-1.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-2.21 ^0.63 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.62 ^-0.24 ^-1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.95 ^1.42 ^1.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.95 ^1.27 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.62 ^0.24 ^1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.42 ^1.03 ^2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.95 ^-1.27 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^2.21 ^-0.63 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.39 ^-1.58 ^-1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-2.34 ^-0.16 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.71 ^0.08 ^2.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^1.24 ^-1.19 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.82 ^-2.22 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.83 ^-1.54 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.63 ^-2.32 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-1.57 ^-0.9 ^1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^-0.21 ^-1.29 ^2.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.365,0.859,0.005],scale:1.265} ^0.38 ^-2.17 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^1.28 ^0.43 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.97 ^-0.89 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.69 ^0.22 ^-1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.24 ^1.29 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.25 ^0.84 ^1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.7 ^-0.51 ^1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.25 ^-0.84 ^-1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.7 ^0.51 ^-1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.97 ^0.89 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.69 ^-0.22 ^1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.24 ^-1.29 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-1.28 ^-0.43 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^1.16 ^0.38 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^1.32 ^-0.27 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.98 ^-0.39 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.98 ^-0.82 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^1.16 ^-0.05 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.89 ^1.01 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.55 ^0.89 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.9 ^0.75 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.29 ^1.25 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.56 ^0.2 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.43 ^-1.28 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.27 ^-1.06 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.26 ^-0.36 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.43 ^-1.02 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.27 ^1.06 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.0 ^0.43 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.43 ^1.02 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.43 ^1.28 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^0.0 ^-0.43 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.26 ^0.36 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.29 ^-1.25 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.56 ^-0.2 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.98 ^0.82 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.98 ^0.39 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.55 ^-0.89 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.9 ^-0.75 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-0.89 ^-1.01 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-1.16 ^0.05 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-1.32 ^0.27 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.192,0.089,0.0],scale:3.146} ^-1.16 ^-0.38 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.894} ^4.54 ^0.0 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^4.2 ^0.0 ^-2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^1.39 ^0.0 ^-4.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^-2.23 ^0.0 ^-4.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^-4.54 ^0.0 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^-4.2 ^0.0 ^2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^-1.39 ^0.0 ^4.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.894} ^2.23 ^0.0 ^4.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_018.mcfunction new file mode 100644 index 000000000..2843fa0b0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_018.mcfunction @@ -0,0 +1,98 @@ +# frame 18 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.144 0 +# bo +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.09 ^1.3 ^-1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.92 ^-1.22 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-2.42 ^0.9 ^0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.25 ^2.58 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.59 ^1.5 ^-1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.55 ^-0.85 ^-2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.59 ^-1.5 ^1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.55 ^0.85 ^2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.92 ^1.22 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^2.42 ^-0.9 ^-0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.25 ^-2.58 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.09 ^-1.3 ^1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-2.07 ^1.3 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.77 ^0.05 ^-1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-2.55 ^-0.19 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.81 ^-1.22 ^-2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.32 ^0.27 ^-2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.79 ^2.29 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.57 ^2.05 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.29 ^1.65 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.79 ^2.4 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.26 ^0.38 ^-2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.99 ^-2.24 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.47 ^-2.02 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-2.36 ^-0.35 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-2.07 ^-1.6 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.47 ^2.02 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.75 ^1.03 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^2.07 ^1.6 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.99 ^2.24 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.75 ^-1.03 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^2.36 ^0.35 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.79 ^-2.4 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-1.26 ^-0.38 ^2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.81 ^1.22 ^2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^2.55 ^0.19 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.57 ^-2.05 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^-0.29 ^-1.65 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.79 ^-2.29 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^0.32 ^-0.27 ^2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^1.77 ^-0.05 ^1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.355,0.843,0.005],scale:1.238} ^2.07 ^-1.3 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.73 ^-0.86 ^0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.47 ^-0.05 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.82 ^0.66 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-1.43 ^-0.07 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.52 ^-1.23 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.66 ^-1.22 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.52 ^1.23 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.66 ^1.22 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.47 ^0.05 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.82 ^-0.66 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^1.43 ^0.07 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.73 ^0.86 ^-0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.91 ^-0.12 ^1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.15 ^-0.53 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.2 ^0.36 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.66 ^-0.75 ^1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.04 ^-1.22 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-1.27 ^-0.54 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-1.32 ^0.35 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.74 ^-1.23 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-1.14 ^-0.76 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.08 ^-1.44 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^1.12 ^0.01 ^0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^1.23 ^-0.68 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.18 ^1.11 ^0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.58 ^0.69 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-1.23 ^0.68 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.87 ^1.1 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.58 ^-0.69 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-1.12 ^-0.01 ^-0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.87 ^-1.1 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.18 ^-1.11 ^-0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^1.14 ^0.76 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.08 ^1.44 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^-0.66 ^0.75 ^-1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.2 ^-0.36 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^1.32 ^-0.35 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.74 ^1.23 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^1.27 ^0.54 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.04 ^1.22 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.15 ^0.53 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.189,0.088,0.0],scale:3.153} ^0.91 ^0.12 ^-1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.939} ^4.89 ^0.0 ^0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^3.94 ^0.0 ^-2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^0.68 ^0.0 ^-4.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^-2.97 ^0.0 ^-3.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^-4.89 ^0.0 ^-0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^-3.94 ^0.0 ^2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^-0.68 ^0.0 ^4.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.939} ^2.97 ^0.0 ^3.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_019.mcfunction new file mode 100644 index 000000000..457bc76bb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_019.mcfunction @@ -0,0 +1,98 @@ +# frame 19 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.204 0 +# bo +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.76 ^-0.63 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.06 ^1.64 ^2.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.99 ^-1.15 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.3 ^-2.74 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^2.64 ^-0.93 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.8 ^1.78 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-2.64 ^0.93 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.8 ^-1.78 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.06 ^-1.64 ^-2.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.99 ^1.15 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.3 ^2.74 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.76 ^0.63 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.72 ^-1.05 ^2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.18 ^0.6 ^2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.79 ^0.29 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.43 ^2.01 ^1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.5 ^0.68 ^2.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.62 ^-1.98 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.99 ^-2.29 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.99 ^-0.91 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.73 ^-2.16 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^2.61 ^0.5 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.8 ^2.57 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.88 ^2.65 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-2.72 ^-0.13 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-2.17 ^1.51 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.88 ^-2.65 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-2.22 ^-1.72 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^2.17 ^-1.51 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.8 ^-2.57 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^2.22 ^1.72 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^2.72 ^0.13 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.73 ^2.16 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-2.61 ^-0.5 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.43 ^-2.01 ^-1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^1.79 ^-0.29 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.99 ^2.29 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.99 ^0.91 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-0.62 ^1.98 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^-1.5 ^-0.68 ^-2.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.18 ^-0.6 ^-2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.346,0.827,0.006],scale:1.211} ^0.72 ^1.05 ^-2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.57 ^0.19 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.43 ^-1.27 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.89 ^-0.44 ^-1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.63 ^1.12 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.86 ^1.25 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.51 ^-0.22 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.86 ^-1.25 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.51 ^0.22 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.43 ^1.27 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.89 ^0.44 ^1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.63 ^-1.12 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.57 ^-0.19 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.19 ^-0.15 ^-1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.59 ^-0.63 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.27 ^-1.01 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.14 ^-0.88 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.22 ^-0.02 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.03 ^0.77 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.89 ^0.4 ^-1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.84 ^0.85 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.14 ^1.39 ^-0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.39 ^0.61 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.62 ^-1.4 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.26 ^-0.79 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.03 ^-1.0 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.25 ^-1.48 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.26 ^0.79 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.41 ^-0.13 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.25 ^1.48 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.62 ^1.4 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.41 ^0.13 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^1.03 ^1.0 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.14 ^-1.39 ^0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.39 ^-0.61 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.14 ^0.88 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.27 ^1.01 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.89 ^-0.4 ^1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.84 ^-0.85 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.03 ^-0.77 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-1.22 ^0.02 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^-0.59 ^0.63 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.186,0.087,0.0],scale:3.159} ^0.19 ^0.15 ^1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.975} ^5.11 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^3.54 ^0.0 ^-3.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^-0.11 ^0.0 ^-5.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^-3.69 ^0.0 ^-3.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^-5.11 ^0.0 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^-3.54 ^0.0 ^3.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^0.11 ^0.0 ^5.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.975} ^3.69 ^0.0 ^3.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_020.mcfunction new file mode 100644 index 000000000..d4c2ef00f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_020.mcfunction @@ -0,0 +1,98 @@ +# frame 20 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.264 0 +# bo +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.2 ^1.07 ^-2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.93 ^1.25 ^-1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^0.12 ^3.02 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.74 ^1.28 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.32 ^-1.56 ^-1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-0.56 ^-1.58 ^-2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.32 ^1.56 ^1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^0.56 ^1.58 ^2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.93 ^-1.25 ^1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-0.12 ^-3.02 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.74 ^-1.28 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.2 ^-1.07 ^2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^0.77 ^2.4 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-0.43 ^1.36 ^-2.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.06 ^2.51 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.46 ^-0.2 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^0.38 ^-0.3 ^-2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.32 ^1.38 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.68 ^2.53 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.07 ^-0.29 ^-2.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.98 ^-0.17 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.03 ^-1.85 ^-2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.74 ^-0.02 ^-1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.94 ^-1.68 ^-1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.3 ^2.69 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.5 ^1.65 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.94 ^1.68 ^1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^0.4 ^2.7 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.5 ^-1.65 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^2.74 ^0.02 ^1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-0.4 ^-2.7 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.3 ^-2.69 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.98 ^0.17 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.03 ^1.85 ^2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.46 ^0.2 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^1.06 ^-2.51 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-1.68 ^-2.53 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.07 ^0.29 ^2.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-2.32 ^-1.38 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-0.38 ^0.3 ^2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^0.43 ^-1.36 ^2.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.336,0.81,0.006],scale:1.182} ^-0.77 ^-2.4 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.47 ^1.4 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.15 ^0.87 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.47 ^1.38 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.16 ^0.84 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.48 ^0.01 ^0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.05 ^0.02 ^1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.48 ^-0.01 ^-0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.05 ^-0.02 ^-1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.15 ^-0.87 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.47 ^-1.38 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.16 ^-0.84 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.47 ^-1.4 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.0 ^1.63 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.4 ^1.33 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.96 ^1.32 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.65 ^0.53 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.31 ^0.83 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.96 ^1.32 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.4 ^1.3 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.15 ^0.82 ^0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.55 ^0.5 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.9 ^0.02 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.36 ^0.02 ^0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.65 ^-0.48 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.15 ^0.8 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.55 ^0.51 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.65 ^0.48 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.31 ^0.79 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.55 ^-0.51 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.36 ^-0.02 ^-0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.31 ^-0.79 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-1.15 ^-0.8 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.55 ^-0.5 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.9 ^-0.02 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.65 ^-0.53 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.96 ^-1.32 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.4 ^-1.3 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^1.15 ^-0.82 ^-0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.96 ^-1.32 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.31 ^-0.83 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^-0.4 ^-1.33 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.182,0.086,0.0],scale:3.164} ^0.0 ^-1.63 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:3.0} ^5.2 ^0.0 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^3.01 ^0.0 ^-4.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^-0.94 ^0.0 ^-5.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^-4.34 ^0.0 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^-5.2 ^0.0 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^-3.01 ^0.0 ^4.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^0.94 ^0.0 ^5.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.0} ^4.34 ^0.0 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_021.mcfunction new file mode 100644 index 000000000..88e05c0fe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_021.mcfunction @@ -0,0 +1,98 @@ +# frame 21 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.324 0 +# bo +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^3.1 ^-0.81 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^1.8 ^2.1 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.82 ^-0.88 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.62 ^-3.15 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^1.48 ^-1.57 ^-2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.21 ^1.68 ^-1.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-1.48 ^1.57 ^2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.21 ^-1.68 ^1.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-1.8 ^-2.1 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.82 ^0.88 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.62 ^3.15 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-3.1 ^0.81 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.31 ^-0.99 ^2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.88 ^0.76 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^1.54 ^0.72 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.36 ^2.22 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^3.13 ^0.51 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.19 ^-2.33 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.85 ^-2.37 ^2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.7 ^-1.4 ^-1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^1.24 ^-2.77 ^-1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^2.17 ^0.07 ^-2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.69 ^3.09 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.94 ^2.84 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.39 ^0.4 ^3.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.19 ^2.16 ^2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.94 ^-2.84 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.82 ^-1.5 ^2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.19 ^-2.16 ^-2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.69 ^-3.09 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.82 ^1.5 ^-2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^0.39 ^-0.4 ^-3.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-1.24 ^2.77 ^1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.17 ^-0.07 ^2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.36 ^-2.22 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-1.54 ^-0.72 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-0.85 ^2.37 ^-2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.7 ^1.4 ^1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.19 ^2.33 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-3.13 ^-0.51 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.88 ^-0.76 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.326,0.792,0.007],scale:1.153} ^-2.31 ^0.99 ^-2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.19 ^-0.33 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.59 ^-0.4 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.82 ^1.2 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.96 ^0.93 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.3 ^-0.82 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.28 ^-1.64 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.3 ^0.82 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.28 ^1.64 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.59 ^0.4 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.82 ^-1.2 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.96 ^-0.93 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.19 ^0.33 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.59 ^0.51 ^-1.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.05 ^-0.42 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.42 ^0.47 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.1 ^-1.2 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.27 ^-1.16 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.45 ^0.36 ^-1.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.08 ^1.25 ^-1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.65 ^-0.67 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.33 ^0.07 ^-1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.6 ^-1.45 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.5 ^-0.78 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.73 ^-1.51 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.25 ^1.18 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.7 ^0.25 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.73 ^1.51 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.32 ^1.67 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.7 ^-0.25 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.5 ^0.78 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.32 ^-1.67 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.25 ^-1.18 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-1.33 ^-0.07 ^1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.6 ^1.45 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.1 ^1.2 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.42 ^-0.47 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.08 ^-1.25 ^1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.65 ^0.67 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^-0.45 ^-0.36 ^1.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.27 ^1.16 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^1.05 ^0.42 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.178,0.085,0.0],scale:3.166} ^0.59 ^-0.51 ^1.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:3.012} ^5.14 ^0.0 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^2.37 ^0.0 ^-4.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-1.79 ^0.0 ^-5.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-4.9 ^0.0 ^-2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-5.14 ^0.0 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-2.37 ^0.0 ^4.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^1.79 ^0.0 ^5.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^4.9 ^0.0 ^2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_022.mcfunction new file mode 100644 index 000000000..b80bce262 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_022.mcfunction @@ -0,0 +1,98 @@ +# frame 22 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.384 0 +# bo +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.91 ^-2.98 ^1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.54 ^0.16 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-3.04 ^-1.34 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.1 ^-2.82 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.55 ^-2.24 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.91 ^-0.4 ^3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.55 ^2.24 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.91 ^0.4 ^-3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.54 ^-0.16 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^3.04 ^1.34 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.1 ^2.82 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.91 ^2.98 ^-1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.32 ^-2.54 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.03 ^-1.66 ^2.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-3.28 ^-0.7 ^0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.96 ^-0.14 ^3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.0 ^-1.99 ^2.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.47 ^-3.41 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-1.73 ^-2.45 ^-1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.96 ^-3.07 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^1.56 ^-2.98 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.03 ^-1.56 ^2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-1.56 ^1.75 ^2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.47 ^1.42 ^3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-3.28 ^0.53 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.99 ^1.41 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.47 ^-1.42 ^-3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.32 ^-0.55 ^-2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.99 ^-1.41 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^1.56 ^-1.75 ^-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.32 ^0.55 ^2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^3.28 ^-0.53 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-1.56 ^2.98 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-2.03 ^1.56 ^-2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.96 ^0.14 ^-3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^3.28 ^0.7 ^-0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^1.73 ^2.45 ^1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.96 ^3.07 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^0.47 ^3.41 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^-0.0 ^1.99 ^-2.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.03 ^1.66 ^-2.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.316,0.774,0.008],scale:1.123} ^2.32 ^2.54 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.26 ^-1.19 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.58 ^-1.38 ^-1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.03 ^-1.64 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.34 ^-0.37 ^1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.64 ^0.68 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.45 ^0.05 ^-1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.64 ^-0.68 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.45 ^-0.05 ^1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.58 ^1.38 ^1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.03 ^1.64 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.34 ^0.37 ^-1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.26 ^1.19 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.72 ^-1.66 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.4 ^-1.51 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.36 ^-1.77 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.07 ^-0.78 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.01 ^-0.67 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.53 ^-0.91 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.77 ^-1.18 ^1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.7 ^-0.3 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.75 ^0.18 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.23 ^0.43 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.13 ^-0.6 ^-1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.52 ^0.25 ^-1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.98 ^-1.36 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.3 ^-1.21 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.52 ^-0.25 ^1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.28 ^-0.99 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.3 ^1.21 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-1.13 ^0.6 ^1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.28 ^0.99 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.98 ^1.36 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.75 ^-0.18 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.23 ^-0.43 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.07 ^0.78 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^-0.36 ^1.77 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.77 ^1.18 ^-1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.7 ^0.3 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.53 ^0.91 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^1.01 ^0.67 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.4 ^1.51 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.175,0.083,0.0],scale:3.166} ^0.72 ^1.66 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:3.012} ^4.95 ^0.0 ^-2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^1.65 ^0.0 ^-5.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-2.62 ^0.0 ^-4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-5.35 ^0.0 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-4.95 ^0.0 ^2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^-1.65 ^0.0 ^5.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^2.62 ^0.0 ^4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.012} ^5.35 ^0.0 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_023.mcfunction new file mode 100644 index 000000000..af49c6867 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_023.mcfunction @@ -0,0 +1,98 @@ +# frame 23 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.444 0 +# bo +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.75 ^0.27 ^-3.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.18 ^2.6 ^-2.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.82 ^-1.14 ^-2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.14 ^-3.13 ^-1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-3.61 ^-0.63 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-2.17 ^2.92 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^3.61 ^0.63 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^2.17 ^-2.92 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.18 ^-2.6 ^2.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.82 ^1.14 ^2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.14 ^3.13 ^1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.75 ^-0.27 ^3.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^0.05 ^-0.51 ^-3.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-0.33 ^1.69 ^-3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.77 ^0.85 ^-3.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-0.58 ^3.24 ^-1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-2.3 ^1.87 ^-2.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.7 ^-1.68 ^-2.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^0.4 ^-2.51 ^-2.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-3.15 ^-0.21 ^-1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-2.79 ^-2.21 ^-0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-3.4 ^1.35 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.37 ^3.37 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-0.61 ^3.56 ^0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^3.19 ^-0.3 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^2.82 ^1.89 ^-1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^0.61 ^-3.56 ^-0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^2.35 ^-2.38 ^-1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-2.82 ^-1.89 ^1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.37 ^-3.37 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-2.35 ^2.38 ^1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-3.19 ^0.3 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^2.79 ^2.21 ^0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^3.4 ^-1.35 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^0.58 ^-3.24 ^1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-1.77 ^-0.85 ^3.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-0.4 ^2.51 ^2.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^3.15 ^0.21 ^1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^1.7 ^1.68 ^2.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^2.3 ^-1.87 ^2.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^0.33 ^-1.69 ^3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.305,0.756,0.008],scale:1.093} ^-0.05 ^0.51 ^3.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.64 ^-0.39 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.09 ^-1.67 ^-0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.02 ^0.08 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.91 ^1.47 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.6 ^0.59 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.09 ^-1.35 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.6 ^-0.59 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.09 ^1.35 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.09 ^1.67 ^0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.02 ^-0.08 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.91 ^-1.47 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.64 ^0.39 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.95 ^-0.18 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.02 ^-1.21 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.04 ^-0.93 ^-1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.7 ^-1.77 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.61 ^-1.02 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.5 ^0.64 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.52 ^0.91 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.9 ^0.12 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.47 ^1.21 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^1.58 ^-0.45 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.48 ^-1.85 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.11 ^-1.66 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.95 ^-0.3 ^-1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.88 ^-1.33 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.11 ^1.66 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.66 ^0.84 ^-1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.88 ^1.33 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.48 ^1.85 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.66 ^-0.84 ^1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^0.95 ^0.3 ^1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.47 ^-1.21 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.58 ^0.45 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.7 ^1.77 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.04 ^0.93 ^1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.52 ^-0.91 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.9 ^-0.12 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.5 ^-0.64 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.61 ^1.02 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-1.02 ^1.21 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.171,0.082,0.0],scale:3.163} ^-0.95 ^0.18 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:3.001} ^4.64 ^0.0 ^-3.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^0.88 ^0.0 ^-5.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^-3.4 ^0.0 ^-4.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^-5.69 ^0.0 ^-0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^-4.64 ^0.0 ^3.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^-0.88 ^0.0 ^5.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^3.4 ^0.0 ^4.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:3.001} ^5.69 ^0.0 ^0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_024.mcfunction new file mode 100644 index 000000000..f88071a3f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_024.mcfunction @@ -0,0 +1,98 @@ +# frame 24 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.503 0 +# bo +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-0.34 ^0.37 ^-3.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^2.81 ^1.96 ^-1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^2.44 ^-2.08 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-1.51 ^-3.01 ^-1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-3.58 ^0.44 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-0.92 ^3.51 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^3.58 ^-0.44 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^0.92 ^-3.51 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-2.81 ^-1.96 ^1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-2.44 ^2.08 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^1.51 ^3.01 ^1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^0.34 ^-0.37 ^3.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^1.24 ^-1.01 ^-3.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^1.45 ^1.37 ^-3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^3.09 ^-0.07 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^1.11 ^3.22 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-0.74 ^2.28 ^-3.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-1.08 ^-1.56 ^-3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^0.55 ^-2.99 ^-2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-2.3 ^0.48 ^-3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-2.99 ^-1.51 ^-1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-2.65 ^2.33 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^2.53 ^2.92 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^0.35 ^3.84 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^3.54 ^-1.48 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^3.76 ^0.89 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-0.35 ^-3.84 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^1.98 ^-3.29 ^-0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-3.76 ^-0.89 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-2.53 ^-2.92 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-1.98 ^3.29 ^0.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-3.54 ^1.48 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^2.99 ^1.51 ^1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^2.65 ^-2.33 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-1.11 ^-3.22 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-3.09 ^0.07 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-0.55 ^2.99 ^2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^2.3 ^-0.48 ^3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^1.08 ^1.56 ^3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^0.74 ^-2.28 ^3.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-1.45 ^-1.37 ^3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.295,0.737,0.009],scale:1.061} ^-1.24 ^1.01 ^3.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.55 ^-1.11 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.42 ^-1.87 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.59 ^-1.47 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.74 ^0.28 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.44 ^0.95 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.11 ^-0.38 ^1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.44 ^-0.95 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.11 ^0.38 ^-1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.42 ^1.87 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.59 ^1.47 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.74 ^-0.28 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.55 ^1.11 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.26 ^-1.52 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.66 ^-1.75 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.1 ^-1.96 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.18 ^-1.32 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.97 ^-0.88 ^1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.93 ^-0.49 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.37 ^-0.7 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.75 ^-0.1 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.87 ^0.72 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.91 ^0.33 ^1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.27 ^-1.26 ^0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.96 ^-0.39 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.5 ^-1.42 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.09 ^-1.66 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.96 ^0.39 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.28 ^-0.64 ^-1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.09 ^1.66 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^1.27 ^1.26 ^-0.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.28 ^0.64 ^1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.5 ^1.42 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.87 ^-0.72 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.91 ^-0.33 ^-1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^0.18 ^1.32 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.1 ^1.96 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.37 ^0.7 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.75 ^0.1 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.93 ^0.49 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.97 ^0.88 ^-1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-0.66 ^1.75 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.167,0.08,0.0],scale:3.158} ^-1.26 ^1.52 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.979} ^4.22 ^0.0 ^-4.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^0.07 ^0.0 ^-5.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^-4.12 ^0.0 ^-4.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^-5.9 ^0.0 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^-4.22 ^0.0 ^4.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^-0.07 ^0.0 ^5.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^4.12 ^0.0 ^4.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.979} ^5.9 ^0.0 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_025.mcfunction new file mode 100644 index 000000000..721ef8a25 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_025.mcfunction @@ -0,0 +1,98 @@ +# frame 25 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.562 0 +# bo +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-1.95 ^0.81 ^-3.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^2.17 ^-0.32 ^-3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-0.84 ^-3.18 ^-2.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-3.9 ^-1.14 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-2.78 ^2.97 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^0.97 ^3.48 ^-1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^2.78 ^-2.97 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-0.97 ^-3.48 ^1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-2.17 ^0.32 ^3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^0.84 ^3.18 ^2.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^3.9 ^1.14 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^1.95 ^-0.81 ^3.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-1.64 ^-1.39 ^-3.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^0.13 ^0.29 ^-4.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^0.78 ^-2.05 ^-3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^1.85 ^1.86 ^-3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-0.58 ^2.52 ^-3.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-3.44 ^-0.19 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-2.79 ^-2.54 ^-1.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-2.78 ^2.22 ^-1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-3.92 ^1.07 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-1.06 ^3.79 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^3.57 ^0.49 ^-1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^2.86 ^2.72 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^1.14 ^-3.61 ^-1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^2.91 ^-1.93 ^-2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-2.86 ^-2.72 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-1.07 ^-3.91 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-2.91 ^1.93 ^2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-3.57 ^-0.49 ^1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^1.07 ^3.91 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-1.14 ^3.61 ^1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^3.92 ^-1.07 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^1.06 ^-3.79 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-1.85 ^-1.86 ^3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-0.78 ^2.05 ^3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^2.79 ^2.54 ^1.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^2.78 ^-2.22 ^1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^3.44 ^0.19 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^0.58 ^-2.52 ^3.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^-0.13 ^-0.29 ^4.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.284,0.718,0.01],scale:1.03} ^1.64 ^1.39 ^3.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.91 ^-0.99 ^-1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.98 ^0.54 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.48 ^-1.4 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.5 ^-2.02 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.23 ^-0.45 ^-1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.3 ^1.12 ^-1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.23 ^0.45 ^1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.3 ^-1.12 ^1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.98 ^-0.54 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.48 ^1.4 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.5 ^2.02 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.91 ^0.99 ^1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.4 ^-1.41 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.7 ^-0.27 ^-1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^2.03 ^-0.51 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.34 ^0.98 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.71 ^0.08 ^-1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.24 ^-1.77 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.57 ^-2.01 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.19 ^-0.85 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.02 ^-1.45 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.54 ^0.39 ^-1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.46 ^1.5 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.47 ^1.85 ^-0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.59 ^-0.56 ^1.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.88 ^0.58 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.47 ^-1.85 ^0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.69 ^-1.49 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.88 ^-0.58 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.46 ^-1.5 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.69 ^1.49 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.59 ^0.56 ^-1.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^1.02 ^1.45 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.54 ^-0.39 ^1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.34 ^-0.98 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-2.03 ^0.51 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.57 ^2.01 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^0.19 ^0.85 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.24 ^1.77 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-0.71 ^-0.08 ^1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.7 ^0.27 ^1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.162,0.079,0.0],scale:3.149} ^-1.4 ^1.41 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.946} ^3.72 ^0.0 ^-4.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^-0.73 ^0.0 ^-5.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^-4.76 ^0.0 ^-3.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^-5.99 ^0.0 ^0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^-3.72 ^0.0 ^4.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^0.73 ^0.0 ^5.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^4.76 ^0.0 ^3.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.946} ^5.99 ^0.0 ^-0.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_026.mcfunction new file mode 100644 index 000000000..ae8409312 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_026.mcfunction @@ -0,0 +1,98 @@ +# frame 26 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.619 0 +# bo +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-0.07 ^4.25 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^3.77 ^1.98 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^0.91 ^2.21 ^-3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-3.25 ^2.01 ^-1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-2.97 ^1.66 ^2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^1.38 ^1.64 ^3.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^2.97 ^-1.66 ^-2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-1.38 ^-1.64 ^-3.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-3.77 ^-1.98 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-0.91 ^-2.21 ^3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^3.25 ^-2.01 ^1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^0.07 ^-4.25 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^0.5 ^3.8 ^-1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^2.18 ^3.66 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^2.76 ^2.46 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^3.03 ^2.13 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^0.77 ^3.46 ^2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-1.95 ^3.68 ^-0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-1.37 ^2.48 ^-3.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-1.78 ^3.47 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-3.66 ^2.16 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-0.93 ^1.94 ^3.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^4.13 ^-0.02 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^2.72 ^-0.22 ^3.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^2.28 ^0.33 ^-3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^3.96 ^0.19 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-2.72 ^0.22 ^-3.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-0.27 ^0.34 ^-4.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-3.96 ^-0.19 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-4.13 ^0.02 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^0.27 ^-0.34 ^4.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-2.28 ^-0.33 ^3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^3.66 ^-2.16 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^0.93 ^-1.94 ^-3.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-3.03 ^-2.13 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-2.76 ^-2.46 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^1.37 ^-2.48 ^3.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^1.78 ^-3.47 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^1.95 ^-3.68 ^0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-0.77 ^-3.46 ^-2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-2.18 ^-3.66 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.273,0.699,0.01],scale:0.998} ^-0.5 ^-3.8 ^1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.37 ^-1.59 ^1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.2 ^0.62 ^2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-2.01 ^-0.09 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.27 ^-1.65 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.0 ^-1.91 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.66 ^-0.51 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.0 ^1.91 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.66 ^0.51 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.2 ^-0.62 ^-2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^2.01 ^0.09 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.27 ^1.65 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.37 ^1.59 ^-1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.4 ^-0.99 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.33 ^-0.57 ^2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.3 ^0.31 ^1.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.86 ^0.06 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.76 ^-1.23 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.96 ^-1.91 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.93 ^-1.03 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.37 ^-2.06 ^0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.16 ^-2.1 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.56 ^-1.42 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.63 ^1.33 ^1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.72 ^0.67 ^1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.77 ^1.07 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.7 ^1.49 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.72 ^-0.67 ^-1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-2.16 ^0.25 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.7 ^-1.49 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.63 ^-1.33 ^-1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^2.16 ^-0.25 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.77 ^-1.07 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.16 ^2.1 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-1.56 ^1.42 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.86 ^-0.06 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.3 ^-0.31 ^-1.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.93 ^1.03 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.37 ^2.06 ^-0.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.96 ^1.91 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^-0.76 ^1.23 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^0.33 ^0.57 ^-2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.158,0.077,0.0],scale:3.138} ^1.4 ^0.99 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.904} ^3.15 ^0.0 ^-5.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^-1.52 ^0.0 ^-5.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^-5.3 ^0.0 ^-3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^-5.98 ^0.0 ^1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^-3.15 ^0.0 ^5.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^1.52 ^0.0 ^5.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^5.3 ^0.0 ^3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.904} ^5.98 ^0.0 ^-1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_027.mcfunction new file mode 100644 index 000000000..b9149a258 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_027.mcfunction @@ -0,0 +1,98 @@ +# frame 27 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.674 0 +# bo +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^0.58 ^2.74 ^3.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-2.99 ^-0.3 ^3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^1.4 ^-1.86 ^3.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^4.21 ^0.84 ^1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^1.56 ^4.07 ^-0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-2.89 ^3.37 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-1.56 ^-4.07 ^0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^2.89 ^-3.37 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^2.99 ^0.3 ^-3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-1.4 ^1.86 ^-3.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-4.21 ^-0.84 ^-1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-0.58 ^-2.74 ^-3.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^1.16 ^0.52 ^4.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-1.42 ^1.44 ^3.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-0.93 ^-1.27 ^4.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-3.45 ^1.81 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-1.36 ^3.59 ^2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^2.81 ^2.1 ^2.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^3.29 ^-0.6 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^1.25 ^4.0 ^1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^3.39 ^2.89 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-0.78 ^4.37 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-4.23 ^-0.67 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-4.17 ^1.49 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-0.09 ^-3.48 ^2.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-2.67 ^-2.57 ^2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^4.17 ^-1.49 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^2.52 ^-3.07 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^2.67 ^2.57 ^-2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^4.23 ^0.67 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-2.52 ^3.07 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^0.09 ^3.48 ^-2.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-3.39 ^-2.89 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^0.78 ^-4.37 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^3.45 ^-1.81 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^0.93 ^1.27 ^-4.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-3.29 ^0.6 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-1.25 ^-4.0 ^-1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-2.81 ^-2.1 ^-2.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^1.36 ^-3.59 ^-2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^1.42 ^-1.44 ^-3.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.262,0.68,0.011],scale:0.965} ^-1.16 ^-0.52 ^-4.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.36 ^2.18 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^2.17 ^0.69 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.87 ^0.4 ^-2.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.41 ^0.91 ^-1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.52 ^1.51 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.7 ^1.37 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.52 ^-1.51 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.7 ^-1.37 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-2.17 ^-0.69 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.87 ^-0.4 ^2.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.41 ^-0.91 ^1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.36 ^-2.18 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.72 ^1.52 ^-1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.49 ^1.69 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.79 ^0.64 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.69 ^1.21 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.62 ^2.09 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.62 ^1.82 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.32 ^0.77 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.68 ^2.17 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.72 ^1.42 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.48 ^1.69 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^2.11 ^-0.13 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.24 ^0.27 ^1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.4 ^-0.65 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^2.17 ^-0.49 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.24 ^-0.27 ^-1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.1 ^-0.57 ^-2.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-2.17 ^0.49 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-2.11 ^0.13 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.1 ^0.57 ^2.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.4 ^0.65 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^1.72 ^-1.42 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.48 ^-1.69 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.69 ^-1.21 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.79 ^-0.64 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.32 ^-0.77 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.68 ^-2.17 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^0.62 ^-1.82 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.62 ^-2.09 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-1.49 ^-1.69 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.153,0.075,0.0],scale:3.123} ^-0.72 ^-1.52 ^1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.853} ^2.54 ^0.0 ^-5.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^-2.28 ^0.0 ^-5.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^-5.76 ^0.0 ^-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^-5.87 ^0.0 ^2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^-2.54 ^0.0 ^5.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^2.28 ^0.0 ^5.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^5.76 ^0.0 ^2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.853} ^5.87 ^0.0 ^-2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_028.mcfunction new file mode 100644 index 000000000..9c3dec3c6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_028.mcfunction @@ -0,0 +1,98 @@ +# frame 28 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.728 0 +# bo +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-0.77 ^4.14 ^1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-3.72 ^2.33 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-3.58 ^0.28 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^1.03 ^0.41 ^4.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^3.74 ^2.53 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^0.8 ^3.71 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-3.74 ^-2.53 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-0.8 ^-3.71 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^3.72 ^-2.33 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^3.58 ^-0.28 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-1.03 ^-0.41 ^-4.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^0.77 ^-4.14 ^-1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-2.56 ^2.6 ^2.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-2.64 ^3.8 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-4.29 ^1.53 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-1.71 ^3.55 ^-2.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^0.02 ^4.61 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^0.15 ^2.67 ^3.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-1.5 ^0.4 ^4.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^1.74 ^3.92 ^1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^2.8 ^1.72 ^3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^2.67 ^3.67 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-2.79 ^1.13 ^-3.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-0.13 ^1.94 ^-4.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-4.3 ^-1.32 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-4.38 ^-0.12 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^0.13 ^-1.94 ^4.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-2.58 ^-2.02 ^3.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^4.38 ^0.12 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^2.79 ^-1.13 ^3.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^2.58 ^2.02 ^-3.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^4.3 ^1.32 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-2.8 ^-1.72 ^-3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-2.67 ^-3.67 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^1.71 ^-3.55 ^2.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^4.29 ^-1.53 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^1.5 ^-0.4 ^-4.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-1.74 ^-3.92 ^-1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-0.15 ^-2.67 ^-3.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^-0.02 ^-4.61 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^2.64 ^-3.8 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.251,0.66,0.012],scale:0.932} ^2.56 ^-2.6 ^-2.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.89 ^-1.34 ^-1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.49 ^1.1 ^-2.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.44 ^-0.45 ^-1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.84 ^-2.21 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.47 ^-1.74 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-2.3 ^0.31 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.47 ^1.74 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^2.3 ^-0.31 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.49 ^-1.1 ^2.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.44 ^0.45 ^1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.84 ^2.21 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.89 ^1.34 ^1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.33 ^-1.06 ^-2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.81 ^-0.14 ^-2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.56 ^0.38 ^-2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.64 ^0.83 ^-1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.87 ^-0.61 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.03 ^-2.09 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.34 ^-1.57 ^-1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.39 ^-1.81 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.37 ^-2.33 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-2.22 ^-0.84 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.78 ^1.95 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.84 ^1.48 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.72 ^0.76 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.58 ^1.67 ^-1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.84 ^-1.48 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^2.2 ^-0.45 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.58 ^-1.67 ^1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.78 ^-1.95 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-2.2 ^0.45 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.72 ^-0.76 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.37 ^2.33 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^2.22 ^0.84 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.64 ^-0.83 ^1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.56 ^-0.38 ^2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-1.34 ^1.57 ^1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.39 ^1.81 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.03 ^2.09 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^1.87 ^0.61 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^0.81 ^0.14 ^2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.148,0.073,0.0],scale:3.104} ^-0.33 ^1.06 ^2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.793} ^1.91 ^0.0 ^-6.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^-2.99 ^0.0 ^-5.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^-6.13 ^0.0 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^-5.68 ^0.0 ^2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^-1.91 ^0.0 ^6.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^2.99 ^0.0 ^5.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^6.13 ^0.0 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.793} ^5.68 ^0.0 ^-2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_029.mcfunction new file mode 100644 index 000000000..97116df94 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_029.mcfunction @@ -0,0 +1,98 @@ +# frame 29 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.778 0 +# bo +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-0.15 ^2.18 ^4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-3.54 ^-1.33 ^2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^1.27 ^-2.65 ^3.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^4.23 ^1.04 ^2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^1.25 ^4.64 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-3.55 ^3.17 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-1.25 ^-4.64 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^3.55 ^-3.17 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^3.54 ^1.33 ^-2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-1.27 ^2.65 ^-3.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-4.23 ^-1.04 ^-2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^0.15 ^-2.18 ^-4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^0.66 ^-0.27 ^4.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-2.16 ^0.5 ^4.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-1.33 ^-2.34 ^3.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-4.16 ^1.08 ^2.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-2.17 ^3.15 ^2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^2.4 ^1.9 ^3.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^3.23 ^-0.94 ^3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^0.65 ^4.01 ^2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^3.22 ^3.34 ^1.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-1.35 ^4.59 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-4.57 ^-1.39 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-4.57 ^1.25 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^0.01 ^-4.28 ^2.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-2.82 ^-3.51 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^4.57 ^-1.25 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^2.83 ^-3.42 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^2.82 ^3.51 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^4.57 ^1.39 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-2.83 ^3.42 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-0.01 ^4.28 ^-2.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-3.22 ^-3.34 ^-1.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^1.35 ^-4.59 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^4.16 ^-1.08 ^-2.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^1.33 ^2.34 ^-3.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-3.23 ^0.94 ^-3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-0.65 ^-4.01 ^-2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-2.4 ^-1.9 ^-3.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^2.17 ^-3.15 ^-2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^2.16 ^-0.5 ^-4.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.239,0.64,0.012],scale:0.9} ^-0.66 ^0.27 ^-4.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.33 ^-0.41 ^-2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^2.21 ^1.09 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.97 ^-1.46 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.17 ^-2.25 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.25 ^-0.19 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.22 ^1.88 ^-1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.25 ^0.19 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.22 ^-1.88 ^1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-2.21 ^-1.09 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.97 ^1.46 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.17 ^2.25 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.33 ^0.41 ^2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.94 ^-1.1 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^2.08 ^0.4 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^2.45 ^-0.22 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.42 ^1.75 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.91 ^0.86 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.68 ^-1.57 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.06 ^-2.18 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.05 ^-0.35 ^-2.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.83 ^-1.43 ^-1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.61 ^1.0 ^-2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.39 ^1.97 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.22 ^2.43 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.89 ^-0.75 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^2.03 ^0.75 ^1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.22 ^-2.43 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^1.03 ^-1.96 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-2.03 ^-0.75 ^-1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.39 ^-1.97 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.03 ^1.96 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.89 ^0.75 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.83 ^1.43 ^1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^0.61 ^-1.0 ^2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.42 ^-1.75 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-2.45 ^0.22 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.06 ^2.18 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.05 ^0.35 ^2.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.68 ^1.57 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-0.91 ^-0.86 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-2.08 ^-0.4 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.143,0.071,0.0],scale:3.081} ^-1.94 ^1.1 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.726} ^1.26 ^0.0 ^-6.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^-3.65 ^0.0 ^-5.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^-6.42 ^0.0 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^-5.43 ^0.0 ^3.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^-1.26 ^0.0 ^6.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^3.65 ^0.0 ^5.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^6.42 ^0.0 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.726} ^5.43 ^0.0 ^-3.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_030.mcfunction new file mode 100644 index 000000000..87f764225 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_030.mcfunction @@ -0,0 +1,98 @@ +# frame 30 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.826 0 +# bo +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-4.33 ^0.07 ^-2.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-3.29 ^-3.51 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-3.98 ^1.48 ^2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-1.84 ^4.47 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^0.16 ^1.33 ^-4.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-0.73 ^-3.61 ^-3.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-0.16 ^-1.33 ^4.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^0.73 ^3.61 ^3.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^3.29 ^3.51 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^3.98 ^-1.48 ^-2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^1.84 ^-4.47 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^4.33 ^-0.07 ^2.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-4.88 ^0.91 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-4.48 ^-2.02 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-4.27 ^-1.2 ^2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-2.37 ^-4.19 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-2.98 ^-2.08 ^-3.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-3.63 ^2.67 ^-2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-3.42 ^3.5 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-2.45 ^0.83 ^-4.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-0.99 ^3.41 ^-3.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-0.34 ^-1.34 ^-4.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-0.85 ^-4.7 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^0.65 ^-4.75 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-2.43 ^0.09 ^4.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-2.03 ^-2.85 ^3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-0.65 ^4.75 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^-1.91 ^2.99 ^3.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^2.03 ^2.85 ^-3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^0.85 ^4.7 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^1.91 ^-2.99 ^-3.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^2.43 ^-0.09 ^-4.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^0.99 ^-3.41 ^3.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^0.34 ^1.34 ^4.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^2.37 ^4.19 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^4.27 ^1.2 ^-2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^3.42 ^-3.5 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^2.45 ^-0.83 ^4.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^3.63 ^-2.67 ^2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^2.98 ^2.08 ^3.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^4.48 ^2.02 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.228,0.621,0.013],scale:0.867} ^4.88 ^-0.91 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^2.31 ^-0.52 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.99 ^-2.29 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.09 ^-1.71 ^-1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.49 ^0.91 ^-2.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.64 ^1.95 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.95 ^-0.02 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.64 ^-1.95 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.95 ^0.02 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.99 ^2.29 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.09 ^1.71 ^1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.49 ^-0.91 ^2.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-2.31 ^0.52 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.41 ^-1.31 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.94 ^-1.65 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.63 ^-2.35 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.73 ^-1.36 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^2.5 ^-0.32 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.65 ^0.23 ^-1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.34 ^-0.47 ^-2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^2.32 ^0.84 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.26 ^1.68 ^-1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^2.11 ^1.13 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.29 ^-1.88 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.86 ^-0.55 ^2.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.92 ^-2.15 ^-1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.38 ^-2.49 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.86 ^0.55 ^-2.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.1 ^-0.99 ^-2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.38 ^2.49 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.29 ^1.88 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^1.1 ^0.99 ^2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^0.92 ^2.15 ^1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.26 ^-1.68 ^1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-2.11 ^-1.13 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.73 ^1.36 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.63 ^2.35 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-0.34 ^0.47 ^2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-2.32 ^-0.84 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.65 ^-0.23 ^1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-2.5 ^0.32 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.94 ^1.65 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.138,0.069,0.0],scale:3.055} ^-1.41 ^1.31 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.651} ^0.61 ^0.0 ^-6.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^-4.25 ^0.0 ^-5.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^-6.63 ^0.0 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^-5.12 ^0.0 ^4.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^-0.61 ^0.0 ^6.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^4.25 ^0.0 ^5.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^6.63 ^0.0 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.651} ^5.12 ^0.0 ^-4.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_031.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_031.mcfunction new file mode 100644 index 000000000..5e7426702 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_031.mcfunction @@ -0,0 +1,98 @@ +# frame 31 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.87 0 +# bo +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^4.08 ^2.88 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^0.55 ^1.44 ^-4.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-0.89 ^4.93 ^-1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^1.42 ^3.39 ^3.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^4.29 ^-1.05 ^2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^3.76 ^-2.25 ^-2.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-4.29 ^1.05 ^-2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-3.76 ^2.25 ^2.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-0.55 ^-1.44 ^4.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^0.89 ^-4.93 ^1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-1.42 ^-3.39 ^-3.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-4.08 ^-2.88 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^1.88 ^4.59 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^2.72 ^2.54 ^-3.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-0.2 ^3.75 ^-3.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^2.53 ^-0.48 ^-4.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^4.61 ^0.37 ^-2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^3.24 ^3.69 ^1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^0.31 ^4.89 ^1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^4.92 ^1.08 ^0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^3.36 ^1.37 ^3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^4.73 ^-1.94 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-0.51 ^-1.14 ^-4.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^1.37 ^-3.31 ^-3.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-3.05 ^3.52 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-2.2 ^1.47 ^-4.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-1.37 ^3.31 ^3.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-2.73 ^4.22 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^2.2 ^-1.47 ^4.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^0.51 ^1.14 ^4.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^2.73 ^-4.22 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^3.05 ^-3.52 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-3.36 ^-1.37 ^-3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-4.73 ^1.94 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-2.53 ^0.48 ^4.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^0.2 ^-3.75 ^3.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-0.31 ^-4.89 ^-1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-4.92 ^-1.08 ^-0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-3.24 ^-3.69 ^-1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-4.61 ^-0.37 ^2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-2.72 ^-2.54 ^3.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.217,0.601,0.014],scale:0.833} ^-1.88 ^-4.59 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.96 ^-0.33 ^-1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.34 ^-2.28 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-2.47 ^0.14 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.39 ^2.16 ^-0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.39 ^0.99 ^-2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.42 ^-1.75 ^-1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.39 ^-0.99 ^2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.42 ^1.75 ^1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.34 ^2.28 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^2.47 ^-0.14 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.39 ^-2.16 ^0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.96 ^0.33 ^1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-2.6 ^-0.11 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.95 ^-1.53 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-2.24 ^-1.26 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.54 ^-2.37 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.91 ^-1.22 ^-2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.97 ^1.08 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-2.27 ^1.35 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.93 ^0.39 ^-2.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.59 ^1.85 ^-1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.48 ^-0.44 ^-2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.03 ^-2.61 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.07 ^-2.3 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.68 ^-0.5 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.02 ^-1.92 ^1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.07 ^2.3 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-1.7 ^1.11 ^1.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.02 ^1.92 ^-1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.03 ^2.61 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.7 ^-1.11 ^-1.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.68 ^0.5 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.59 ^-1.85 ^1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^-0.48 ^0.44 ^2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.54 ^2.37 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^2.24 ^1.26 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^2.27 ^-1.35 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.93 ^-0.39 ^2.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.97 ^-1.08 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^0.91 ^1.22 ^2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^1.95 ^1.53 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.133,0.067,0.0],scale:3.024} ^2.6 ^0.11 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.57} ^-0.02 ^0.0 ^-6.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^-4.79 ^0.0 ^-4.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^-6.76 ^0.0 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^-4.77 ^0.0 ^4.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^0.02 ^0.0 ^6.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^4.79 ^0.0 ^4.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^6.76 ^0.0 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.57} ^4.77 ^0.0 ^-4.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_032.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_032.mcfunction new file mode 100644 index 000000000..01c4583f2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_032.mcfunction @@ -0,0 +1,98 @@ +# frame 32 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.909 0 +# bo +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-4.85 ^-0.82 ^-1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-0.77 ^-4.46 ^-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-2.83 ^-3.71 ^2.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-3.97 ^1.66 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-2.62 ^4.23 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-0.64 ^0.45 ^-5.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^2.62 ^-4.23 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^0.64 ^-0.45 ^5.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^0.77 ^4.46 ^2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^2.83 ^3.71 ^-2.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^3.97 ^-1.66 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^4.85 ^0.82 ^1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-4.51 ^-2.66 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-3.3 ^-3.1 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-2.12 ^-4.8 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-0.83 ^-2.36 ^-4.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-3.22 ^-0.22 ^-4.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-5.18 ^0.49 ^0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-4.0 ^-1.21 ^3.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-4.39 ^2.0 ^-2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-3.87 ^3.46 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-1.91 ^2.75 ^-4.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^1.88 ^-3.6 ^-3.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^1.96 ^-0.71 ^-4.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-0.13 ^-4.67 ^2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^1.08 ^-5.11 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-1.96 ^0.71 ^4.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-1.29 ^-2.44 ^4.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-1.08 ^5.11 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^-1.88 ^3.6 ^3.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^1.29 ^2.44 ^-4.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^0.13 ^4.67 ^-2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^3.87 ^-3.46 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^1.91 ^-2.75 ^4.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^0.83 ^2.36 ^4.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^2.12 ^4.8 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^4.0 ^1.21 ^-3.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^4.39 ^-2.0 ^2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^5.18 ^-0.49 ^-0.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^3.22 ^0.22 ^4.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^3.3 ^3.1 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.206,0.581,0.014],scale:0.8} ^4.51 ^2.66 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-2.01 ^-0.25 ^1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.96 ^1.91 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-2.44 ^-0.79 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.79 ^-2.55 ^0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.72 ^-0.93 ^2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.01 ^1.82 ^2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.72 ^0.93 ^-2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.01 ^-1.82 ^-2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.96 ^-1.91 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^2.44 ^0.79 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.79 ^2.55 ^-0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^2.01 ^0.25 ^-1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-2.62 ^-0.61 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-2.34 ^0.98 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-2.59 ^0.65 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.16 ^2.19 ^1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.19 ^0.92 ^2.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.64 ^-1.64 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.9 ^-1.96 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.76 ^-0.69 ^2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.04 ^-2.05 ^1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.41 ^0.52 ^2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.69 ^2.62 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.46 ^2.57 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.86 ^0.08 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.58 ^1.67 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.46 ^-2.57 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-1.43 ^-1.53 ^-1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.58 ^-1.67 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.69 ^-2.62 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.43 ^1.53 ^1.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.86 ^-0.08 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.04 ^2.05 ^-1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^-0.41 ^-0.52 ^-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.16 ^-2.19 ^-1.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^2.59 ^-0.65 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.9 ^1.96 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^0.76 ^0.69 ^-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.64 ^1.64 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^1.19 ^-0.92 ^-2.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^2.34 ^-0.98 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.128,0.065,0.0],scale:2.988} ^2.62 ^0.61 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.482} ^-0.63 ^0.0 ^-6.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^-5.28 ^0.0 ^-4.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^-6.84 ^0.0 ^0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^-4.39 ^0.0 ^5.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^0.63 ^0.0 ^6.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^5.28 ^0.0 ^4.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^6.84 ^0.0 ^-0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.482} ^4.39 ^0.0 ^-5.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_033.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_033.mcfunction new file mode 100644 index 000000000..7bdb184cd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_033.mcfunction @@ -0,0 +1,98 @@ +# frame 33 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.943 0 +# bo +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-1.48 ^-4.17 ^3.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^0.92 ^0.43 ^5.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-4.3 ^0.73 ^3.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-4.5 ^-2.56 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^0.61 ^-4.89 ^-2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^3.95 ^-3.04 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-0.61 ^4.89 ^2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-3.95 ^3.04 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-0.92 ^-0.43 ^-5.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^4.3 ^-0.73 ^-3.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^4.5 ^2.56 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^1.48 ^4.17 ^-3.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-3.4 ^-2.02 ^3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-0.33 ^-2.2 ^4.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-1.99 ^0.68 ^4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^2.87 ^-1.53 ^4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^1.45 ^-4.24 ^2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-3.51 ^-3.96 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-5.17 ^-1.08 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-0.52 ^-5.32 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-2.29 ^-4.38 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^2.68 ^-4.66 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^3.18 ^1.76 ^3.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^4.97 ^-0.28 ^2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-2.88 ^3.3 ^3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^0.19 ^3.13 ^4.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-4.97 ^0.28 ^-2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-4.85 ^2.21 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-0.19 ^-3.13 ^-4.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-3.18 ^-1.76 ^-3.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^4.85 ^-2.21 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^2.88 ^-3.3 ^-3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^2.29 ^4.38 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-2.68 ^4.66 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-2.87 ^1.53 ^-4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^1.99 ^-0.68 ^-4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^5.17 ^1.08 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^0.52 ^5.32 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^3.51 ^3.96 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^-1.45 ^4.24 ^-2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^0.33 ^2.2 ^-4.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.194,0.561,0.015],scale:0.768} ^3.4 ^2.02 ^-3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.48 ^-0.05 ^-2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^0.95 ^1.63 ^-2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.2 ^-1.33 ^-2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.12 ^-2.49 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-2.81 ^-0.24 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.53 ^2.3 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^2.81 ^0.24 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.53 ^-2.3 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-0.95 ^-1.63 ^2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.2 ^1.33 ^2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.12 ^2.49 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.48 ^0.05 ^2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-0.17 ^-0.81 ^-2.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-0.31 ^0.93 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.26 ^0.18 ^-2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-0.34 ^2.31 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.77 ^1.32 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.53 ^-1.49 ^-1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^0.04 ^-2.24 ^-1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-2.52 ^-0.17 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-2.31 ^-1.6 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-2.55 ^1.21 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.22 ^2.42 ^-0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-0.24 ^2.82 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^2.35 ^-0.64 ^-1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^2.21 ^1.1 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^0.24 ^-2.82 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.6 ^-2.14 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-2.21 ^-1.1 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.22 ^-2.42 ^0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.6 ^2.14 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-2.35 ^0.64 ^1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^2.31 ^1.6 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^2.55 ^-1.21 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^0.34 ^-2.31 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-1.26 ^-0.18 ^2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^-0.04 ^2.24 ^1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^2.52 ^0.17 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.53 ^1.49 ^1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^1.77 ^-1.32 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^0.31 ^-0.93 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.122,0.062,0.0],scale:2.948} ^0.17 ^0.81 ^2.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.39} ^-1.21 ^0.0 ^-6.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^-5.71 ^0.0 ^-3.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^-6.86 ^0.0 ^1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^-3.99 ^0.0 ^5.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^1.21 ^0.0 ^6.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^5.71 ^0.0 ^3.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^6.86 ^0.0 ^-1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.39} ^3.99 ^0.0 ^-5.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_034.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_034.mcfunction new file mode 100644 index 000000000..6acf6e47b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_034.mcfunction @@ -0,0 +1,98 @@ +# frame 34 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.97 0 +# bo +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^1.4 ^-3.21 ^-4.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^4.76 ^-2.69 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-0.31 ^-5.41 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-4.08 ^-2.64 ^-2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-1.35 ^1.79 ^-5.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^4.11 ^1.77 ^-3.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^1.35 ^-1.79 ^5.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-4.11 ^-1.77 ^3.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-4.76 ^2.69 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^0.31 ^5.41 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^4.08 ^2.64 ^2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-1.4 ^3.21 ^4.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^0.64 ^-5.06 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^3.62 ^-3.46 ^-2.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^2.62 ^-4.76 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^5.21 ^-0.54 ^-1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^3.24 ^-0.85 ^-4.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-1.58 ^-3.44 ^-3.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-2.58 ^-4.73 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^0.03 ^-0.83 ^-5.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-3.19 ^-0.5 ^-4.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^1.62 ^2.09 ^-4.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^5.19 ^-0.03 ^1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^4.81 ^2.59 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^0.62 ^-4.23 ^3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^3.59 ^-2.63 ^3.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-4.81 ^-2.59 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-2.6 ^-4.22 ^2.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-3.59 ^2.63 ^-3.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-5.19 ^0.03 ^-1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^2.6 ^4.22 ^-2.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-0.62 ^4.23 ^-3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^3.19 ^0.5 ^4.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-1.62 ^-2.09 ^4.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-5.21 ^0.54 ^1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-2.62 ^4.76 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^2.58 ^4.73 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-0.03 ^0.83 ^5.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^1.58 ^3.44 ^3.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-3.24 ^0.85 ^4.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-3.62 ^3.46 ^2.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.183,0.542,0.016],scale:0.735} ^-0.64 ^5.06 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.85 ^1.16 ^-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.76 ^-1.44 ^-2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.08 ^1.21 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.0 ^2.91 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.61 ^1.3 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.14 ^-1.39 ^-1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.61 ^-1.3 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.14 ^1.39 ^1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.76 ^1.44 ^2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.08 ^-1.21 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.0 ^-2.91 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.85 ^-1.16 ^2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.72 ^1.4 ^-2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.05 ^-0.16 ^-2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-1.67 ^-0.13 ^-2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.81 ^-1.66 ^-2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^1.76 ^-0.13 ^-2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.5 ^2.4 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-1.22 ^2.43 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.03 ^1.45 ^-1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^1.53 ^2.48 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.79 ^-0.05 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.45 ^-2.56 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^1.26 ^-2.53 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.76 ^-0.05 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-1.98 ^-1.61 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-1.26 ^2.53 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.48 ^1.53 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^1.98 ^1.61 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.45 ^2.56 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.48 ^-1.53 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^2.76 ^0.05 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-1.53 ^-2.48 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.79 ^0.05 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.81 ^1.66 ^2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^1.67 ^0.13 ^2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^1.22 ^-2.43 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-2.03 ^-1.45 ^1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.5 ^-2.4 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-1.76 ^0.13 ^2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^-0.05 ^0.16 ^2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.116,0.059,0.0],scale:2.902} ^0.72 ^-1.4 ^2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.292} ^-1.77 ^0.0 ^-6.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^-6.09 ^0.0 ^-3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^-6.84 ^0.0 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^-3.59 ^0.0 ^6.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^1.77 ^0.0 ^6.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^6.09 ^0.0 ^3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^6.84 ^0.0 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.292} ^3.59 ^0.0 ^-6.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_035.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_035.mcfunction new file mode 100644 index 000000000..4abbeb9e0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_035.mcfunction @@ -0,0 +1,98 @@ +# frame 35 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.99 0 +# bo +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-4.69 ^2.31 ^-1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-4.6 ^-0.8 ^3.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-1.94 ^4.4 ^2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^0.5 ^4.95 ^-2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-0.65 ^0.08 ^-5.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-3.8 ^-3.47 ^-2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^0.65 ^-0.08 ^5.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^3.8 ^3.47 ^2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^4.6 ^0.8 ^-3.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^1.94 ^-4.4 ^-2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-0.5 ^-4.95 ^2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^4.69 ^-2.31 ^1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-3.89 ^3.95 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-5.46 ^0.88 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-3.84 ^2.12 ^3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-4.94 ^-2.52 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-4.99 ^-0.68 ^-2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-2.46 ^4.27 ^-2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-0.84 ^5.5 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-3.14 ^1.41 ^-4.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-0.09 ^2.96 ^-4.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-2.62 ^-1.99 ^-4.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-3.0 ^-3.38 ^3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-2.53 ^-4.95 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-0.75 ^2.54 ^4.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-2.32 ^-0.52 ^5.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^2.53 ^4.95 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^1.1 ^4.63 ^2.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^2.32 ^0.52 ^-5.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^3.0 ^3.38 ^-3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^-1.1 ^-4.63 ^-2.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^0.75 ^-2.54 ^-4.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^0.09 ^-2.96 ^4.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^2.62 ^1.99 ^4.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^4.94 ^2.52 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^3.84 ^-2.12 ^-3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^0.84 ^-5.5 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^3.14 ^-1.41 ^4.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^2.46 ^-4.27 ^2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^4.99 ^0.68 ^2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^5.46 ^-0.88 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.172,0.522,0.016],scale:0.702} ^3.89 ^-3.95 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^1.39 ^-0.0 ^2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.77 ^2.18 ^1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-1.65 ^-0.82 ^2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.62 ^-2.69 ^1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.89 ^-0.84 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.03 ^2.17 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.89 ^0.84 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.03 ^-2.17 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.77 ^-2.18 ^-1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^1.65 ^0.82 ^-2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.62 ^2.69 ^-1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-1.39 ^0.0 ^-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.15 ^-0.49 ^2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.36 ^1.28 ^2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-1.42 ^0.8 ^2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.74 ^2.56 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.01 ^1.27 ^1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^1.18 ^-1.58 ^2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.61 ^-2.06 ^2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.51 ^-0.49 ^1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.06 ^-2.07 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.89 ^0.78 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.82 ^2.86 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.83 ^2.86 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.66 ^0.01 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.15 ^1.77 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.83 ^-2.86 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.16 ^-1.76 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.15 ^-1.77 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.82 ^-2.86 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.16 ^1.76 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^2.66 ^-0.01 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.06 ^2.07 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.89 ^-0.78 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.74 ^-2.56 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^1.42 ^-0.8 ^-2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.61 ^2.06 ^-2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.51 ^0.49 ^-1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-1.18 ^1.58 ^-2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-2.01 ^-1.27 ^-1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^-0.36 ^-1.28 ^-2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.11,0.057,0.0],scale:2.851} ^0.15 ^0.49 ^-2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.191} ^-2.3 ^0.0 ^-6.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^-6.42 ^0.0 ^-3.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^-6.78 ^0.0 ^2.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^-3.17 ^0.0 ^6.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^2.3 ^0.0 ^6.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^6.42 ^0.0 ^3.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^6.78 ^0.0 ^-2.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.191} ^3.17 ^0.0 ^-6.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_036.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_036.mcfunction new file mode 100644 index 000000000..a7a42eacc --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_036.mcfunction @@ -0,0 +1,98 @@ +# frame 36 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 2.0 0 +# bo +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^4.21 ^-3.75 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-1.47 ^-5.43 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^0.94 ^-2.59 ^-4.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^4.66 ^1.51 ^-2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^4.54 ^1.21 ^3.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^0.75 ^-3.08 ^4.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-4.54 ^-1.21 ^-3.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-0.75 ^3.08 ^-4.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^1.47 ^5.43 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-0.94 ^2.59 ^4.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-4.66 ^-1.51 ^2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-4.21 ^3.75 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^3.03 ^-3.73 ^-2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^1.61 ^-5.4 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-0.31 ^-4.72 ^-3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-0.42 ^-5.01 ^2.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^2.91 ^-4.02 ^2.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^5.21 ^-1.31 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^3.29 ^-0.63 ^-4.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^5.14 ^-1.49 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^5.4 ^1.6 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^3.11 ^-1.1 ^4.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-3.6 ^-4.08 ^1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-2.3 ^-2.7 ^4.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-2.11 ^-2.23 ^-4.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-3.53 ^-3.9 ^-2.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^2.3 ^2.7 ^-4.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^0.11 ^0.29 ^-5.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^3.53 ^3.9 ^2.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^3.6 ^4.08 ^-1.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-0.11 ^-0.29 ^5.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^2.11 ^2.23 ^4.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-5.4 ^-1.6 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-3.11 ^1.1 ^-4.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^0.42 ^5.01 ^-2.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^0.31 ^4.72 ^3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-3.29 ^0.63 ^4.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-5.14 ^1.49 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-5.21 ^1.31 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-2.91 ^4.02 ^-2.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-1.61 ^5.4 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.161,0.503,0.017],scale:0.67} ^-3.03 ^3.73 ^2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.68 ^1.42 ^-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.22 ^0.03 ^-2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-1.39 ^2.71 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^1.78 ^2.52 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.91 ^-0.28 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.44 ^-1.82 ^-2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.91 ^0.28 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.44 ^1.82 ^2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.22 ^-0.03 ^2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^1.39 ^-2.71 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-1.78 ^-2.52 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.68 ^-1.42 ^2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.42 ^2.43 ^-1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.91 ^0.85 ^-2.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.12 ^1.61 ^-1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-1.05 ^-1.05 ^-2.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.66 ^-0.24 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^1.44 ^2.32 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.23 ^3.08 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.11 ^0.67 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.75 ^1.32 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^1.97 ^-1.23 ^-2.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.35 ^-1.47 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.79 ^-2.55 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.53 ^1.76 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-3.01 ^0.18 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.79 ^2.55 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-1.08 ^2.66 ^1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^3.01 ^-0.18 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.35 ^1.47 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^1.08 ^-2.66 ^-1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.53 ^-1.76 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.75 ^-1.32 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-1.97 ^1.23 ^2.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^1.05 ^1.05 ^2.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^2.12 ^-1.61 ^1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.23 ^-3.08 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-2.11 ^-0.67 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-1.44 ^-2.32 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^-0.66 ^0.24 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.91 ^-0.85 ^2.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.104,0.054,0.0],scale:2.795} ^0.42 ^-2.43 ^1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:2.086} ^-2.79 ^0.0 ^-6.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^-6.7 ^0.0 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^-6.69 ^0.0 ^2.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^-2.76 ^0.0 ^6.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^2.79 ^0.0 ^6.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^6.7 ^0.0 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^6.69 ^0.0 ^-2.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:2.086} ^2.76 ^0.0 ^-6.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_037.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_037.mcfunction new file mode 100644 index 000000000..3b54df50c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_037.mcfunction @@ -0,0 +1,98 @@ +# frame 37 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.993 0 +# bo +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^4.44 ^-3.19 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^5.01 ^2.66 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^3.86 ^-1.13 ^4.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^0.13 ^-5.33 ^1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-1.03 ^-4.14 ^-3.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^1.98 ^0.8 ^-5.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^1.03 ^4.14 ^3.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-1.98 ^-0.8 ^5.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-5.01 ^-2.66 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-3.86 ^1.13 ^-4.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-0.13 ^5.33 ^-1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-4.44 ^3.19 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^4.88 ^-2.54 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^5.55 ^-0.31 ^-1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^5.21 ^0.9 ^2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^4.11 ^2.03 ^-3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^3.78 ^-1.4 ^-4.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^2.69 ^-5.01 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^2.34 ^-3.8 ^3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^2.0 ^-4.31 ^-3.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-0.53 ^-5.57 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^0.56 ^-1.96 ^-5.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^2.87 ^4.7 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^1.09 ^3.6 ^-4.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^2.88 ^1.77 ^4.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^3.55 ^4.0 ^1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-1.09 ^-3.6 ^4.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^1.1 ^-1.13 ^5.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-3.55 ^-4.0 ^-1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-2.87 ^-4.7 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-1.1 ^1.13 ^-5.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-2.88 ^-1.77 ^-4.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^0.53 ^5.57 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-0.56 ^1.96 ^5.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-4.11 ^-2.03 ^3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-5.21 ^-0.9 ^-2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-2.34 ^3.8 ^-3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-2.0 ^4.31 ^3.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-2.69 ^5.01 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-3.78 ^1.4 ^4.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-5.55 ^0.31 ^1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.15,0.484,0.018],scale:0.639} ^-4.88 ^2.54 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.0 ^1.61 ^-1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.32 ^1.85 ^-2.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-0.24 ^-1.0 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.7 ^-1.47 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.66 ^1.08 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-0.18 ^3.14 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.66 ^-1.08 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^0.18 ^-3.14 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.32 ^-1.85 ^2.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^0.24 ^1.0 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.7 ^1.47 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.0 ^-1.61 ^1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.32 ^0.36 ^-2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-0.4 ^2.04 ^-2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^0.63 ^0.5 ^-3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^0.67 ^2.93 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.28 ^2.79 ^-0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.76 ^0.08 ^-1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.73 ^-1.45 ^-2.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.74 ^1.58 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-3.15 ^-0.23 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.67 ^2.48 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.36 ^1.95 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.48 ^2.71 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.42 ^-1.22 ^-2.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.34 ^0.45 ^-2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.48 ^-2.71 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-0.04 ^-2.43 ^-2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.34 ^-0.45 ^2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-2.36 ^-1.95 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^0.04 ^2.43 ^2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-1.42 ^1.22 ^2.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^3.15 ^0.23 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.67 ^-2.48 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-0.67 ^-2.93 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^-0.63 ^-0.5 ^3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.73 ^1.45 ^2.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.74 ^-1.58 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^2.76 ^-0.08 ^1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.28 ^-2.79 ^0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^0.4 ^-2.04 ^2.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.098,0.051,0.0],scale:2.733} ^1.32 ^-0.36 ^2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.978} ^-3.24 ^0.0 ^-6.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^-6.94 ^0.0 ^-2.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^-6.58 ^0.0 ^3.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^-2.36 ^0.0 ^6.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^3.24 ^0.0 ^6.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^6.94 ^0.0 ^2.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^6.58 ^0.0 ^-3.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.978} ^2.36 ^0.0 ^-6.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_038.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_038.mcfunction new file mode 100644 index 000000000..3f664b318 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_038.mcfunction @@ -0,0 +1,98 @@ +# frame 38 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.967 0 +# bo +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^5.06 ^-2.05 ^1.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^2.16 ^2.2 ^4.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-0.03 ^-3.39 ^4.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^0.94 ^-5.56 ^-0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^3.74 ^-1.31 ^-4.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^4.5 ^3.48 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-3.74 ^1.31 ^4.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-4.5 ^-3.48 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-2.16 ^-2.2 ^-4.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^0.03 ^3.39 ^-4.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-0.94 ^5.56 ^0.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-5.06 ^2.05 ^-1.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^2.96 ^-3.2 ^3.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^4.25 ^0.09 ^3.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^1.25 ^-0.7 ^5.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^3.91 ^3.34 ^2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^5.62 ^0.84 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^3.53 ^-4.48 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^0.54 ^-5.26 ^2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^5.17 ^-1.98 ^-1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^2.75 ^-4.04 ^-2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^4.84 ^1.28 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^0.72 ^4.56 ^3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^2.09 ^5.32 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-2.22 ^-1.22 ^5.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-0.93 ^2.07 ^5.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-2.09 ^-5.32 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-2.66 ^-4.04 ^3.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^0.93 ^-2.07 ^-5.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-0.72 ^-4.56 ^-3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^2.66 ^4.04 ^-3.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^2.22 ^1.22 ^-5.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-2.75 ^4.04 ^2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-4.84 ^-1.28 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-3.91 ^-3.34 ^-2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-1.25 ^0.7 ^-5.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-0.54 ^5.26 ^-2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-5.17 ^1.98 ^1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-3.53 ^4.48 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-5.62 ^-0.84 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-4.25 ^-0.09 ^-3.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.139,0.466,0.018],scale:0.607} ^-2.96 ^3.2 ^-3.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-0.1 ^1.41 ^2.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.52 ^2.88 ^0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-2.89 ^0.03 ^1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-0.34 ^-1.99 ^2.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^2.62 ^-0.39 ^1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.89 ^2.62 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-2.62 ^0.39 ^-1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.89 ^-2.62 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.52 ^-2.88 ^-0.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^2.89 ^-0.03 ^-1.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^0.34 ^1.99 ^-2.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^0.1 ^-1.41 ^-2.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.76 ^0.84 ^2.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-0.95 ^2.52 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-2.59 ^1.71 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^0.22 ^3.23 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.05 ^2.37 ^1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-0.26 ^-0.34 ^3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.9 ^-1.15 ^2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.48 ^0.6 ^2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.34 ^-1.4 ^2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^2.65 ^1.31 ^1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-0.69 ^2.86 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.31 ^2.71 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-3.24 ^0.25 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-2.43 ^1.92 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.31 ^-2.71 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-2.81 ^-1.52 ^0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^2.43 ^-1.92 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^0.69 ^-2.86 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^2.81 ^1.52 ^-0.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^3.24 ^-0.25 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.34 ^1.4 ^-2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-2.65 ^-1.31 ^-1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-0.22 ^-3.23 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^2.59 ^-1.71 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.9 ^1.15 ^-2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.48 ^-0.6 ^-2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^0.26 ^0.34 ^-3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^-1.05 ^-2.37 ^-1.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^0.95 ^-2.52 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.092,0.048,0.0],scale:2.664} ^1.76 ^-0.84 ^-2.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.868} ^-3.67 ^0.0 ^-6.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^-7.15 ^0.0 ^-1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^-6.44 ^0.0 ^3.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^-1.96 ^0.0 ^7.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^3.67 ^0.0 ^6.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^7.15 ^0.0 ^1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^6.44 ^0.0 ^-3.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.868} ^1.96 ^0.0 ^-7.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_039.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_039.mcfunction new file mode 100644 index 000000000..5c6a76c7c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_039.mcfunction @@ -0,0 +1,98 @@ +# frame 39 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.925 0 +# bo +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^5.06 ^1.08 ^2.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^0.51 ^-1.38 ^5.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^3.27 ^-4.54 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^4.64 ^-0.76 ^-3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^2.72 ^4.73 ^-1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^0.17 ^4.35 ^3.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-2.72 ^-4.73 ^1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-0.17 ^-4.35 ^-3.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-0.51 ^1.38 ^-5.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-3.27 ^4.54 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-4.64 ^0.76 ^3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-5.06 ^-1.08 ^-2.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^4.9 ^-2.03 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^3.27 ^-0.18 ^4.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^2.22 ^-3.48 ^3.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^0.4 ^1.75 ^5.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^3.07 ^3.19 ^3.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^5.7 ^0.19 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^4.65 ^-3.11 ^-1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^4.57 ^3.41 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^4.33 ^2.34 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^1.7 ^5.34 ^1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-2.43 ^-0.37 ^5.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-2.63 ^3.0 ^4.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^0.32 ^-5.45 ^1.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-1.3 ^-3.59 ^4.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^2.63 ^-3.0 ^-4.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^1.82 ^-5.22 ^-1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^1.3 ^3.59 ^-4.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^2.43 ^0.37 ^-5.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-1.82 ^5.22 ^1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-0.32 ^5.45 ^-1.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-4.33 ^-2.34 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-1.7 ^-5.34 ^-1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-0.4 ^-1.75 ^-5.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-2.22 ^3.48 ^-3.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-4.65 ^3.11 ^1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-4.57 ^-3.41 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-5.7 ^-0.19 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-3.07 ^-3.19 ^-3.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-3.27 ^0.18 ^-4.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.129,0.447,0.019],scale:0.577} ^-4.9 ^2.03 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.0 ^-1.25 ^-2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^3.03 ^1.38 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.58 ^-1.85 ^1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-0.2 ^-3.29 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-1.47 ^-0.96 ^-2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^0.53 ^1.93 ^-2.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^1.47 ^0.96 ^2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-0.53 ^-1.93 ^2.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-3.03 ^-1.38 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.58 ^1.85 ^-1.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^0.2 ^3.29 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.0 ^1.25 ^2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.69 ^-1.82 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.96 ^0.08 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^3.3 ^-0.27 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.09 ^1.94 ^-1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^1.48 ^0.4 ^-2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^1.06 ^-2.67 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^1.4 ^-3.02 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^0.31 ^-1.3 ^-3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-0.98 ^-2.5 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-0.56 ^0.57 ^-3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^1.9 ^2.75 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^0.43 ^3.07 ^-1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.38 ^-0.52 ^2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^2.65 ^1.38 ^1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-0.43 ^-3.07 ^1.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^1.21 ^-2.22 ^2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.65 ^-1.38 ^-1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-1.9 ^-2.75 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-1.21 ^2.22 ^-2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.38 ^0.52 ^-2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^0.98 ^2.5 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^0.56 ^-0.57 ^3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.09 ^-1.94 ^1.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-3.3 ^0.27 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-1.4 ^3.02 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-0.31 ^1.3 ^3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-1.06 ^2.67 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-1.48 ^-0.4 ^2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.96 ^-0.08 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.085,0.044,0.0],scale:2.59} ^-2.69 ^1.82 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.756} ^-4.06 ^0.0 ^-6.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^-7.32 ^0.0 ^-1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^-6.3 ^0.0 ^4.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^-1.58 ^0.0 ^7.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^4.06 ^0.0 ^6.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^7.32 ^0.0 ^1.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^6.3 ^0.0 ^-4.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.756} ^1.58 ^0.0 ^-7.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_040.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_040.mcfunction new file mode 100644 index 000000000..8aa5a9fc1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_040.mcfunction @@ -0,0 +1,98 @@ +# frame 40 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.87 0 +# bo +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-4.18 ^3.87 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-4.17 ^-0.42 ^3.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-0.1 ^3.99 ^4.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^1.52 ^5.28 ^-1.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-1.54 ^1.67 ^-5.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-5.06 ^-1.85 ^-1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^1.54 ^-1.67 ^5.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^5.06 ^1.85 ^1.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^4.17 ^0.42 ^-3.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^0.1 ^-3.99 ^-4.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-1.52 ^-5.28 ^1.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^4.18 ^-3.87 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-2.52 ^4.62 ^2.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-4.91 ^2.03 ^2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-2.51 ^2.09 ^4.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-5.42 ^-1.34 ^1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-5.43 ^1.19 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-1.56 ^5.38 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^0.83 ^5.45 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-3.36 ^3.26 ^-3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-0.01 ^4.08 ^-3.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-3.88 ^-0.11 ^-4.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-3.35 ^-3.35 ^3.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-3.87 ^-4.19 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^0.84 ^1.36 ^5.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-1.55 ^-1.23 ^5.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^3.87 ^4.19 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^2.91 ^3.43 ^3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^1.55 ^1.23 ^-5.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^3.35 ^3.35 ^-3.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-2.91 ^-3.43 ^-3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-0.84 ^-1.36 ^-5.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^0.01 ^-4.08 ^3.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^3.88 ^0.11 ^4.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^5.42 ^1.34 ^-1.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^2.51 ^-2.09 ^-4.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^-0.83 ^-5.45 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^3.36 ^-3.26 ^3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^1.56 ^-5.38 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^5.43 ^-1.19 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^4.91 ^-2.03 ^-2.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.119,0.429,0.019],scale:0.547} ^2.52 ^-4.62 ^-2.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.87 ^-1.77 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.46 ^0.43 ^-3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.91 ^1.8 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.12 ^-0.41 ^2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^0.17 ^-3.14 ^1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-0.24 ^-2.62 ^-2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-0.17 ^3.14 ^-1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^0.24 ^2.62 ^2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.46 ^-0.43 ^3.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.91 ^-1.8 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.12 ^0.41 ^-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.87 ^1.77 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^3.4 ^0.02 ^-0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.55 ^-0.78 ^-2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.57 ^1.31 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^0.72 ^-1.29 ^-3.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.55 ^-2.58 ^-1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.93 ^-1.28 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^2.96 ^0.81 ^1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.79 ^-2.88 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.34 ^-2.09 ^2.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-0.04 ^-3.39 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-0.39 ^0.5 ^-3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.38 ^-1.3 ^-2.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.61 ^2.9 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^0.76 ^2.1 ^-2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.38 ^1.3 ^2.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^1.85 ^2.6 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-0.76 ^-2.1 ^2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^0.39 ^-0.5 ^3.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.85 ^-2.6 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.61 ^-2.9 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.34 ^2.09 ^-2.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^0.04 ^3.39 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-0.72 ^1.29 ^3.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.57 ^-1.31 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.96 ^-0.81 ^-1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.79 ^2.88 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.93 ^1.28 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-1.55 ^2.58 ^1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-2.55 ^0.78 ^2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.079,0.041,0.0],scale:2.509} ^-3.4 ^-0.02 ^0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.643} ^-4.42 ^0.0 ^-6.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^-7.47 ^0.0 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^-6.14 ^0.0 ^4.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^-1.22 ^0.0 ^7.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^4.42 ^0.0 ^6.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^7.47 ^0.0 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^6.14 ^0.0 ^-4.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.643} ^1.22 ^0.0 ^-7.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_041.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_041.mcfunction new file mode 100644 index 000000000..057110d3f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_041.mcfunction @@ -0,0 +1,98 @@ +# frame 41 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.805 0 +# bo +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-4.64 ^0.2 ^3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-2.33 ^5.11 ^0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-4.91 ^0.97 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-3.57 ^-4.38 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-0.16 ^-3.56 ^4.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^0.61 ^2.31 ^5.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^0.16 ^3.56 ^-4.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-0.61 ^-2.31 ^-5.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^2.33 ^-5.11 ^-0.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^4.91 ^-0.97 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^3.57 ^4.38 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^4.64 ^-0.2 ^-3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-5.61 ^0.69 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-4.09 ^3.12 ^2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-4.26 ^3.58 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-1.01 ^4.36 ^3.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-2.37 ^1.48 ^4.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-4.83 ^-2.45 ^1.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-4.99 ^-2.0 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-2.82 ^-1.97 ^4.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-2.19 ^-4.66 ^2.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^0.26 ^-0.73 ^5.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^0.73 ^5.58 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^2.46 ^3.93 ^3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-2.79 ^2.66 ^-4.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-1.28 ^5.09 ^-2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-2.46 ^-3.93 ^-3.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-3.25 ^-0.78 ^-4.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^1.28 ^-5.09 ^2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-0.73 ^-5.58 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^3.25 ^0.78 ^4.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^2.79 ^-2.66 ^4.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^2.19 ^4.66 ^-2.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^-0.26 ^0.73 ^-5.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^1.01 ^-4.36 ^-3.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^4.26 ^-3.58 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^4.99 ^2.0 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^2.82 ^1.97 ^-4.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^4.83 ^2.45 ^-1.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^2.37 ^-1.48 ^-4.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^4.09 ^-3.12 ^-2.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.109,0.412,0.02],scale:0.518} ^5.61 ^-0.69 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-2.67 ^1.63 ^1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^0.78 ^2.87 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-1.0 ^3.06 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-3.05 ^0.02 ^-1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-2.54 ^-2.04 ^1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-0.18 ^-0.28 ^3.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^2.54 ^2.04 ^-1.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^0.18 ^0.28 ^-3.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-0.78 ^-2.87 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^1.0 ^-3.06 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^3.05 ^-0.02 ^1.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^2.67 ^-1.63 ^-1.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-2.16 ^2.75 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-1.11 ^2.65 ^2.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-0.13 ^3.49 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^0.35 ^1.53 ^3.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-1.68 ^0.79 ^2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-3.36 ^0.97 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-2.38 ^1.81 ^-1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-3.06 ^-0.24 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-3.28 ^-1.19 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-1.6 ^-1.36 ^2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^2.25 ^1.68 ^2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^1.69 ^-0.18 ^3.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^0.91 ^3.0 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^1.95 ^2.89 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-1.69 ^0.18 ^-3.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-0.48 ^1.96 ^-2.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-1.95 ^-2.89 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-2.25 ^-1.68 ^-2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^0.48 ^-1.96 ^2.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-0.91 ^-3.0 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^3.28 ^1.19 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^1.6 ^1.36 ^-2.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^-0.35 ^-1.53 ^-3.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^0.13 ^-3.49 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^2.38 ^-1.81 ^1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^3.06 ^0.24 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^3.36 ^-0.97 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^1.68 ^-0.79 ^-2.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^1.11 ^-2.65 ^-2.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.037,0.0],scale:2.422} ^2.16 ^-2.75 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.529} ^-4.75 ^0.0 ^-5.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^-7.59 ^0.0 ^-0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^-5.98 ^0.0 ^4.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^-0.87 ^0.0 ^7.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^4.75 ^0.0 ^5.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^7.59 ^0.0 ^0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^5.98 ^0.0 ^-4.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.529} ^0.87 ^0.0 ^-7.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_042.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_042.mcfunction new file mode 100644 index 000000000..fb114c157 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_042.mcfunction @@ -0,0 +1,98 @@ +# frame 42 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.731 0 +# bo +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^2.99 ^-4.71 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-1.38 ^-3.38 ^-4.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^3.59 ^-0.22 ^-4.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^5.44 ^0.33 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^1.62 ^-2.49 ^4.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-2.6 ^-4.78 ^1.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-1.62 ^2.49 ^-4.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^2.6 ^4.78 ^-1.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^1.38 ^3.38 ^4.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-3.59 ^0.22 ^4.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-5.44 ^-0.33 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-2.99 ^4.71 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^3.87 ^-2.89 ^-2.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^0.95 ^-4.75 ^-2.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^1.3 ^-2.11 ^-5.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-2.34 ^-4.79 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^0.23 ^-5.58 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^4.96 ^-2.57 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^5.31 ^0.07 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^2.71 ^-4.23 ^2.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^4.15 ^-1.27 ^3.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-0.58 ^-4.27 ^3.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-4.01 ^-2.18 ^-3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-4.73 ^-3.0 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^1.16 ^1.33 ^-5.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-1.76 ^-0.52 ^-5.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^4.73 ^3.0 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^3.64 ^2.68 ^-3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^1.76 ^0.52 ^5.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^4.01 ^2.18 ^3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-3.64 ^-2.68 ^3.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-1.16 ^-1.33 ^5.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-4.15 ^1.27 ^-3.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^0.58 ^4.27 ^-3.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^2.34 ^4.79 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-1.3 ^2.11 ^5.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-5.31 ^-0.07 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-2.71 ^4.23 ^-2.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-4.96 ^2.57 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-0.23 ^5.58 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-0.95 ^4.75 ^2.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.099,0.395,0.021],scale:0.489} ^-3.87 ^2.89 ^2.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^0.3 ^0.89 ^-3.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-0.43 ^3.46 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^2.94 ^1.81 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^2.44 ^-1.79 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-1.25 ^-2.36 ^-2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-3.02 ^0.88 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^1.25 ^2.36 ^2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^3.02 ^-0.88 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^0.43 ^-3.46 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-2.94 ^-1.81 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-2.44 ^1.79 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-0.3 ^-0.89 ^3.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^1.91 ^1.58 ^-2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-0.08 ^2.56 ^-2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^1.47 ^3.09 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-2.03 ^2.55 ^-1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-1.6 ^1.04 ^-3.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^1.61 ^-0.53 ^-3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^3.16 ^0.01 ^-1.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-0.56 ^-0.86 ^-3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^0.7 ^-2.44 ^-2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-2.51 ^-0.87 ^-2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-1.69 ^3.09 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-3.21 ^1.57 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^2.46 ^2.45 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^0.48 ^3.42 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^3.21 ^-1.57 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^3.51 ^0.54 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-0.48 ^-3.42 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^1.69 ^-3.09 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-3.51 ^-0.54 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-2.46 ^-2.45 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-0.7 ^2.44 ^2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^2.51 ^0.87 ^2.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^2.03 ^-2.55 ^1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-1.47 ^-3.09 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-3.16 ^-0.01 ^1.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^0.56 ^0.86 ^3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-1.61 ^0.53 ^3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^1.6 ^-1.04 ^3.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^0.08 ^-2.56 ^2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.065,0.034,0.0],scale:2.327} ^-1.91 ^-1.58 ^2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.416} ^-5.05 ^0.0 ^-5.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^-7.68 ^0.0 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^-5.82 ^0.0 ^5.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^-0.54 ^0.0 ^7.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^5.05 ^0.0 ^5.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^7.68 ^0.0 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^5.82 ^0.0 ^-5.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.416} ^0.54 ^0.0 ^-7.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_043.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_043.mcfunction new file mode 100644 index 000000000..9deb6da77 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_043.mcfunction @@ -0,0 +1,98 @@ +# frame 43 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.652 0 +# bo +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-0.26 ^3.76 ^4.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-2.06 ^4.92 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-5.01 ^1.19 ^1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-1.19 ^-1.86 ^5.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^4.12 ^-0.02 ^3.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^3.58 ^4.17 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-4.12 ^0.02 ^-3.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-3.58 ^-4.17 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^2.06 ^-4.92 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^5.01 ^-1.19 ^-1.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^1.19 ^1.86 ^-5.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^0.26 ^-3.76 ^-4.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-3.1 ^2.91 ^3.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-1.36 ^5.1 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-4.16 ^3.59 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^0.89 ^5.35 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^1.95 ^4.66 ^2.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-0.85 ^1.12 ^5.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-3.65 ^-0.39 ^4.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^2.27 ^2.2 ^4.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^1.72 ^-1.1 ^5.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^4.52 ^2.44 ^1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-0.51 ^3.99 ^-3.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^2.81 ^3.55 ^-3.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-5.37 ^0.71 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-3.63 ^2.9 ^-2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-2.81 ^-3.55 ^3.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-5.05 ^-1.75 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^3.63 ^-2.9 ^2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^0.51 ^-3.99 ^3.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^5.05 ^1.75 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^5.37 ^-0.71 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-1.72 ^1.1 ^-5.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-4.52 ^-2.44 ^-1.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-0.89 ^-5.35 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^4.16 ^-3.59 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^3.65 ^0.39 ^-4.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-2.27 ^-2.2 ^-4.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^0.85 ^-1.12 ^-5.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^-1.95 ^-4.66 ^-2.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^1.36 ^-5.1 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.09,0.378,0.021],scale:0.462} ^3.1 ^-2.91 ^-3.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^1.21 ^-1.78 ^2.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^0.45 ^1.98 ^3.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.41 ^-0.55 ^2.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-1.2 ^-3.42 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.42 ^-2.66 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^3.44 ^0.67 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.42 ^2.66 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-3.44 ^-0.67 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-0.45 ^-1.98 ^-3.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.41 ^0.55 ^-2.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^1.2 ^3.42 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-1.21 ^1.78 ^-2.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-0.71 ^-1.37 ^3.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^0.98 ^0.11 ^3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-1.15 ^0.84 ^3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.29 ^1.55 ^2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.73 ^-0.66 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^0.01 ^-3.06 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.12 ^-2.33 ^1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.13 ^-2.61 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^0.72 ^-3.57 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^3.44 ^-1.17 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^0.97 ^3.17 ^1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.72 ^2.4 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.84 ^1.24 ^1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-1.16 ^2.73 ^2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.72 ^-2.4 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-3.44 ^-0.72 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^1.16 ^-2.73 ^-2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-0.97 ^-3.17 ^-1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^3.44 ^0.72 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.84 ^-1.24 ^-1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-0.72 ^3.57 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-3.44 ^1.17 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.29 ^-1.55 ^-2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^1.15 ^-0.84 ^-3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^2.12 ^2.33 ^-1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.13 ^2.61 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-0.01 ^3.06 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-2.73 ^0.66 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^-0.98 ^-0.11 ^-3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.058,0.03,0.0],scale:2.226} ^0.71 ^1.37 ^-3.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.303} ^-5.32 ^0.0 ^-5.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^-7.76 ^0.0 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^-5.65 ^0.0 ^5.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^-0.23 ^0.0 ^7.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^5.32 ^0.0 ^5.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^7.76 ^0.0 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^5.65 ^0.0 ^-5.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.303} ^0.23 ^0.0 ^-7.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_044.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_044.mcfunction new file mode 100644 index 000000000..2841467bb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_044.mcfunction @@ -0,0 +1,98 @@ +# frame 44 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.568 0 +# bo +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^3.61 ^1.14 ^3.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^4.75 ^-2.52 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^4.22 ^3.0 ^-1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^0.09 ^5.08 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-1.94 ^0.84 ^4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^0.95 ^-3.85 ^3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^1.94 ^-0.84 ^-4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-0.95 ^3.85 ^-3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-4.75 ^2.52 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-4.22 ^-3.0 ^1.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-0.09 ^-5.08 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-3.61 ^-1.14 ^-3.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^4.6 ^2.44 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^4.91 ^-0.81 ^2.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^5.27 ^0.28 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^3.35 ^-3.74 ^1.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^2.68 ^-1.59 ^4.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^2.17 ^3.66 ^3.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^2.53 ^4.75 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^0.98 ^1.17 ^5.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-1.09 ^3.48 ^3.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-0.58 ^-1.77 ^5.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^2.74 ^-4.47 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^0.5 ^-5.25 ^1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^3.62 ^1.27 ^-3.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^3.93 ^-1.98 ^-3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-0.5 ^5.25 ^-1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^1.92 ^4.03 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-3.93 ^1.98 ^3.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-2.74 ^4.47 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-1.92 ^-4.03 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-3.62 ^-1.27 ^3.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^1.09 ^-3.48 ^-3.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^0.58 ^1.77 ^-5.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-3.35 ^3.74 ^-1.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-5.27 ^-0.28 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-2.53 ^-4.75 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-0.98 ^-1.17 ^-5.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-2.17 ^-3.66 ^-3.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-2.68 ^1.59 ^-4.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-4.91 ^0.81 ^-2.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.08,0.362,0.022],scale:0.435} ^-4.6 ^-2.44 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^3.38 ^1.41 ^-0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^0.79 ^0.93 ^-3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^0.17 ^3.63 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^1.4 ^2.18 ^2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^2.78 ^-1.41 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^2.41 ^-2.18 ^-1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-2.78 ^1.41 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-2.41 ^2.18 ^1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-0.79 ^-0.93 ^3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-0.17 ^-3.63 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-1.4 ^-2.18 ^-2.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-3.38 ^-1.41 ^0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^2.09 ^2.97 ^-0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^2.45 ^1.38 ^-2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^0.57 ^2.69 ^-2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^1.88 ^-0.74 ^-3.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^3.4 ^-0.46 ^-1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^2.81 ^2.11 ^1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^0.92 ^3.42 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^3.62 ^-0.0 ^0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^2.46 ^0.45 ^2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^3.05 ^-2.11 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-0.36 ^-0.73 ^-3.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^0.59 ^-2.57 ^-2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-1.53 ^2.97 ^-1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-1.17 ^1.38 ^-3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-0.59 ^2.57 ^2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-1.31 ^3.42 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^1.17 ^-1.38 ^3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^0.36 ^0.73 ^3.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^1.31 ^-3.42 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^1.53 ^-2.97 ^1.63 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-2.46 ^-0.45 ^-2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-3.05 ^2.11 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-1.88 ^0.74 ^3.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-0.57 ^-2.69 ^2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-0.92 ^-3.42 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-3.62 ^0.0 ^-0.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-2.81 ^-2.11 ^-1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-3.4 ^0.46 ^1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-2.45 ^-1.38 ^2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.051,0.026,0.0],scale:2.117} ^-2.09 ^-2.97 ^0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.192} ^-5.57 ^0.0 ^-5.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^-7.82 ^0.0 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^-5.49 ^0.0 ^5.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^0.06 ^0.0 ^7.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^5.57 ^0.0 ^5.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^7.82 ^0.0 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^5.49 ^0.0 ^-5.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.192} ^-0.06 ^0.0 ^-7.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_045.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_045.mcfunction new file mode 100644 index 000000000..b02a3b9f3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_045.mcfunction @@ -0,0 +1,98 @@ +# frame 45 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.481 0 +# bo +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^4.58 ^2.45 ^0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^2.94 ^-1.59 ^4.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^4.31 ^-2.73 ^-1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^2.55 ^1.41 ^-4.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^0.1 ^5.12 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^0.34 ^3.26 ^4.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-0.1 ^-5.12 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-0.34 ^-3.26 ^-4.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-2.94 ^1.59 ^-4.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-4.31 ^2.73 ^1.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-2.55 ^-1.41 ^4.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-4.58 ^-2.45 ^-0.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^5.22 ^-0.16 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^4.42 ^0.51 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^4.26 ^-2.54 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^1.93 ^0.99 ^4.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^2.89 ^3.36 ^2.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^4.19 ^2.27 ^-2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^4.03 ^-0.77 ^-3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^2.75 ^4.45 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^1.56 ^3.84 ^-3.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^0.26 ^4.93 ^1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^0.23 ^-1.76 ^4.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-1.3 ^1.09 ^4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^2.48 ^-4.61 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^1.67 ^-3.94 ^3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^1.3 ^-1.09 ^-4.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^2.33 ^-3.52 ^-3.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-1.67 ^3.94 ^-3.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-0.23 ^1.76 ^-4.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-2.33 ^3.52 ^3.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-2.48 ^4.61 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-1.56 ^-3.84 ^3.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-0.26 ^-4.93 ^-1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-1.93 ^-0.99 ^-4.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-4.26 ^2.54 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-4.03 ^0.77 ^3.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-2.75 ^-4.45 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-4.19 ^-2.27 ^2.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-2.89 ^-3.36 ^-2.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-4.42 ^-0.51 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.072,0.347,0.022],scale:0.409} ^-5.22 ^0.16 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-1.24 ^0.21 ^3.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^1.37 ^-2.56 ^2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.47 ^1.25 ^2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-0.61 ^3.46 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-3.61 ^1.02 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.39 ^-2.71 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^3.61 ^-1.02 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.39 ^2.71 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-1.37 ^2.56 ^-2.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.47 ^-1.25 ^-2.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^0.61 ^-3.46 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^1.24 ^-0.21 ^-3.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^0.72 ^0.86 ^3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^0.08 ^-1.38 ^3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.25 ^-0.77 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-0.6 ^-3.1 ^2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.13 ^-1.47 ^2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-1.08 ^2.16 ^2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^1.09 ^2.77 ^2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.85 ^0.72 ^2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.48 ^2.64 ^1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-3.52 ^-0.99 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^1.16 ^-3.54 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-1.04 ^-3.63 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^3.57 ^0.14 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.92 ^-2.11 ^1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^1.04 ^3.63 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.85 ^2.33 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.92 ^2.11 ^-1.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-1.16 ^3.54 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.85 ^-2.33 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-3.57 ^-0.14 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.48 ^-2.64 ^-1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^3.52 ^0.99 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^0.6 ^3.1 ^-2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-2.25 ^0.77 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-1.09 ^-2.77 ^-2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.85 ^-0.72 ^-2.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^1.08 ^-2.16 ^-2.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^2.13 ^1.47 ^-2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-0.08 ^1.38 ^-3.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.043,0.021,0.0],scale:2.0} ^-0.72 ^-0.86 ^-3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:1.083} ^-5.8 ^0.0 ^-5.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^-7.87 ^0.0 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^-5.34 ^0.0 ^5.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^0.33 ^0.0 ^7.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^5.8 ^0.0 ^5.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^7.87 ^0.0 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^5.34 ^0.0 ^-5.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:1.083} ^-0.33 ^0.0 ^-7.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_046.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_046.mcfunction new file mode 100644 index 000000000..64be2c8e8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_046.mcfunction @@ -0,0 +1,98 @@ +# frame 46 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.391 0 +# bo +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.11 ^1.69 ^-3.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^4.87 ^-1.3 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^1.71 ^-3.43 ^-3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-1.89 ^0.22 ^-4.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-0.96 ^4.61 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.22 ^3.67 ^1.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^0.96 ^-4.61 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.22 ^-3.67 ^-1.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-4.87 ^1.3 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-1.71 ^3.43 ^3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^1.89 ^-0.22 ^4.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.11 ^-1.69 ^3.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^2.83 ^-1.03 ^-4.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^4.69 ^0.23 ^-1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.87 ^-2.78 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^4.75 ^1.39 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.72 ^3.15 ^-1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^0.71 ^1.12 ^-4.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-0.11 ^-1.89 ^-4.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^1.26 ^3.7 ^-3.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-1.68 ^2.84 ^-3.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^1.33 ^4.87 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.97 ^-0.89 ^3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.0 ^2.03 ^3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^1.57 ^-4.73 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^3.43 ^-3.48 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.0 ^-2.03 ^-3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-0.89 ^-4.18 ^-2.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.43 ^3.48 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.97 ^0.89 ^-3.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^0.89 ^4.18 ^2.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-1.57 ^4.73 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^1.68 ^-2.84 ^3.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-1.33 ^-4.87 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-4.75 ^-1.39 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.87 ^2.78 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^0.11 ^1.89 ^4.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-1.26 ^-3.7 ^3.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-0.71 ^-1.12 ^4.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-3.72 ^-3.15 ^1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-4.69 ^-0.23 ^1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.063,0.332,0.023],scale:0.385} ^-2.83 ^1.03 ^4.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-2.28 ^-0.25 ^3.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^1.59 ^0.78 ^3.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-1.02 ^3.29 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-3.63 ^1.1 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-2.63 ^-2.77 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^0.59 ^-2.96 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^2.63 ^2.77 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-0.59 ^2.96 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-1.59 ^-0.78 ^-3.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^1.02 ^-3.29 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^3.63 ^-1.1 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^2.28 ^0.25 ^-3.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-1.94 ^1.79 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-0.4 ^0.31 ^3.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^0.34 ^2.39 ^2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^1.28 ^-1.28 ^3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-0.99 ^-1.89 ^3.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-3.47 ^0.5 ^1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-2.73 ^2.58 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-2.88 ^-1.77 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-3.68 ^-0.98 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-1.2 ^-3.37 ^1.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^3.07 ^-0.19 ^2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^2.48 ^-2.39 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^0.95 ^3.56 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^2.48 ^2.09 ^2.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-2.48 ^2.39 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-0.95 ^3.68 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-2.48 ^-2.09 ^-2.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-3.07 ^0.19 ^-2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^0.95 ^-3.68 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-0.95 ^-3.56 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^3.68 ^0.98 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^1.2 ^3.37 ^-1.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-1.28 ^1.28 ^-3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^-0.34 ^-2.39 ^-2.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^2.73 ^-2.58 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^2.88 ^1.77 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^3.47 ^-0.5 ^-1.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^0.99 ^1.89 ^-3.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^0.4 ^-0.31 ^-3.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.036,0.017,0.0],scale:1.876} ^1.94 ^-1.79 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.976} ^-6.0 ^0.0 ^-5.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^-7.91 ^0.0 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^-5.19 ^0.0 ^6.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^0.58 ^0.0 ^7.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^6.0 ^0.0 ^5.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^7.91 ^0.0 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^5.19 ^0.0 ^-6.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.976} ^-0.58 ^0.0 ^-7.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_047.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_047.mcfunction new file mode 100644 index 000000000..3733f6766 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_047.mcfunction @@ -0,0 +1,98 @@ +# frame 47 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.301 0 +# bo +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-2.15 ^0.96 ^4.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-3.7 ^3.13 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-4.43 ^-1.85 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-0.37 ^-3.69 ^3.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^2.87 ^0.17 ^3.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^0.82 ^4.38 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-2.87 ^-0.17 ^-3.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-0.82 ^-4.38 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^3.7 ^-3.13 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^4.43 ^1.85 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^0.37 ^3.69 ^-3.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^2.15 ^-0.96 ^-4.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-3.87 ^-0.53 ^2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-3.44 ^2.4 ^2.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-4.78 ^0.75 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-1.69 ^4.42 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-0.79 ^3.14 ^3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-1.49 ^-1.61 ^4.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-2.82 ^-3.26 ^2.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^0.42 ^0.66 ^4.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^1.47 ^-2.07 ^4.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^2.17 ^2.67 ^3.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-1.95 ^4.01 ^-1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^0.7 ^4.74 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-4.29 ^-1.19 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-3.86 ^1.74 ^-2.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-0.7 ^-4.74 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-3.08 ^-3.66 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^3.86 ^-1.74 ^2.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^1.95 ^-4.01 ^1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^3.08 ^3.66 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^4.29 ^1.19 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-1.47 ^2.07 ^-4.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-2.17 ^-2.67 ^-3.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^1.69 ^-4.42 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^4.78 ^-0.75 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^2.82 ^3.26 ^-2.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^-0.42 ^-0.66 ^-4.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^1.49 ^1.61 ^-4.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^0.79 ^-3.14 ^-3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^3.44 ^-2.4 ^-2.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.055,0.318,0.023],scale:0.362} ^3.87 ^0.53 ^-2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^3.22 ^-1.99 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^2.41 ^1.25 ^2.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^0.27 ^-2.11 ^3.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-0.26 ^-3.78 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^1.56 ^-1.46 ^-3.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^3.21 ^1.65 ^-1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-1.56 ^1.46 ^3.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-3.21 ^-1.65 ^1.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-2.41 ^-1.25 ^-2.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-0.27 ^2.11 ^-3.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^0.26 ^3.78 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-3.22 ^1.99 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^2.05 ^-2.41 ^2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^3.31 ^-0.44 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^1.58 ^-0.5 ^3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^3.31 ^1.7 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^3.78 ^-0.2 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^1.74 ^-3.39 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^0.01 ^-3.46 ^1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^2.81 ^-2.03 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^0.77 ^-3.08 ^-2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^2.8 ^0.11 ^-2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^1.57 ^2.95 ^1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^2.04 ^3.19 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-0.76 ^-0.38 ^3.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^0.5 ^1.59 ^3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-2.04 ^-3.19 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-1.73 ^-2.2 ^2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-0.5 ^-1.59 ^-3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-1.57 ^-2.95 ^-1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^1.73 ^2.2 ^-2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^0.76 ^0.38 ^-3.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-0.77 ^3.08 ^2.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-2.8 ^-0.11 ^2.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-3.31 ^-1.7 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-1.58 ^0.5 ^-3.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-0.01 ^3.46 ^-1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-2.81 ^2.03 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-1.74 ^3.39 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-3.78 ^0.2 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-3.31 ^0.44 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.013,0.0],scale:1.746} ^-2.05 ^2.41 ^-2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.873} ^-6.18 ^0.0 ^-5.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^-7.94 ^0.0 ^0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^-5.05 ^0.0 ^6.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^0.81 ^0.0 ^7.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^6.18 ^0.0 ^5.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^7.94 ^0.0 ^-0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^5.05 ^0.0 ^-6.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.873} ^-0.81 ^0.0 ^-7.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_048.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_048.mcfunction new file mode 100644 index 000000000..660ae4f85 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_048.mcfunction @@ -0,0 +1,98 @@ +# frame 48 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.21 0 +# bo +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^3.76 ^-1.46 ^-2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-0.56 ^-1.2 ^-4.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^1.77 ^2.85 ^-3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^3.97 ^2.06 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^3.01 ^-2.48 ^2.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^0.21 ^-4.5 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-3.01 ^2.48 ^-2.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-0.21 ^4.5 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^0.56 ^1.2 ^4.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-1.77 ^-2.85 ^3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-3.97 ^-2.06 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-3.76 ^1.46 ^2.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^3.25 ^0.82 ^-3.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^1.88 ^-1.57 ^-3.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^0.71 ^0.97 ^-4.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-0.2 ^-3.35 ^-3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^2.33 ^-3.51 ^-1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^4.54 ^0.35 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^3.37 ^2.89 ^-1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^3.98 ^-2.32 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^4.1 ^-0.25 ^2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^1.89 ^-4.1 ^0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-2.66 ^-1.92 ^-3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-2.21 ^-3.86 ^-1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-0.73 ^3.14 ^-3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-2.1 ^0.75 ^-4.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^2.21 ^3.86 ^1.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^0.91 ^4.32 ^-1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^2.1 ^-0.75 ^4.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^2.66 ^1.92 ^3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-0.91 ^-4.32 ^1.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^0.73 ^-3.14 ^3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-4.1 ^0.25 ^-2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-1.89 ^4.1 ^-0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^0.2 ^3.35 ^3.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-0.71 ^-0.97 ^4.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-3.37 ^-2.89 ^1.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-3.98 ^2.32 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-4.54 ^-0.35 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-2.33 ^3.51 ^1.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-1.88 ^1.57 ^3.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.048,0.305,0.024],scale:0.339} ^-3.25 ^-0.82 ^3.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^3.38 ^-1.62 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^2.89 ^2.13 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^1.51 ^-0.79 ^3.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^0.13 ^-3.62 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^0.66 ^-2.45 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^2.37 ^1.11 ^-2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-0.66 ^2.45 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-2.37 ^-1.11 ^2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-2.89 ^-2.13 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-1.51 ^0.79 ^-3.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-0.13 ^3.62 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-3.38 ^1.62 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^2.88 ^-1.42 ^1.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^3.69 ^0.3 ^0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^2.59 ^0.79 ^2.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^3.09 ^1.9 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^3.38 ^-0.3 ^-1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^2.07 ^-3.08 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^0.97 ^-2.59 ^2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^2.38 ^-2.39 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^0.47 ^-3.57 ^-1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^1.78 ^-0.79 ^-3.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^1.62 ^3.38 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^1.31 ^2.78 ^-2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^0.5 ^0.97 ^3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^1.31 ^2.69 ^2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-1.31 ^-2.78 ^2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-0.5 ^-1.11 ^3.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-1.31 ^-2.69 ^-2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-1.62 ^-3.38 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^0.5 ^1.11 ^-3.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-0.5 ^-0.97 ^-3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-0.47 ^3.57 ^1.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-1.78 ^0.79 ^3.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-3.09 ^-1.9 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-2.59 ^-0.79 ^-2.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-0.97 ^2.59 ^-2.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-2.38 ^2.39 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-2.07 ^3.08 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-3.38 ^0.3 ^1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-3.69 ^-0.3 ^-0.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.021,0.009,0.0],scale:1.613} ^-2.88 ^1.42 ^-1.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.773} ^-6.35 ^0.0 ^-4.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^-7.96 ^0.0 ^1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^-4.91 ^0.0 ^6.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^1.02 ^0.0 ^7.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^6.35 ^0.0 ^4.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^7.96 ^0.0 ^-1.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^4.91 ^0.0 ^-6.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.773} ^-1.02 ^0.0 ^-7.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_049.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_049.mcfunction new file mode 100644 index 000000000..0a0844863 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_049.mcfunction @@ -0,0 +1,98 @@ +# frame 49 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.121 0 +# bo +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-1.54 ^1.07 ^3.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^2.14 ^-1.57 ^3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^2.33 ^2.84 ^2.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-1.66 ^3.98 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-4.31 ^0.28 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-1.96 ^-3.15 ^2.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^4.31 ^-0.28 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^1.96 ^3.15 ^-2.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-2.14 ^1.57 ^-3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-2.33 ^-2.84 ^-2.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^1.66 ^-3.98 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^1.54 ^-1.07 ^-3.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^0.47 ^2.3 ^3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^0.36 ^-0.29 ^4.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^2.63 ^0.75 ^3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^0.11 ^-2.77 ^3.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-2.06 ^-1.22 ^3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-1.88 ^2.97 ^2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^0.4 ^4.01 ^1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-3.44 ^0.79 ^2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-3.5 ^2.51 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-3.68 ^-1.69 ^1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^2.23 ^-3.26 ^1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-0.18 ^-4.19 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^3.9 ^1.51 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^3.79 ^-1.09 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^0.18 ^4.19 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^2.52 ^3.52 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-3.79 ^1.09 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-2.23 ^3.26 ^-1.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-2.52 ^-3.52 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-3.9 ^-1.51 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^3.5 ^-2.51 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^3.68 ^1.69 ^-1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-0.11 ^2.77 ^-3.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-2.63 ^-0.75 ^-3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-0.4 ^-4.01 ^-1.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^3.44 ^-0.79 ^-2.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^1.88 ^-2.97 ^-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^2.06 ^1.22 ^-3.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-0.36 ^0.29 ^-4.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.041,0.293,0.024],scale:0.319} ^-0.47 ^-2.3 ^-3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.79 ^-1.16 ^2.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^2.92 ^1.89 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-0.29 ^2.02 ^2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-2.0 ^-1.37 ^2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^0.16 ^-3.58 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^3.2 ^-1.56 ^-0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-0.16 ^3.58 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-3.2 ^1.56 ^0.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-2.92 ^-1.89 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^0.29 ^-2.02 ^-2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^2.0 ^1.37 ^-2.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.79 ^1.16 ^-2.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^0.88 ^0.5 ^3.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^2.77 ^0.43 ^2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.55 ^2.3 ^2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^3.6 ^0.19 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^2.94 ^-1.6 ^1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-0.12 ^-1.49 ^3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.34 ^0.38 ^3.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.15 ^-2.79 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.08 ^-2.91 ^1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.98 ^-3.02 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^2.89 ^1.92 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^3.06 ^-0.12 ^-1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-0.27 ^3.29 ^1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.62 ^3.22 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-3.06 ^0.12 ^1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-2.05 ^2.1 ^2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.62 ^-3.22 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-2.89 ^-1.92 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^2.05 ^-2.1 ^-2.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^0.27 ^-3.29 ^-1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.08 ^2.91 ^-1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.98 ^3.02 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-3.6 ^-0.19 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.55 ^-2.3 ^-2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^1.34 ^-0.38 ^-3.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-1.15 ^2.79 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^0.12 ^1.49 ^-3.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-2.94 ^1.6 ^-1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-2.77 ^-0.43 ^-2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.015,0.005,0.0],scale:1.478} ^-0.88 ^-0.5 ^-3.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.678} ^-6.49 ^0.0 ^-4.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^-7.98 ^0.0 ^1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^-4.79 ^0.0 ^6.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^1.21 ^0.0 ^7.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^6.49 ^0.0 ^4.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^7.98 ^0.0 ^-1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^4.79 ^0.0 ^-6.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.678} ^-1.21 ^0.0 ^-7.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_050.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_050.mcfunction new file mode 100644 index 000000000..684b4ea59 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_050.mcfunction @@ -0,0 +1,98 @@ +# frame 50 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 1.034 0 +# bo +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-2.64 ^-2.7 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-3.33 ^-0.58 ^2.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-3.44 ^1.46 ^-1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-0.43 ^-0.19 ^-4.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^1.54 ^-3.24 ^-1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-0.25 ^-3.48 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-1.54 ^3.24 ^1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^0.25 ^3.48 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^3.33 ^0.58 ^-2.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^3.44 ^-1.46 ^1.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^0.43 ^0.19 ^4.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^2.64 ^2.7 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-3.57 ^-0.73 ^-1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-3.51 ^-1.93 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-3.97 ^0.52 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-2.1 ^-2.39 ^2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-1.7 ^-3.63 ^0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-1.8 ^-1.7 ^-3.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-2.27 ^0.75 ^-3.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-0.65 ^-3.49 ^-1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^0.65 ^-2.02 ^-3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^0.76 ^-3.95 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-1.7 ^-0.23 ^3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^0.1 ^-1.94 ^3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-2.92 ^2.77 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-2.86 ^1.57 ^2.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-0.1 ^1.94 ^-3.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-1.87 ^2.91 ^-2.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^2.86 ^-1.57 ^-2.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^1.7 ^0.23 ^-3.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^1.87 ^-2.91 ^2.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^2.92 ^-2.77 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-0.65 ^2.02 ^3.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^-0.76 ^3.95 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^2.1 ^2.39 ^-2.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^3.97 ^-0.52 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^2.27 ^-0.75 ^3.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^0.65 ^3.49 ^1.9 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^1.8 ^1.7 ^3.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^1.7 ^3.63 ^-0.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^3.51 ^1.93 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.034,0.281,0.024],scale:0.299} ^3.57 ^0.73 ^1.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.77 ^-2.52 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-3.27 ^-0.84 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.91 ^-2.94 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.24 ^-2.54 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^1.82 ^-0.19 ^2.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-1.59 ^0.86 ^2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-1.82 ^0.19 ^-2.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^1.59 ^-0.86 ^-2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^3.27 ^0.84 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.91 ^2.94 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.24 ^2.54 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.77 ^2.52 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.99 ^-3.21 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.37 ^-1.98 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.46 ^-2.22 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.86 ^0.01 ^1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-1.38 ^-0.98 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.86 ^-2.97 ^1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.78 ^-3.22 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.62 ^-1.59 ^2.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.38 ^-1.6 ^1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.13 ^0.4 ^3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-3.24 ^0.99 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.25 ^2.0 ^1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-1.6 ^-1.62 ^-2.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.99 ^-0.39 ^-1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.25 ^-2.0 ^-1.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.4 ^-2.23 ^-2.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.99 ^0.39 ^1.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^3.24 ^-0.99 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.4 ^2.23 ^2.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^1.6 ^1.62 ^2.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-2.38 ^1.6 ^-1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.13 ^-0.4 ^-3.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.86 ^-0.01 ^-1.82 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.46 ^2.22 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.78 ^3.22 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.62 ^1.59 ^-2.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^-0.86 ^2.97 ^-1.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^1.38 ^0.98 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^2.37 ^1.98 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.001,0.0],scale:1.343} ^0.99 ^3.21 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.588} ^-6.62 ^0.0 ^-4.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^-7.99 ^0.0 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^-4.68 ^0.0 ^6.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^1.38 ^0.0 ^7.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^6.62 ^0.0 ^4.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^7.99 ^0.0 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^4.68 ^0.0 ^-6.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.588} ^-1.38 ^0.0 ^-7.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_051.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_051.mcfunction new file mode 100644 index 000000000..9a7a247ba --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_051.mcfunction @@ -0,0 +1,98 @@ +# frame 51 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.95 0 +# bo +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^3.27 ^0.95 ^1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^2.27 ^1.92 ^-2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^0.47 ^3.57 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^0.04 ^0.87 ^3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^1.57 ^-2.44 ^2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^2.95 ^-1.8 ^-1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-1.57 ^2.44 ^-2.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-2.95 ^1.8 ^1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-2.27 ^-1.92 ^2.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-0.47 ^-3.57 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-0.04 ^-0.87 ^-3.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-3.27 ^-0.95 ^-1.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^2.19 ^2.65 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^3.25 ^1.68 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^1.61 ^3.22 ^-0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^3.07 ^0.07 ^-2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^3.66 ^-0.5 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^1.94 ^1.07 ^2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^0.3 ^2.61 ^2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^2.84 ^-0.88 ^2.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^0.95 ^-0.92 ^3.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^2.66 ^-2.49 ^0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^1.31 ^0.62 ^-3.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^1.71 ^-1.57 ^-2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-0.65 ^3.53 ^-0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^0.41 ^2.56 ^-2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-1.71 ^1.57 ^2.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-1.46 ^3.15 ^1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-0.41 ^-2.56 ^2.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-1.31 ^-0.62 ^3.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^1.46 ^-3.15 ^-1.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^0.65 ^-3.53 ^0.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-0.95 ^0.92 ^-3.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-2.66 ^2.49 ^-0.58 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-3.07 ^-0.07 ^2.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-1.61 ^-3.22 ^0.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-0.3 ^-2.61 ^-2.59 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-2.84 ^0.88 ^-2.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-1.94 ^-1.07 ^-2.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-3.66 ^0.5 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-3.25 ^-1.68 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.028,0.27,0.025],scale:0.282} ^-2.19 ^-2.65 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.07 ^-0.62 ^2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.71 ^-2.2 ^1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.67 ^0.89 ^2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-1.58 ^2.37 ^1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.93 ^0.19 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-1.51 ^-2.63 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.93 ^-0.19 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^1.51 ^2.63 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.71 ^2.2 ^-1.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.67 ^-0.89 ^-2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^1.58 ^-2.37 ^-1.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.07 ^0.62 ^-2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.82 ^0.16 ^2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.8 ^-1.65 ^2.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.81 ^-0.77 ^2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.47 ^-2.84 ^1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.1 ^-1.91 ^1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.15 ^1.03 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.53 ^1.92 ^2.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.94 ^-0.25 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.65 ^1.5 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.61 ^-1.44 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^1.35 ^-2.68 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.04 ^-2.94 ^-0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.11 ^0.42 ^2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.14 ^-1.4 ^1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.04 ^2.94 ^0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^1.28 ^2.07 ^1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.14 ^1.4 ^-1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-1.35 ^2.68 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-1.28 ^-2.07 ^-1.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-2.11 ^-0.42 ^-2.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.65 ^-1.5 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.61 ^1.44 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.47 ^2.84 ^-1.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^-0.81 ^0.77 ^-2.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.53 ^-1.92 ^-2.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.94 ^0.25 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.15 ^-1.03 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^2.1 ^1.91 ^-1.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.8 ^1.65 ^-2.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.004,0.0,0.0],scale:1.212} ^0.82 ^-0.16 ^-2.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.503} ^-6.74 ^0.0 ^-4.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^-8.0 ^0.0 ^1.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^-4.57 ^0.0 ^6.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^1.53 ^0.0 ^8.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^6.74 ^0.0 ^4.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^8.0 ^0.0 ^-1.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^4.57 ^0.0 ^-6.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.503} ^-1.53 ^0.0 ^-8.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_052.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_052.mcfunction new file mode 100644 index 000000000..c3ead03f8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_052.mcfunction @@ -0,0 +1,98 @@ +# frame 52 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.869 0 +# bo +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.37 ^1.27 ^2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^3.26 ^-0.46 ^0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.93 ^2.67 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.22 ^2.89 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.84 ^-0.1 ^2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^0.93 ^-2.17 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.84 ^0.1 ^-2.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-0.93 ^2.17 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-3.26 ^0.46 ^-0.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.93 ^-2.67 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.22 ^-2.89 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.37 ^-1.27 ^-2.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.94 ^2.31 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^2.72 ^0.47 ^1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^3.06 ^1.3 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^2.46 ^-1.55 ^1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.35 ^-0.53 ^2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^0.08 ^2.45 ^2.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^0.42 ^3.27 ^0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-0.28 ^0.69 ^3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.8 ^1.64 ^2.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-0.54 ^-1.33 ^2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^2.64 ^-1.97 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.27 ^-2.98 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^2.22 ^1.62 ^-1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^3.0 ^-0.22 ^-1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.27 ^2.98 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^0.59 ^2.84 ^-1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-3.0 ^0.22 ^1.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-2.64 ^1.97 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-0.59 ^-2.84 ^1.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-2.22 ^-1.62 ^1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^1.8 ^-1.64 ^-2.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^0.54 ^1.33 ^-2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-2.46 ^1.55 ^-1.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-3.06 ^-1.3 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-0.42 ^-3.27 ^-0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^0.28 ^-0.69 ^-3.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-0.08 ^-2.45 ^-2.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.35 ^0.53 ^-2.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-2.72 ^-0.47 ^-1.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.022,0.261,0.025],scale:0.265} ^-1.94 ^-2.31 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.81 ^1.13 ^-1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.23 ^-1.53 ^-1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-2.46 ^-0.58 ^0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.41 ^1.86 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.48 ^2.43 ^-0.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.58 ^0.33 ^-2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.48 ^-2.43 ^0.76 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.58 ^-0.33 ^2.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.23 ^1.53 ^1.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^2.46 ^0.58 ^-0.55 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.41 ^-1.86 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.81 ^-1.13 ^1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-2.51 ^0.32 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.79 ^-0.23 ^-1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-2.17 ^-1.24 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.38 ^-0.7 ^-2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.72 ^0.86 ^-2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.89 ^1.76 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-2.27 ^0.75 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.78 ^2.09 ^-1.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.55 ^2.52 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.62 ^1.62 ^-1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.1 ^-1.99 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.17 ^-0.9 ^-2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.73 ^-1.77 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.0 ^-2.32 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.17 ^0.9 ^2.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-1.79 ^-0.54 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.0 ^2.32 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.1 ^1.99 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.79 ^0.54 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.73 ^1.77 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.55 ^-2.52 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^-0.62 ^-1.62 ^1.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.38 ^0.7 ^2.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^2.17 ^1.24 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^2.27 ^-0.75 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.78 ^-2.09 ^1.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.89 ^-1.76 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^0.72 ^-0.86 ^2.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^1.79 ^0.23 ^1.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:1.085} ^2.51 ^-0.32 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.425} ^-6.84 ^0.0 ^-4.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^-8.0 ^0.0 ^1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^-4.48 ^0.0 ^6.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^1.66 ^0.0 ^8.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^6.84 ^0.0 ^4.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^8.0 ^0.0 ^-1.66 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^4.48 ^0.0 ^-6.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.425} ^-1.66 ^0.0 ^-8.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_053.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_053.mcfunction new file mode 100644 index 000000000..67eccc820 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_053.mcfunction @@ -0,0 +1,98 @@ +# frame 53 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.794 0 +# bo +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.37 ^0.07 ^-2.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.67 ^2.14 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.63 ^-0.77 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.18 ^-2.58 ^-1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.29 ^-0.79 ^-1.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.37 ^2.13 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.29 ^0.79 ^1.62 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.37 ^-2.13 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.67 ^-2.14 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.63 ^0.77 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.18 ^2.58 ^1.35 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.37 ^-0.07 ^2.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.76 ^-0.41 ^-2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.2 ^1.3 ^-2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.53 ^0.81 ^-1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.18 ^2.51 ^-1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.59 ^1.29 ^-2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.32 ^-1.48 ^-2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.65 ^-1.96 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.13 ^-0.42 ^-2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.24 ^-1.98 ^-1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.15 ^0.79 ^-1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.87 ^2.77 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.91 ^2.77 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.89 ^0.01 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.33 ^1.72 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.91 ^-2.77 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.35 ^-1.7 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.33 ^-1.72 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.87 ^-2.77 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.35 ^1.7 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.89 ^-0.01 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.24 ^1.98 ^1.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^2.15 ^-0.79 ^1.8 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.18 ^-2.51 ^1.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-2.53 ^-0.81 ^1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.65 ^1.96 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^1.13 ^0.42 ^2.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-0.32 ^1.48 ^2.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^0.59 ^-1.29 ^2.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.2 ^-1.3 ^2.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.017,0.252,0.025],scale:0.251} ^-1.76 ^0.41 ^2.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.75 ^-0.11 ^-1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.16 ^-0.05 ^-2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.41 ^-1.78 ^-0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.49 ^-1.13 ^0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.59 ^1.01 ^0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.58 ^1.68 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.59 ^-1.01 ^-0.77 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.58 ^-1.68 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.16 ^0.05 ^2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.41 ^1.78 ^0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.49 ^1.13 ^-0.83 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.75 ^0.11 ^1.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.27 ^-1.11 ^-1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.94 ^-0.09 ^-1.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.15 ^-1.07 ^-1.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.25 ^0.96 ^-1.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.37 ^0.92 ^-1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.9 ^-0.73 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.11 ^-1.71 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.96 ^0.53 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.81 ^-0.07 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.28 ^1.59 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.96 ^0.64 ^-1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.53 ^1.65 ^-1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.7 ^-1.64 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.03 ^-0.62 ^-1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.53 ^-1.65 ^1.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.1 ^-2.04 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-1.03 ^0.62 ^1.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.96 ^-0.64 ^1.68 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.1 ^2.04 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^-0.7 ^1.64 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.81 ^0.07 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.28 ^-1.59 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.25 ^-0.96 ^1.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.15 ^1.07 ^1.73 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.11 ^1.71 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.96 ^-0.53 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.9 ^0.73 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.37 ^-0.92 ^1.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^0.94 ^0.09 ^1.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.965} ^1.27 ^1.11 ^1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.354} ^-6.92 ^0.0 ^-4.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^-8.01 ^0.0 ^1.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^-4.4 ^0.0 ^6.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^1.78 ^0.0 ^8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^6.92 ^0.0 ^4.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^8.01 ^0.0 ^-1.78 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^4.4 ^0.0 ^-6.92 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.354} ^-1.78 ^0.0 ^-8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_054.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_054.mcfunction new file mode 100644 index 000000000..94f178cac --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_054.mcfunction @@ -0,0 +1,98 @@ +# frame 54 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.725 0 +# bo +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.62 ^1.6 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.9 ^2.19 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.15 ^0.4 ^2.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.81 ^-0.96 ^1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^2.27 ^0.0 ^-0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.59 ^1.95 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-2.27 ^-0.0 ^0.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.59 ^-1.95 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.9 ^-2.19 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.15 ^-0.4 ^-2.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.81 ^0.96 ^-1.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.62 ^-1.6 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.87 ^1.18 ^2.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.42 ^2.23 ^0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.61 ^1.52 ^1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.18 ^2.43 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.3 ^2.09 ^-0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^2.02 ^0.38 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.98 ^-0.33 ^2.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^2.29 ^0.94 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^2.4 ^-0.56 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.68 ^1.15 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.59 ^1.85 ^-0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.72 ^1.71 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.42 ^0.23 ^2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.86 ^1.29 ^1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.72 ^-1.71 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.43 ^-0.91 ^2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.86 ^-1.29 ^-1.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.59 ^-1.85 ^0.4 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.43 ^0.91 ^-2.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^1.42 ^-0.23 ^-2.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-2.4 ^0.56 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.68 ^-1.15 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.18 ^-2.43 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^0.61 ^-1.52 ^-1.85 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.98 ^0.33 ^-2.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-2.29 ^-0.94 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-2.02 ^-0.38 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-1.3 ^-2.09 ^0.26 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.42 ^-2.23 ^-0.98 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.013,0.244,0.026],scale:0.238} ^-0.87 ^-1.18 ^-2.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.01 ^-0.27 ^-1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.85 ^-1.12 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.22 ^0.36 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.1 ^1.18 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.29 ^0.19 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.71 ^-1.22 ^-0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.29 ^-0.19 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.71 ^1.22 ^0.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.85 ^1.12 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.22 ^-0.36 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.1 ^-1.18 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.01 ^0.27 ^1.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.71 ^0.05 ^-1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.49 ^-0.82 ^-1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.22 ^-0.44 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.08 ^-1.38 ^-0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.42 ^-0.88 ^-1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.06 ^0.53 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.66 ^0.9 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.76 ^-0.05 ^-1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.81 ^0.81 ^-0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.17 ^-0.6 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.55 ^-1.35 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.36 ^-1.41 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.48 ^0.1 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.25 ^-0.77 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.36 ^1.41 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.13 ^0.93 ^-0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.25 ^0.77 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.55 ^1.35 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.13 ^-0.93 ^0.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.48 ^-0.1 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.81 ^-0.81 ^0.94 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-1.17 ^0.6 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.08 ^1.38 ^0.53 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^1.22 ^0.44 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.66 ^-0.9 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.76 ^0.05 ^1.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.06 ^-0.53 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^-0.42 ^0.88 ^1.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.49 ^0.82 ^1.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.854} ^0.71 ^-0.05 ^1.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.29} ^-6.99 ^0.0 ^-4.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^-8.01 ^0.0 ^1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^-4.33 ^0.0 ^6.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^1.88 ^0.0 ^8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^6.99 ^0.0 ^4.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^8.01 ^0.0 ^-1.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^4.33 ^0.0 ^-6.99 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.29} ^-1.88 ^0.0 ^-8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_055.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_055.mcfunction new file mode 100644 index 000000000..a313c260c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_055.mcfunction @@ -0,0 +1,98 @@ +# frame 55 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.662 0 +# bo +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.56 ^-1.89 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.77 ^-0.26 ^0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.03 ^-0.61 ^1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.45 ^-1.28 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.52 ^-1.35 ^-1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.47 ^-0.72 ^-1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.52 ^1.35 ^1.38 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.47 ^0.72 ^1.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.77 ^0.26 ^-0.89 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.03 ^0.61 ^-1.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.45 ^1.28 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.56 ^1.89 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.31 ^-1.47 ^1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.37 ^-1.27 ^0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.02 ^-0.51 ^1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.91 ^-0.58 ^-0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.19 ^-1.54 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.53 ^-1.86 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.87 ^-1.11 ^1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.02 ^-1.91 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.16 ^-1.55 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.56 ^-1.22 ^-1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.9 ^0.6 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.72 ^0.33 ^-0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.29 ^0.44 ^1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.35 ^0.64 ^1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.72 ^-0.33 ^0.97 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.89 ^0.07 ^1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.35 ^-0.64 ^-1.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.9 ^-0.6 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.89 ^-0.07 ^-1.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.29 ^-0.44 ^-1.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^1.16 ^1.55 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.56 ^1.22 ^1.49 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.91 ^0.58 ^0.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.02 ^0.51 ^-1.64 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.87 ^1.11 ^-1.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.02 ^1.91 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^0.53 ^1.86 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.19 ^1.54 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-1.37 ^1.27 ^-0.72 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.009,0.237,0.026],scale:0.226} ^-0.31 ^1.47 ^-1.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.52 ^0.53 ^-0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.16 ^-0.2 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.5 ^0.68 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.18 ^0.94 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.93 ^0.23 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.72 ^-0.48 ^-0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.93 ^-0.23 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.72 ^0.48 ^0.48 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.16 ^0.2 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.5 ^-0.68 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.18 ^-0.94 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.52 ^-0.53 ^0.65 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.02 ^0.71 ^-0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.21 ^0.19 ^-0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.39 ^0.29 ^-0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.33 ^-0.4 ^-0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.73 ^0.03 ^-0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.41 ^0.86 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.19 ^0.96 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.85 ^0.44 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.65 ^0.69 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.97 ^-0.15 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.2 ^-0.67 ^-0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.32 ^-0.84 ^-0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.84 ^0.27 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.64 ^-0.25 ^-0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.32 ^0.84 ^0.42 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.71 ^0.68 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.64 ^0.25 ^0.71 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.2 ^0.67 ^0.7 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.71 ^-0.68 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.84 ^-0.27 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.65 ^-0.69 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.97 ^0.15 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.33 ^0.4 ^0.84 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.39 ^-0.29 ^0.86 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^0.19 ^-0.96 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.85 ^-0.44 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.41 ^-0.86 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.73 ^-0.03 ^0.67 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.21 ^-0.19 ^0.95 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.755} ^-0.02 ^-0.71 ^0.69 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.235} ^-7.06 ^0.0 ^-4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^-8.01 ^0.0 ^1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^-4.28 ^0.0 ^7.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^1.96 ^0.0 ^8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^7.06 ^0.0 ^4.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^8.01 ^0.0 ^-1.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^4.28 ^0.0 ^-7.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.235} ^-1.96 ^0.0 ^-8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_056.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_056.mcfunction new file mode 100644 index 000000000..1c06c929c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_056.mcfunction @@ -0,0 +1,98 @@ +# frame 56 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.608 0 +# bo +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.36 ^-0.14 ^1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.44 ^-0.26 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.35 ^-1.37 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.0 ^-0.68 ^0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.74 ^0.87 ^0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.77 ^1.13 ^0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.74 ^-0.87 ^-0.96 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.77 ^-1.13 ^-0.61 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.44 ^0.26 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.35 ^1.37 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.0 ^0.68 ^-0.88 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.36 ^0.14 ^-1.44 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.42 ^-0.89 ^1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.06 ^-0.24 ^1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.05 ^-0.96 ^0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.3 ^0.51 ^0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.66 ^0.58 ^1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.37 ^-0.48 ^1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.38 ^-1.21 ^0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.22 ^0.43 ^1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.02 ^0.11 ^1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.01 ^1.17 ^0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.43 ^0.25 ^-0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.04 ^1.06 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.64 ^-1.32 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.28 ^-0.66 ^-0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.04 ^-1.06 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.25 ^-1.47 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.28 ^0.66 ^0.39 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.43 ^-0.25 ^0.34 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.25 ^1.47 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.64 ^1.32 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-1.02 ^-0.11 ^-1.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.01 ^-1.17 ^-0.93 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.3 ^-0.51 ^-0.54 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.05 ^0.96 ^-0.45 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.38 ^1.21 ^-0.79 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.22 ^-0.43 ^-1.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^-0.37 ^0.48 ^-1.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.66 ^-0.58 ^-1.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^1.06 ^0.24 ^-1.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.006,0.232,0.026],scale:0.217} ^0.42 ^0.89 ^-1.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.44 ^-0.22 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.12 ^0.31 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.18 ^-0.25 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.04 ^-0.6 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.47 ^-0.26 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.52 ^0.3 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.47 ^0.26 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.52 ^-0.3 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.12 ^-0.31 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.18 ^0.25 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.04 ^0.6 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.44 ^0.22 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.15 ^-0.28 ^-0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.33 ^0.05 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.03 ^0.04 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.38 ^0.36 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.56 ^0.05 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.28 ^-0.48 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.08 ^-0.5 ^-0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.53 ^-0.28 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.3 ^-0.51 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.58 ^0.03 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.05 ^0.54 ^-0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.29 ^0.53 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.38 ^0.01 ^-0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.2 ^0.34 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.29 ^-0.53 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.41 ^-0.33 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.2 ^-0.34 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.05 ^-0.54 ^0.27 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.41 ^0.33 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.38 ^-0.01 ^0.47 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.3 ^0.51 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.58 ^-0.03 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.38 ^-0.36 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.03 ^-0.04 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^-0.08 ^0.5 ^0.33 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.53 ^0.28 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.28 ^0.48 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.56 ^-0.05 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.33 ^-0.05 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.0,0.0],scale:0.669} ^0.15 ^0.28 ^0.52 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.188} ^-7.1 ^0.0 ^-4.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^-8.01 ^0.0 ^2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^-4.23 ^0.0 ^7.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^2.03 ^0.0 ^8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^7.1 ^0.0 ^4.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^8.01 ^0.0 ^-2.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^4.23 ^0.0 ^-7.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.188} ^-2.03 ^0.0 ^-8.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_057.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_057.mcfunction new file mode 100644 index 000000000..2a9df2f13 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_057.mcfunction @@ -0,0 +1,98 @@ +# frame 57 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.563 0 +# bo +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.56 ^-0.26 ^-0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.82 ^-0.46 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.82 ^0.5 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.03 ^0.61 ^-0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.45 ^-0.28 ^-0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.04 ^-0.94 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.45 ^0.28 ^0.81 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.04 ^0.94 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.82 ^0.46 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.82 ^-0.5 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.03 ^-0.61 ^0.75 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.56 ^0.26 ^0.74 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.81 ^0.14 ^-0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.81 ^-0.42 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.96 ^0.02 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.5 ^-0.82 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.35 ^-0.7 ^-0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.35 ^0.21 ^-0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.5 ^0.65 ^-0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.07 ^-0.32 ^-0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.24 ^0.19 ^-0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.24 ^-0.72 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.46 ^-0.63 ^0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.0 ^-0.91 ^0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.75 ^0.46 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.75 ^-0.11 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.0 ^0.91 ^-0.32 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.46 ^0.85 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.75 ^0.11 ^-0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.46 ^0.63 ^-0.57 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.46 ^-0.85 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.75 ^-0.46 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.24 ^-0.19 ^0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^-0.24 ^0.72 ^0.6 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.5 ^0.82 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.96 ^-0.02 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.5 ^-0.65 ^0.51 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.07 ^0.32 ^0.91 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.35 ^-0.21 ^0.87 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.35 ^0.7 ^0.56 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.81 ^0.42 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.003,0.227,0.026],scale:0.21} ^0.81 ^-0.14 ^0.5 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.12 ^0.22 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.31 ^0.07 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.06 ^0.29 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.2 ^0.24 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.11 ^-0.0 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.2 ^-0.11 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.11 ^0.0 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.2 ^0.11 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.31 ^-0.07 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.06 ^-0.29 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.2 ^-0.24 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.12 ^-0.22 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.11 ^0.3 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.26 ^0.17 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.22 ^0.21 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.3 ^-0.02 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.19 ^0.07 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.04 ^0.27 ^-0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.08 ^0.31 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.01 ^0.13 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.18 ^0.14 ^-0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.06 ^-0.06 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.3 ^-0.1 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.24 ^-0.21 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.1 ^0.17 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.25 ^0.05 ^0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.24 ^0.21 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.08 ^0.23 ^0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.25 ^-0.05 ^-0.2 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.3 ^0.1 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.08 ^-0.23 ^-0.21 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.1 ^-0.17 ^-0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.18 ^-0.14 ^0.23 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.06 ^0.06 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.3 ^0.02 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.22 ^-0.21 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.08 ^-0.31 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.01 ^-0.13 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^-0.04 ^-0.27 ^0.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.19 ^-0.07 ^0.25 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.26 ^-0.17 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.005,0.004,0.0],scale:0.598} ^0.11 ^-0.3 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.15} ^-7.14 ^0.0 ^-4.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^-8.02 ^0.0 ^2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^-4.19 ^0.0 ^7.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^2.08 ^0.0 ^8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^7.14 ^0.0 ^4.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^8.02 ^0.0 ^-2.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^4.19 ^0.0 ^-7.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.15} ^-2.08 ^0.0 ^-8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_058.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_058.mcfunction new file mode 100644 index 000000000..291b36a79 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_058.mcfunction @@ -0,0 +1,98 @@ +# frame 58 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.529 0 +# bo +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.47 ^-0.0 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.25 ^-0.4 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.14 ^-0.29 ^0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.13 ^0.22 ^0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.24 ^0.42 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.31 ^0.04 ^-0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.24 ^-0.42 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.31 ^-0.04 ^0.37 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.25 ^0.4 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.14 ^0.29 ^-0.36 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.13 ^-0.22 ^-0.41 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.47 ^0.0 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.36 ^-0.17 ^0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.42 ^-0.24 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.23 ^-0.4 ^0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.32 ^-0.21 ^-0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.46 ^0.02 ^-0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.36 ^0.13 ^0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.16 ^-0.04 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.42 ^0.24 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.22 ^0.38 ^0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.32 ^0.27 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.07 ^-0.36 ^-0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.1 ^-0.1 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.06 ^-0.42 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.01 ^-0.48 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.1 ^0.1 ^0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.1 ^-0.19 ^0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.01 ^0.48 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.07 ^0.36 ^0.31 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.1 ^0.19 ^-0.43 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^-0.06 ^0.42 ^-0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.22 ^-0.38 ^-0.22 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.32 ^-0.27 ^0.24 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.32 ^0.21 ^0.29 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.23 ^0.4 ^-0.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.16 ^0.04 ^-0.46 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.42 ^-0.24 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.36 ^-0.13 ^-0.3 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.46 ^-0.02 ^0.16 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.42 ^0.24 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.001,0.224,0.026],scale:0.204} ^0.36 ^0.17 ^-0.28 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.02 ^0.1 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.03 ^-0.02 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.11 ^0.06 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.03 ^0.12 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.1 ^0.08 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.11 ^-0.01 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.1 ^-0.08 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.11 ^0.01 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.03 ^0.02 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.11 ^-0.06 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.03 ^-0.12 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.02 ^-0.1 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.06 ^0.1 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.0 ^0.05 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.08 ^0.02 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.05 ^-0.02 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.07 ^0.06 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.01 ^0.13 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.09 ^0.11 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.07 ^0.11 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.04 ^0.12 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.13 ^0.04 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.0 ^-0.09 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.08 ^-0.08 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.13 ^-0.02 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.08 ^-0.06 ^-0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.08 ^0.08 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.13 ^0.04 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.08 ^0.06 ^0.09 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.0 ^0.09 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.13 ^-0.04 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.13 ^0.02 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.04 ^-0.12 ^-0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.13 ^-0.04 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.05 ^0.02 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.08 ^-0.02 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.09 ^-0.11 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.07 ^-0.11 ^0.04 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.01 ^-0.13 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^-0.07 ^-0.06 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.0 ^-0.05 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.01,0.009,0.0],scale:0.545} ^0.06 ^-0.1 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.123} ^-7.17 ^0.0 ^-4.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^-8.02 ^0.0 ^2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^-4.17 ^0.0 ^7.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^2.12 ^0.0 ^8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^7.17 ^0.0 ^4.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^8.02 ^0.0 ^-2.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^4.17 ^0.0 ^-7.17 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.123} ^-2.12 ^0.0 ^-8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_059.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_059.mcfunction new file mode 100644 index 000000000..25077b23b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_059.mcfunction @@ -0,0 +1,98 @@ +# frame 59 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.508 0 +# bo +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.13 ^-0.03 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.07 ^0.01 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.04 ^-0.12 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.04 ^-0.1 ^-0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.06 ^0.04 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.08 ^0.1 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.06 ^-0.04 ^0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.08 ^-0.1 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.07 ^-0.01 ^-0.11 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.04 ^0.12 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.04 ^0.1 ^0.08 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.13 ^0.03 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.1 ^-0.08 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.12 ^-0.01 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.06 ^-0.06 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.09 ^0.07 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.13 ^0.05 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.1 ^-0.07 ^-0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.05 ^-0.13 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.11 ^0.01 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.06 ^-0.04 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.09 ^0.08 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.02 ^0.06 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.03 ^0.12 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.01 ^-0.09 ^0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.0 ^-0.02 ^0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.03 ^-0.12 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.03 ^-0.13 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.0 ^0.02 ^-0.13 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.02 ^-0.06 ^-0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.03 ^0.13 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^0.01 ^0.09 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.06 ^0.04 ^0.12 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.09 ^-0.08 ^0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.09 ^-0.07 ^-0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.06 ^0.06 ^-0.1 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.05 ^0.13 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.11 ^-0.01 ^0.07 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.1 ^0.07 ^0.05 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.13 ^-0.05 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.12 ^0.01 ^-0.06 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.026],scale:0.201} ^-0.1 ^0.08 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.03 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.03 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.02 ^0.02 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.0 ^0.03 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.0 ^0.0 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.01 ^-0.02 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.0 ^-0.0 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.01 ^0.02 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.03 ^0.01 ^0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.02 ^-0.02 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.0 ^-0.03 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.03 ^-0.01 ^-0.01 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.03 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.03 ^-0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.03 ^0.01 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.02 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.03 ^-0.01 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.02 ^0.02 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.01 ^0.03 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.02 ^0.01 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.0 ^0.02 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.01 ^-0.01 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.01 ^-0.02 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.01 ^-0.03 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.01 ^0.01 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.02 ^-0.01 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.01 ^0.03 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^0.0 ^0.03 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.02 ^0.01 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.01 ^0.02 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.0 ^-0.03 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.01 ^-0.01 ^0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.0 ^-0.02 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.01 ^0.01 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.02 ^0.02 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.03 ^-0.01 ^0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.01 ^-0.03 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.02 ^-0.01 ^-0.03 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.02 ^-0.02 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.03 ^0.01 ^-0.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.03 ^0.0 ^-0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.014,0.012,0.0],scale:0.512} ^-0.03 ^-0.02 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.106} ^-7.18 ^0.0 ^-4.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^-8.02 ^0.0 ^2.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^-4.15 ^0.0 ^7.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^2.14 ^0.0 ^8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^7.18 ^0.0 ^4.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^8.02 ^0.0 ^-2.14 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^4.15 ^0.0 ^-7.18 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.106} ^-2.14 ^0.0 ^-8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_060.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_060.mcfunction new file mode 100644 index 000000000..4817df4ff --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/sludge_garbager/fc_060.mcfunction @@ -0,0 +1,98 @@ +# frame 60 / 60 +# 1_sound +playsound block.bubble_column.whirlpool_ambient hostile @a[distance=..32] ~ ~ ~ 0.7 0.5 0 +# bo +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.0,0.222,0.027],scale:0.2} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# bo2 +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.016,0.014,0.0],scale:0.5} ^-0.0 ^0.0 ^0.0 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +# circle +particle dust{color:[0,0,0],scale:0.1} ^-7.19 ^0.0 ^-4.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^-8.02 ^0.0 ^2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^-4.15 ^0.0 ^7.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^2.15 ^0.0 ^8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^7.19 ^0.0 ^4.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^8.02 ^0.0 ^-2.15 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^4.15 ^0.0 ^-7.19 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0,0,0],scale:0.1} ^-2.15 ^0.0 ^-8.02 0.0 0.0 0.0 0.5 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_001.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_001.mcfunction new file mode 100644 index 000000000..cdc540f52 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_001.mcfunction @@ -0,0 +1,114 @@ +# frame 1 / 30 +# Vert +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.19 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.23 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.26 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.3 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.33 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.36 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.0 ^0.4 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.07 ^0.18 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.09 ^0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.1 ^0.24 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.11 ^0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.13 ^0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.14 ^0.34 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.15 ^0.37 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.14 ^0.14 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.16 ^0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.18 ^0.18 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.21 ^0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.23 ^0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.26 ^0.26 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.28 ^0.28 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.18 ^0.07 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.21 ^0.09 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.24 ^0.1 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.27 ^0.11 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.3 ^0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.34 ^0.14 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.37 ^0.15 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.19 ^-0.0 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.23 ^-0.0 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.26 ^-0.0 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.3 ^-0.0 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.33 ^-0.0 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.36 ^-0.0 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.4 ^-0.0 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.18 ^-0.07 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.21 ^-0.09 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.24 ^-0.1 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.27 ^-0.11 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.3 ^-0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.34 ^-0.14 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.37 ^-0.15 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.14 ^-0.14 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.16 ^-0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.18 ^-0.18 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.21 ^-0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.23 ^-0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.26 ^-0.26 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.28 ^-0.28 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.07 ^-0.18 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.09 ^-0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.1 ^-0.24 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.11 ^-0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.13 ^-0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.14 ^-0.34 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^-0.15 ^-0.37 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.19 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.23 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.26 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.3 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.33 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.36 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.0 ^-0.4 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.07 ^-0.18 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.09 ^-0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.1 ^-0.24 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.11 ^-0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.13 ^-0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.14 ^-0.34 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.15 ^-0.37 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.14 ^-0.14 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.16 ^-0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.18 ^-0.18 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.21 ^-0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.23 ^-0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.26 ^-0.26 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.28 ^-0.28 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.18 ^-0.07 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.21 ^-0.09 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.24 ^-0.1 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.27 ^-0.11 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.3 ^-0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.34 ^-0.14 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.37 ^-0.15 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.19 ^0.0 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.23 ^0.0 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.26 ^0.0 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.3 ^0.0 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.33 ^0.0 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.36 ^0.0 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.4 ^0.0 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.18 ^0.07 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.21 ^0.09 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.24 ^0.1 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.27 ^0.11 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.3 ^0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.34 ^0.14 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.37 ^0.15 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.14 ^0.14 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.16 ^0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.18 ^0.18 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.21 ^0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.23 ^0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.26 ^0.26 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.28 ^0.28 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.07 ^0.18 ^-2.6 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.09 ^0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.1 ^0.24 ^-2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.11 ^0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.13 ^0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.14 ^0.34 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.058,0.292],scale:0.010} ^0.15 ^0.37 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_002.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_002.mcfunction new file mode 100644 index 000000000..5415b51ed --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_002.mcfunction @@ -0,0 +1,114 @@ +# frame 2 / 30 +# Vert +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.0 ^0.23 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.0 ^0.26 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.0 ^0.29 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.0 ^0.33 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.01 ^0.36 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.01 ^0.4 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.01 ^0.43 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.09 ^0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.1 ^0.24 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.12 ^0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.13 ^0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.14 ^0.33 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.16 ^0.36 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.17 ^0.39 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.16 ^0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.19 ^0.18 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.21 ^0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.24 ^0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.26 ^0.25 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.29 ^0.28 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.31 ^0.3 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.21 ^0.08 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.24 ^0.1 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.27 ^0.11 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.31 ^0.12 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.34 ^0.13 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.37 ^0.15 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.4 ^0.16 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.23 ^-0.0 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.26 ^-0.0 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.29 ^-0.0 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.33 ^-0.0 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.36 ^-0.01 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.4 ^-0.01 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.43 ^-0.01 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.21 ^-0.09 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.24 ^-0.1 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.27 ^-0.12 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.3 ^-0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.33 ^-0.14 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.36 ^-0.16 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.39 ^-0.17 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.16 ^-0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.18 ^-0.19 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.21 ^-0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.23 ^-0.24 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.25 ^-0.26 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.28 ^-0.29 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.3 ^-0.31 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.08 ^-0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.1 ^-0.24 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.11 ^-0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.12 ^-0.31 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.13 ^-0.34 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.15 ^-0.37 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^-0.16 ^-0.4 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.0 ^-0.23 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.0 ^-0.26 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.0 ^-0.29 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.0 ^-0.33 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.01 ^-0.36 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.01 ^-0.4 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.01 ^-0.43 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.09 ^-0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.1 ^-0.24 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.12 ^-0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.13 ^-0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.14 ^-0.33 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.16 ^-0.36 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.17 ^-0.39 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.16 ^-0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.19 ^-0.18 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.21 ^-0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.24 ^-0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.26 ^-0.25 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.29 ^-0.28 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.31 ^-0.3 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.21 ^-0.08 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.24 ^-0.1 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.27 ^-0.11 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.31 ^-0.12 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.34 ^-0.13 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.37 ^-0.15 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.4 ^-0.16 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.23 ^0.0 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.26 ^0.0 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.29 ^0.0 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.33 ^0.0 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.36 ^0.01 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.4 ^0.01 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.43 ^0.01 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.21 ^0.09 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.24 ^0.1 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.27 ^0.12 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.3 ^0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.33 ^0.14 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.36 ^0.16 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.39 ^0.17 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.16 ^0.16 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.18 ^0.19 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.21 ^0.21 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.23 ^0.24 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.25 ^0.26 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.28 ^0.29 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.3 ^0.31 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.08 ^0.21 ^-2.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.1 ^0.24 ^-2.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.11 ^0.27 ^-2.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.12 ^0.31 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.13 ^0.34 ^-2.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.15 ^0.37 ^-2.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.059,0.294],scale:0.024} ^0.16 ^0.4 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_003.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_003.mcfunction new file mode 100644 index 000000000..7e75de487 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_003.mcfunction @@ -0,0 +1,114 @@ +# frame 3 / 30 +# Vert +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.01 ^0.32 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.02 ^0.35 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.02 ^0.39 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.03 ^0.42 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.03 ^0.46 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.04 ^0.49 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.04 ^0.53 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.13 ^0.29 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.15 ^0.32 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.17 ^0.35 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.19 ^0.38 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.2 ^0.41 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.22 ^0.44 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.24 ^0.47 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.23 ^0.22 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.26 ^0.24 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.29 ^0.26 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.32 ^0.28 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.35 ^0.3 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.37 ^0.32 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.4 ^0.34 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.3 ^0.11 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.33 ^0.12 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.37 ^0.13 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.4 ^0.14 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.44 ^0.15 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.47 ^0.15 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.5 ^0.16 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.32 ^-0.01 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.35 ^-0.02 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.39 ^-0.02 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.42 ^-0.03 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.46 ^-0.03 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.49 ^-0.04 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.53 ^-0.04 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.29 ^-0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.32 ^-0.15 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.35 ^-0.17 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.38 ^-0.19 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.41 ^-0.2 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.44 ^-0.22 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.47 ^-0.24 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.22 ^-0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.24 ^-0.26 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.26 ^-0.29 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.28 ^-0.32 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.3 ^-0.35 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.32 ^-0.37 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.34 ^-0.4 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.11 ^-0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.12 ^-0.33 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.13 ^-0.37 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.14 ^-0.4 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.15 ^-0.44 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.15 ^-0.47 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^-0.16 ^-0.5 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.01 ^-0.32 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.02 ^-0.35 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.02 ^-0.39 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.03 ^-0.42 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.03 ^-0.46 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.04 ^-0.49 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.04 ^-0.53 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.13 ^-0.29 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.15 ^-0.32 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.17 ^-0.35 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.19 ^-0.38 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.2 ^-0.41 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.22 ^-0.44 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.24 ^-0.47 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.23 ^-0.22 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.26 ^-0.24 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.29 ^-0.26 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.32 ^-0.28 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.35 ^-0.3 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.37 ^-0.32 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.4 ^-0.34 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.3 ^-0.11 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.33 ^-0.12 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.37 ^-0.13 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.4 ^-0.14 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.44 ^-0.15 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.47 ^-0.15 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.5 ^-0.16 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.32 ^0.01 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.35 ^0.02 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.39 ^0.02 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.42 ^0.03 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.46 ^0.03 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.49 ^0.04 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.53 ^0.04 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.29 ^0.13 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.32 ^0.15 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.35 ^0.17 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.38 ^0.19 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.41 ^0.2 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.44 ^0.22 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.47 ^0.24 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.22 ^0.23 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.24 ^0.26 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.26 ^0.29 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.28 ^0.32 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.3 ^0.35 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.32 ^0.37 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.34 ^0.4 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.11 ^0.3 ^-2.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.12 ^0.33 ^-2.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.13 ^0.37 ^-2.49 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.14 ^0.4 ^-2.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.15 ^0.44 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.15 ^0.47 ^-2.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.060,0.301],scale:0.064} ^0.16 ^0.5 ^-2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_004.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_004.mcfunction new file mode 100644 index 000000000..0e5c6308d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_004.mcfunction @@ -0,0 +1,114 @@ +# frame 4 / 30 +# Vert +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.06 ^0.46 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.07 ^0.49 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.09 ^0.53 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.1 ^0.57 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^0.6 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.13 ^0.63 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.15 ^0.67 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.23 ^0.4 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.26 ^0.43 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.28 ^0.46 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.31 ^0.48 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.34 ^0.51 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.37 ^0.53 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.4 ^0.56 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.37 ^0.28 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.4 ^0.3 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.44 ^0.31 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.47 ^0.33 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.51 ^0.34 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.54 ^0.35 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.58 ^0.36 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.45 ^0.12 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.49 ^0.12 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.52 ^0.12 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.56 ^0.12 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.6 ^0.12 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.64 ^0.12 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.68 ^0.11 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.46 ^-0.06 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.49 ^-0.07 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.53 ^-0.09 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.57 ^-0.1 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.6 ^-0.12 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.63 ^-0.13 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.67 ^-0.15 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.4 ^-0.23 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.43 ^-0.26 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.46 ^-0.28 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.48 ^-0.31 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.51 ^-0.34 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.53 ^-0.37 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.56 ^-0.4 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.28 ^-0.37 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.3 ^-0.4 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.31 ^-0.44 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.33 ^-0.47 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.34 ^-0.51 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.35 ^-0.54 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.36 ^-0.58 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^-0.45 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^-0.49 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^-0.52 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^-0.56 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^-0.6 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.12 ^-0.64 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^-0.11 ^-0.68 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.06 ^-0.46 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.07 ^-0.49 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.09 ^-0.53 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.1 ^-0.57 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^-0.6 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.13 ^-0.63 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.15 ^-0.67 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.23 ^-0.4 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.26 ^-0.43 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.28 ^-0.46 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.31 ^-0.48 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.34 ^-0.51 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.37 ^-0.53 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.4 ^-0.56 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.37 ^-0.28 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.4 ^-0.3 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.44 ^-0.31 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.47 ^-0.33 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.51 ^-0.34 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.54 ^-0.35 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.58 ^-0.36 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.45 ^-0.12 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.49 ^-0.12 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.52 ^-0.12 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.56 ^-0.12 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.6 ^-0.12 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.64 ^-0.12 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.68 ^-0.11 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.46 ^0.06 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.49 ^0.07 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.53 ^0.09 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.57 ^0.1 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.6 ^0.12 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.63 ^0.13 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.67 ^0.15 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.4 ^0.23 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.43 ^0.26 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.46 ^0.28 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.48 ^0.31 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.51 ^0.34 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.53 ^0.37 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.56 ^0.4 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.28 ^0.37 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.3 ^0.4 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.31 ^0.44 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.33 ^0.47 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.34 ^0.51 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.35 ^0.54 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.36 ^0.58 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^0.45 ^-2.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^0.49 ^-2.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^0.52 ^-2.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^0.56 ^-2.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^0.6 ^-2.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.12 ^0.64 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.063,0.313],scale:0.129} ^0.11 ^0.68 ^-2.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_005.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_005.mcfunction new file mode 100644 index 000000000..54ed8c66b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_005.mcfunction @@ -0,0 +1,114 @@ +# frame 5 / 30 +# Vert +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.17 ^0.63 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.2 ^0.66 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.23 ^0.7 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.26 ^0.73 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.3 ^0.75 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.33 ^0.78 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.37 ^0.8 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.4 ^0.51 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.44 ^0.54 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.48 ^0.56 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.52 ^0.57 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.56 ^0.58 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.61 ^0.59 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.65 ^0.6 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.57 ^0.32 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.61 ^0.33 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.66 ^0.33 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.7 ^0.33 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.74 ^0.32 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.79 ^0.32 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.83 ^0.31 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.65 ^0.08 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.69 ^0.07 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.73 ^0.06 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.77 ^0.04 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.81 ^0.01 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.85 ^-0.01 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.88 ^-0.04 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.63 ^-0.17 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.66 ^-0.2 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.7 ^-0.23 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.73 ^-0.26 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.75 ^-0.3 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.78 ^-0.33 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.8 ^-0.37 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.51 ^-0.4 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.54 ^-0.44 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.56 ^-0.48 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.57 ^-0.52 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.58 ^-0.56 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.59 ^-0.61 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.6 ^-0.65 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.32 ^-0.57 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.33 ^-0.61 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.33 ^-0.66 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.33 ^-0.7 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.32 ^-0.74 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.32 ^-0.79 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.31 ^-0.83 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.08 ^-0.65 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.07 ^-0.69 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.06 ^-0.73 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.04 ^-0.77 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.01 ^-0.81 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.01 ^-0.85 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.04 ^-0.88 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.17 ^-0.63 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.2 ^-0.66 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.23 ^-0.7 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.26 ^-0.73 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.3 ^-0.75 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.33 ^-0.78 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.37 ^-0.8 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.4 ^-0.51 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.44 ^-0.54 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.48 ^-0.56 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.52 ^-0.57 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.56 ^-0.58 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.61 ^-0.59 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.65 ^-0.6 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.57 ^-0.32 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.61 ^-0.33 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.66 ^-0.33 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.7 ^-0.33 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.74 ^-0.32 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.79 ^-0.32 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.83 ^-0.31 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.65 ^-0.08 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.69 ^-0.07 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.73 ^-0.06 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.77 ^-0.04 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.81 ^-0.01 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.85 ^0.01 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.88 ^0.04 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.63 ^0.17 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.66 ^0.2 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.7 ^0.23 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.73 ^0.26 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.75 ^0.3 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.78 ^0.33 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.8 ^0.37 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.51 ^0.4 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.54 ^0.44 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.56 ^0.48 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.57 ^0.52 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.58 ^0.56 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.59 ^0.61 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.6 ^0.65 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.32 ^0.57 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.33 ^0.61 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.33 ^0.66 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.33 ^0.7 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.32 ^0.74 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.32 ^0.79 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.31 ^0.83 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.08 ^0.65 ^-2.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.07 ^0.69 ^-2.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.06 ^0.73 ^-2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.04 ^0.77 ^-2.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^0.01 ^0.81 ^-2.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.01 ^0.85 ^-2.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.066,0.328],scale:0.217} ^-0.04 ^0.88 ^-1.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_006.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_006.mcfunction new file mode 100644 index 000000000..22f74f977 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_006.mcfunction @@ -0,0 +1,114 @@ +# frame 6 / 30 +# Vert +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.43 ^0.76 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.48 ^0.78 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.54 ^0.8 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.59 ^0.81 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.65 ^0.82 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.71 ^0.82 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.77 ^0.81 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.69 ^0.54 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.75 ^0.54 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.8 ^0.53 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.86 ^0.52 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.91 ^0.51 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.97 ^0.48 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.03 ^0.45 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.84 ^0.23 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.89 ^0.21 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.94 ^0.18 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.99 ^0.15 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.04 ^0.12 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.08 ^0.08 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.12 ^0.03 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.87 ^-0.11 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.91 ^-0.15 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.94 ^-0.19 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.97 ^-0.24 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.0 ^-0.29 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.03 ^-0.34 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-1.05 ^-0.41 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.76 ^-0.43 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.78 ^-0.48 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.8 ^-0.54 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.81 ^-0.59 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.82 ^-0.65 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.82 ^-0.71 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.81 ^-0.77 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.54 ^-0.69 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.54 ^-0.75 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.53 ^-0.8 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.52 ^-0.86 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.51 ^-0.91 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.48 ^-0.97 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.45 ^-1.03 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.23 ^-0.84 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.21 ^-0.89 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.18 ^-0.94 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.15 ^-0.99 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.12 ^-1.04 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.08 ^-1.08 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.03 ^-1.12 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.11 ^-0.87 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.15 ^-0.91 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.19 ^-0.94 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.24 ^-0.97 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.29 ^-1.0 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.34 ^-1.03 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.41 ^-1.05 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.43 ^-0.76 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.48 ^-0.78 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.54 ^-0.8 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.59 ^-0.81 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.65 ^-0.82 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.71 ^-0.82 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.77 ^-0.81 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.69 ^-0.54 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.75 ^-0.54 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.8 ^-0.53 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.86 ^-0.52 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.91 ^-0.51 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.97 ^-0.48 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.03 ^-0.45 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.84 ^-0.23 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.89 ^-0.21 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.94 ^-0.18 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.99 ^-0.15 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.04 ^-0.12 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.08 ^-0.08 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.12 ^-0.03 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.87 ^0.11 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.91 ^0.15 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.94 ^0.19 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.97 ^0.24 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.0 ^0.29 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.03 ^0.34 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^1.05 ^0.41 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.76 ^0.43 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.78 ^0.48 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.8 ^0.54 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.81 ^0.59 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.82 ^0.65 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.82 ^0.71 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.81 ^0.77 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.54 ^0.69 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.54 ^0.75 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.53 ^0.8 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.52 ^0.86 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.51 ^0.91 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.48 ^0.97 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.45 ^1.03 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.23 ^0.84 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.21 ^0.89 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.18 ^0.94 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.15 ^0.99 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.12 ^1.04 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.08 ^1.08 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^0.03 ^1.12 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.11 ^0.87 ^-2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.15 ^0.91 ^-1.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.19 ^0.94 ^-1.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.24 ^0.97 ^-1.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.29 ^1.0 ^-1.79 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.34 ^1.03 ^-1.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.070,0.348],scale:0.325} ^-0.41 ^1.05 ^-1.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_007.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_007.mcfunction new file mode 100644 index 000000000..26c5c7072 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_007.mcfunction @@ -0,0 +1,114 @@ +# frame 7 / 30 +# Vert +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.84 ^0.75 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.91 ^0.73 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.99 ^0.7 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.06 ^0.67 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.13 ^0.62 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.21 ^0.58 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.28 ^0.52 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.06 ^0.37 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.12 ^0.33 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.18 ^0.27 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.23 ^0.21 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.29 ^0.14 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.34 ^0.07 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.38 ^-0.01 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.12 ^-0.06 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.16 ^-0.13 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.19 ^-0.2 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.22 ^-0.28 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.24 ^-0.36 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.26 ^-0.45 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.27 ^-0.54 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.01 ^-0.48 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.02 ^-0.56 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.02 ^-0.64 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.02 ^-0.73 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-1.01 ^-0.81 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.99 ^-0.89 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.97 ^-0.98 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.75 ^-0.84 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.73 ^-0.91 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.7 ^-0.99 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.67 ^-1.06 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.62 ^-1.13 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.58 ^-1.21 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.52 ^-1.28 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.37 ^-1.06 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.33 ^-1.12 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.27 ^-1.18 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.21 ^-1.23 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.14 ^-1.29 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.07 ^-1.34 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.01 ^-1.38 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.06 ^-1.12 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.13 ^-1.16 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.2 ^-1.19 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.28 ^-1.22 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.36 ^-1.24 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.45 ^-1.26 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.54 ^-1.27 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.48 ^-1.01 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.56 ^-1.02 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.64 ^-1.02 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.73 ^-1.02 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.81 ^-1.01 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.89 ^-0.99 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.98 ^-0.97 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.84 ^-0.75 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.91 ^-0.73 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.99 ^-0.7 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.06 ^-0.67 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.13 ^-0.62 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.21 ^-0.58 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.28 ^-0.52 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.06 ^-0.37 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.12 ^-0.33 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.18 ^-0.27 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.23 ^-0.21 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.29 ^-0.14 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.34 ^-0.07 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.38 ^0.01 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.12 ^0.06 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.16 ^0.13 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.19 ^0.2 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.22 ^0.28 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.24 ^0.36 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.26 ^0.45 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.27 ^0.54 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.01 ^0.48 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.02 ^0.56 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.02 ^0.64 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.02 ^0.73 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^1.01 ^0.81 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.99 ^0.89 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.97 ^0.98 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.75 ^0.84 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.73 ^0.91 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.7 ^0.99 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.67 ^1.06 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.62 ^1.13 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.58 ^1.21 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.52 ^1.28 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.37 ^1.06 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.33 ^1.12 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.27 ^1.18 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.21 ^1.23 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.14 ^1.29 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^0.07 ^1.34 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.01 ^1.38 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.06 ^1.12 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.13 ^1.16 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.2 ^1.19 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.28 ^1.22 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.36 ^1.24 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.45 ^1.26 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.54 ^1.27 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.48 ^1.01 ^-1.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.56 ^1.02 ^-1.59 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.64 ^1.02 ^-1.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.73 ^1.02 ^-1.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.81 ^1.01 ^-1.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.89 ^0.99 ^-1.3 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.074,0.370],scale:0.452} ^-0.98 ^0.97 ^-1.23 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_008.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_008.mcfunction new file mode 100644 index 000000000..0bcabe4c5 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_008.mcfunction @@ -0,0 +1,114 @@ +# frame 8 / 30 +# Vert +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.31 ^0.43 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.38 ^0.34 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.45 ^0.24 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.5 ^0.13 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.55 ^0.02 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.59 ^-0.1 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.62 ^-0.23 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.38 ^-0.1 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.41 ^-0.21 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.43 ^-0.33 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.44 ^-0.45 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.44 ^-0.58 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.43 ^-0.7 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.41 ^-0.83 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.24 ^-0.62 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.22 ^-0.74 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.2 ^-0.85 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.16 ^-0.97 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.11 ^-1.08 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.05 ^-1.2 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.98 ^-1.31 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.9 ^-1.05 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.85 ^-1.15 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.78 ^-1.25 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.7 ^-1.34 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.61 ^-1.43 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.52 ^-1.51 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.41 ^-1.58 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.43 ^-1.31 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.34 ^-1.38 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.24 ^-1.45 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.13 ^-1.5 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.02 ^-1.55 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.1 ^-1.59 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.23 ^-1.62 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.1 ^-1.38 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.21 ^-1.41 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.33 ^-1.43 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.45 ^-1.44 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.58 ^-1.44 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.7 ^-1.43 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.83 ^-1.41 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.62 ^-1.24 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.74 ^-1.22 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.85 ^-1.2 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.97 ^-1.16 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.08 ^-1.11 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.2 ^-1.05 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.31 ^-0.98 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.05 ^-0.9 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.15 ^-0.85 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.25 ^-0.78 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.34 ^-0.7 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.43 ^-0.61 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.51 ^-0.52 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.58 ^-0.41 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.31 ^-0.43 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.38 ^-0.34 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.45 ^-0.24 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.5 ^-0.13 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.55 ^-0.02 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.59 ^0.1 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.62 ^0.23 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.38 ^0.1 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.41 ^0.21 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.43 ^0.33 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.44 ^0.45 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.44 ^0.58 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.43 ^0.7 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.41 ^0.83 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.24 ^0.62 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.22 ^0.74 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.2 ^0.85 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.16 ^0.97 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.11 ^1.08 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^1.05 ^1.2 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.98 ^1.31 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.9 ^1.05 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.85 ^1.15 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.78 ^1.25 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.7 ^1.34 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.61 ^1.43 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.52 ^1.51 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.41 ^1.58 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.43 ^1.31 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.34 ^1.38 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.24 ^1.45 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.13 ^1.5 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^0.02 ^1.55 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.1 ^1.59 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.23 ^1.62 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.1 ^1.38 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.21 ^1.41 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.33 ^1.43 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.45 ^1.44 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.58 ^1.44 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.7 ^1.43 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.83 ^1.41 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.62 ^1.24 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.74 ^1.22 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.85 ^1.2 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-0.97 ^1.16 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.08 ^1.11 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.2 ^1.05 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.31 ^0.98 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.05 ^0.9 ^-1.22 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.15 ^0.85 ^-1.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.25 ^0.78 ^-1.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.34 ^0.7 ^-0.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.43 ^0.61 ^-0.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.51 ^0.52 ^-0.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.079,0.396],scale:0.595} ^-1.58 ^0.41 ^-0.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_009.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_009.mcfunction new file mode 100644 index 000000000..2eec704cd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_009.mcfunction @@ -0,0 +1,114 @@ +# frame 9 / 30 +# Vert +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.61 ^-0.31 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.61 ^-0.47 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.6 ^-0.64 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.56 ^-0.81 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.51 ^-0.98 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.44 ^-1.15 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.34 ^-1.31 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.37 ^-0.9 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.31 ^-1.05 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.23 ^-1.2 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.13 ^-1.35 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.02 ^-1.48 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.89 ^-1.61 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.74 ^-1.73 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.92 ^-1.36 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.81 ^-1.47 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.68 ^-1.58 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.53 ^-1.68 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.38 ^-1.76 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.21 ^-1.83 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.02 ^-1.88 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.33 ^-1.6 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.18 ^-1.67 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.02 ^-1.72 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.15 ^-1.75 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.33 ^-1.77 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.51 ^-1.77 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.7 ^-1.74 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.31 ^-1.61 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.47 ^-1.61 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.64 ^-1.6 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.81 ^-1.56 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.98 ^-1.51 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.15 ^-1.44 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.31 ^-1.34 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.9 ^-1.37 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.05 ^-1.31 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.2 ^-1.23 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.35 ^-1.13 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.48 ^-1.02 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.61 ^-0.89 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.73 ^-0.74 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.36 ^-0.92 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.47 ^-0.81 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.58 ^-0.68 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.68 ^-0.53 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.76 ^-0.38 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.83 ^-0.21 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.88 ^-0.02 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.6 ^-0.33 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.67 ^-0.18 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.72 ^-0.02 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.75 ^0.15 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.77 ^0.33 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.77 ^0.51 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.74 ^0.7 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.61 ^0.31 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.61 ^0.47 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.6 ^0.64 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.56 ^0.81 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.51 ^0.98 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.44 ^1.15 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.34 ^1.31 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.37 ^0.9 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.31 ^1.05 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.23 ^1.2 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.13 ^1.35 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^1.02 ^1.48 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.89 ^1.61 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.74 ^1.73 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.92 ^1.36 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.81 ^1.47 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.68 ^1.58 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.53 ^1.68 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.38 ^1.76 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.21 ^1.83 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.02 ^1.88 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.33 ^1.6 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.18 ^1.67 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^0.02 ^1.72 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.15 ^1.75 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.33 ^1.77 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.51 ^1.77 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.7 ^1.74 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.31 ^1.61 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.47 ^1.61 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.64 ^1.6 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.81 ^1.56 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.98 ^1.51 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.15 ^1.44 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.31 ^1.34 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-0.9 ^1.37 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.05 ^1.31 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.2 ^1.23 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.35 ^1.13 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.48 ^1.02 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.61 ^0.89 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.73 ^0.74 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.36 ^0.92 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.47 ^0.81 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.58 ^0.68 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.68 ^0.53 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.76 ^0.38 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.83 ^0.21 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.88 ^0.02 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.6 ^0.33 ^-0.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.67 ^0.18 ^-0.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.72 ^0.02 ^-0.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.75 ^-0.15 ^-0.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.77 ^-0.33 ^-0.21 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.77 ^-0.51 ^-0.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.085,0.424],scale:0.753} ^-1.74 ^-0.7 ^0.02 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_010.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_010.mcfunction new file mode 100644 index 000000000..fc1f94535 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_010.mcfunction @@ -0,0 +1,114 @@ +# frame 10 / 30 +# Vert +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.32 ^-1.33 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.17 ^-1.51 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.01 ^-1.67 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.82 ^-1.81 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.61 ^-1.93 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.38 ^-2.02 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.12 ^-2.08 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.71 ^-1.74 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.51 ^-1.84 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.29 ^-1.93 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.06 ^-1.98 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.17 ^-2.02 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.42 ^-2.01 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.68 ^-1.97 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.01 ^-1.87 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.24 ^-1.9 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.47 ^-1.89 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.7 ^-1.86 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.93 ^-1.8 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.16 ^-1.7 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.38 ^-1.56 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.73 ^-1.73 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.94 ^-1.66 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.16 ^-1.57 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.36 ^-1.45 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.55 ^-1.3 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.72 ^-1.12 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.87 ^-0.91 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.33 ^-1.32 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.51 ^-1.17 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.67 ^-1.01 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.81 ^-0.82 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.93 ^-0.61 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^2.02 ^-0.38 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^2.08 ^-0.12 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.74 ^-0.71 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.84 ^-0.51 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.93 ^-0.29 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.98 ^-0.06 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^2.02 ^0.17 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^2.01 ^0.42 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.97 ^0.68 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.87 ^0.01 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.9 ^0.24 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.89 ^0.47 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.86 ^0.7 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.8 ^0.93 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.7 ^1.16 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.56 ^1.38 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.73 ^0.73 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.66 ^0.94 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.57 ^1.16 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.45 ^1.36 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.3 ^1.55 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.12 ^1.72 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.91 ^1.87 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.32 ^1.33 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.17 ^1.51 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^1.01 ^1.67 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.82 ^1.81 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.61 ^1.93 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.38 ^2.02 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.12 ^2.08 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.71 ^1.74 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.51 ^1.84 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.29 ^1.93 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^0.06 ^1.98 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.17 ^2.02 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.42 ^2.01 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.68 ^1.97 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.01 ^1.87 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.24 ^1.9 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.47 ^1.89 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.7 ^1.86 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.93 ^1.8 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.16 ^1.7 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.38 ^1.56 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.73 ^1.73 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.94 ^1.66 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.16 ^1.57 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.36 ^1.45 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.55 ^1.3 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.72 ^1.12 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.87 ^0.91 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.33 ^1.32 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.51 ^1.17 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.67 ^1.01 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.81 ^0.82 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.93 ^0.61 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-2.02 ^0.38 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-2.08 ^0.12 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.74 ^0.71 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.84 ^0.51 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.93 ^0.29 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.98 ^0.06 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-2.02 ^-0.17 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-2.01 ^-0.42 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.97 ^-0.68 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.87 ^-0.01 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.9 ^-0.24 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.89 ^-0.47 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.86 ^-0.7 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.8 ^-0.93 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.7 ^-1.16 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.56 ^-1.38 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.73 ^-0.73 ^0.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.66 ^-0.94 ^0.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.57 ^-1.16 ^0.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.45 ^-1.36 ^0.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.3 ^-1.55 ^0.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-1.12 ^-1.72 ^0.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.091,0.454],scale:0.924} ^-0.91 ^-1.87 ^0.82 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_011.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_011.mcfunction new file mode 100644 index 000000000..ee38ff678 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_011.mcfunction @@ -0,0 +1,114 @@ +# frame 11 / 30 +# Vert +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.15 ^-2.07 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.14 ^-2.1 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.44 ^-2.09 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.74 ^-2.03 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.04 ^-1.93 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.32 ^-1.77 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.58 ^-1.57 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.65 ^-1.97 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.94 ^-1.88 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.21 ^-1.76 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.47 ^-1.59 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.7 ^-1.38 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.9 ^-1.13 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.06 ^-0.84 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.36 ^-1.57 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.59 ^-1.38 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.79 ^-1.16 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.96 ^-0.91 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.1 ^-0.63 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.19 ^-0.32 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.23 ^0.01 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.85 ^-0.93 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.99 ^-0.67 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.1 ^-0.39 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.16 ^-0.09 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.18 ^0.22 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.14 ^0.55 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.05 ^0.86 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.07 ^-0.15 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.1 ^0.14 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.09 ^0.44 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^2.03 ^0.74 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.93 ^1.04 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.77 ^1.32 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.57 ^1.58 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.97 ^0.65 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.88 ^0.94 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.76 ^1.21 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.59 ^1.47 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.38 ^1.7 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.13 ^1.9 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.84 ^2.06 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.57 ^1.36 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.38 ^1.59 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^1.16 ^1.79 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.91 ^1.96 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.63 ^2.1 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.32 ^2.19 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.01 ^2.23 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.93 ^1.85 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.67 ^1.99 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.39 ^2.1 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.09 ^2.16 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.22 ^2.18 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.55 ^2.14 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.86 ^2.05 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.15 ^2.07 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.14 ^2.1 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.44 ^2.09 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.74 ^2.03 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.04 ^1.93 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.32 ^1.77 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.58 ^1.57 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.65 ^1.97 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.94 ^1.88 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.21 ^1.76 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.47 ^1.59 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.7 ^1.38 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.9 ^1.13 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.06 ^0.84 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.36 ^1.57 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.59 ^1.38 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.79 ^1.16 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.96 ^0.91 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.1 ^0.63 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.19 ^0.32 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.23 ^-0.01 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.85 ^0.93 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.99 ^0.67 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.1 ^0.39 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.16 ^0.09 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.18 ^-0.22 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.14 ^-0.55 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.05 ^-0.86 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.07 ^0.15 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.1 ^-0.14 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.09 ^-0.44 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-2.03 ^-0.74 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.93 ^-1.04 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.77 ^-1.32 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.57 ^-1.58 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.97 ^-0.65 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.88 ^-0.94 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.76 ^-1.21 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.59 ^-1.47 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.38 ^-1.7 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.13 ^-1.9 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.84 ^-2.06 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.57 ^-1.36 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.38 ^-1.59 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-1.16 ^-1.79 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.91 ^-1.96 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.63 ^-2.1 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.32 ^-2.19 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.01 ^-2.23 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.93 ^-1.85 ^0.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.67 ^-1.99 ^0.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.39 ^-2.1 ^1.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^-0.09 ^-2.16 ^1.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.22 ^-2.18 ^1.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.55 ^-2.14 ^1.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.097,0.486],scale:1.106} ^0.86 ^-2.05 ^1.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_012.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_012.mcfunction new file mode 100644 index 000000000..a168ecf0c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_012.mcfunction @@ -0,0 +1,114 @@ +# frame 12 / 30 +# Vert +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.55 ^-1.58 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.81 ^-1.32 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.02 ^-1.01 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.17 ^-0.66 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.25 ^-0.28 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.27 ^0.1 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.22 ^0.49 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.04 ^-0.87 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.17 ^-0.53 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.25 ^-0.16 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.25 ^0.22 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.19 ^0.6 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.06 ^0.97 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.87 ^1.3 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.21 ^-0.03 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.21 ^0.35 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.14 ^0.71 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.0 ^1.07 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.79 ^1.39 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.53 ^1.68 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.23 ^1.92 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.06 ^0.82 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.91 ^1.16 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.7 ^1.48 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.44 ^1.75 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.12 ^1.97 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.77 ^2.14 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.4 ^2.24 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.58 ^1.55 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.32 ^1.81 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.01 ^2.02 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.66 ^2.17 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.28 ^2.25 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.1 ^2.27 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.49 ^2.22 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.87 ^2.04 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.53 ^2.17 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.16 ^2.25 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.22 ^2.25 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.6 ^2.19 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.97 ^2.06 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.3 ^1.87 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.03 ^2.21 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.35 ^2.21 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.71 ^2.14 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.07 ^2.0 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.39 ^1.79 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.68 ^1.53 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.92 ^1.23 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.82 ^2.06 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.16 ^1.91 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.48 ^1.7 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.75 ^1.44 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.97 ^1.12 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.14 ^0.77 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.24 ^0.4 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.55 ^1.58 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.81 ^1.32 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.02 ^1.01 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.17 ^0.66 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.25 ^0.28 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.27 ^-0.1 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.22 ^-0.49 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.04 ^0.87 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.17 ^0.53 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.25 ^0.16 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.25 ^-0.22 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.19 ^-0.6 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.06 ^-0.97 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.87 ^-1.3 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.21 ^0.03 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.21 ^-0.35 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.14 ^-0.71 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.0 ^-1.07 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.79 ^-1.39 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.53 ^-1.68 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.23 ^-1.92 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-2.06 ^-0.82 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.91 ^-1.16 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.7 ^-1.48 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.44 ^-1.75 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.12 ^-1.97 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.77 ^-2.14 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.4 ^-2.24 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.58 ^-1.55 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.32 ^-1.81 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-1.01 ^-2.02 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.66 ^-2.17 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.28 ^-2.25 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.1 ^-2.27 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.49 ^-2.22 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.87 ^-2.04 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.53 ^-2.17 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.16 ^-2.25 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.22 ^-2.25 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.6 ^-2.19 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.97 ^-2.06 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.3 ^-1.87 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^-0.03 ^-2.21 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.35 ^-2.21 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.71 ^-2.14 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.07 ^-2.0 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.39 ^-1.79 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.68 ^-1.53 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.92 ^-1.23 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^0.82 ^-2.06 ^1.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.16 ^-1.91 ^1.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.48 ^-1.7 ^2.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.75 ^-1.44 ^2.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^1.97 ^-1.12 ^2.37 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.14 ^-0.77 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.104,0.520],scale:1.297} ^2.24 ^-0.4 ^2.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_013.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_013.mcfunction new file mode 100644 index 000000000..5c2d2f8a0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_013.mcfunction @@ -0,0 +1,114 @@ +# frame 13 / 30 +# Vert +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.12 ^0.83 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.92 ^1.23 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.63 ^1.57 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.28 ^1.85 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.88 ^2.05 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.47 ^2.15 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.07 ^2.16 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.64 ^1.57 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.3 ^1.87 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.9 ^2.08 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.47 ^2.2 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.03 ^2.23 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.38 ^2.17 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.77 ^2.02 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.91 ^2.08 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.48 ^2.23 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.04 ^2.26 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.4 ^2.21 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.82 ^2.07 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.19 ^1.86 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.48 ^1.58 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.05 ^2.27 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.4 ^2.24 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.83 ^2.1 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.22 ^1.89 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.55 ^1.6 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.81 ^1.26 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.97 ^0.89 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.83 ^2.12 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.23 ^1.92 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.57 ^1.63 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.85 ^1.28 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.05 ^0.88 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.15 ^0.47 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.16 ^0.07 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.57 ^1.64 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.87 ^1.3 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.08 ^0.9 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.2 ^0.47 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.23 ^0.03 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.17 ^-0.38 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.02 ^-0.77 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.08 ^0.91 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.23 ^0.48 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.26 ^0.04 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.21 ^-0.4 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.07 ^-0.82 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.86 ^-1.19 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.58 ^-1.48 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.27 ^0.05 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.24 ^-0.4 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.1 ^-0.83 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.89 ^-1.22 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.6 ^-1.55 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.26 ^-1.81 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.89 ^-1.97 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-2.12 ^-0.83 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.92 ^-1.23 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.63 ^-1.57 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.28 ^-1.85 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.88 ^-2.05 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.47 ^-2.15 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.07 ^-2.16 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.64 ^-1.57 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-1.3 ^-1.87 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.9 ^-2.08 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.47 ^-2.2 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.03 ^-2.23 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.38 ^-2.17 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.77 ^-2.02 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.91 ^-2.08 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.48 ^-2.23 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.04 ^-2.26 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.4 ^-2.21 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.82 ^-2.07 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.19 ^-1.86 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.48 ^-1.58 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^-0.05 ^-2.27 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.4 ^-2.24 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.83 ^-2.1 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.22 ^-1.89 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.55 ^-1.6 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.81 ^-1.26 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.97 ^-0.89 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.83 ^-2.12 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.23 ^-1.92 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.57 ^-1.63 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.85 ^-1.28 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.05 ^-0.88 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.15 ^-0.47 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.16 ^-0.07 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.57 ^-1.64 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.87 ^-1.3 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.08 ^-0.9 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.2 ^-0.47 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.23 ^-0.03 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.17 ^0.38 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.02 ^0.77 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.08 ^-0.91 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.23 ^-0.48 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.26 ^-0.04 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.21 ^0.4 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.07 ^0.82 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.86 ^1.19 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.58 ^1.48 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.27 ^-0.05 ^2.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.24 ^0.4 ^2.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^2.1 ^0.83 ^2.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.89 ^1.22 ^3.17 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.6 ^1.55 ^3.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^1.26 ^1.81 ^3.57 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.111,0.555],scale:1.494} ^0.89 ^1.97 ^3.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_014.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_014.mcfunction new file mode 100644 index 000000000..f53e7a0be --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_014.mcfunction @@ -0,0 +1,114 @@ +# frame 14 / 30 +# Vert +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.96 ^1.99 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.36 ^1.69 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.68 ^1.32 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.89 ^0.89 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.99 ^0.45 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.98 ^0.02 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.89 ^-0.4 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.65 ^1.47 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.91 ^1.04 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.05 ^0.57 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.09 ^0.1 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.01 ^-0.34 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.84 ^-0.74 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.59 ^-1.09 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.09 ^0.73 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.16 ^0.23 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.12 ^-0.26 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.97 ^-0.71 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.72 ^-1.08 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.42 ^-1.39 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.06 ^-1.62 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.21 ^-0.13 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-2.09 ^-0.61 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.86 ^-1.05 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.55 ^-1.41 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.18 ^-1.66 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.77 ^-1.83 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.36 ^-1.9 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.99 ^-0.96 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.69 ^-1.36 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.32 ^-1.68 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.89 ^-1.89 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.45 ^-1.99 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.02 ^-1.98 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.4 ^-1.89 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.47 ^-1.65 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.04 ^-1.91 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.57 ^-2.05 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.1 ^-2.09 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.34 ^-2.01 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.74 ^-1.84 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.09 ^-1.59 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.73 ^-2.09 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.23 ^-2.16 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.26 ^-2.12 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.71 ^-1.97 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.08 ^-1.72 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.39 ^-1.42 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.62 ^-1.06 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.13 ^-2.21 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.61 ^-2.09 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.05 ^-1.86 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.41 ^-1.55 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.66 ^-1.18 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.83 ^-0.77 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.9 ^-0.36 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.96 ^-1.99 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.36 ^-1.69 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.68 ^-1.32 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.89 ^-0.89 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.99 ^-0.45 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.98 ^-0.02 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.89 ^0.4 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.65 ^-1.47 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.91 ^-1.04 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.05 ^-0.57 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.09 ^-0.1 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.01 ^0.34 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.84 ^0.74 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.59 ^1.09 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.09 ^-0.73 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.16 ^-0.23 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.12 ^0.26 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.97 ^0.71 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.72 ^1.08 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.42 ^1.39 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.06 ^1.62 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.21 ^0.13 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^2.09 ^0.61 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.86 ^1.05 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.55 ^1.41 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.18 ^1.66 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.77 ^1.83 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.36 ^1.9 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.99 ^0.96 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.69 ^1.36 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.32 ^1.68 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.89 ^1.89 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.45 ^1.99 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.02 ^1.98 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.4 ^1.89 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.47 ^1.65 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^1.04 ^1.91 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.57 ^2.05 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.1 ^2.09 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.34 ^2.01 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.74 ^1.84 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.09 ^1.59 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.73 ^2.09 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^0.23 ^2.16 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.26 ^2.12 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.71 ^1.97 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.08 ^1.72 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.39 ^1.42 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.62 ^1.06 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.13 ^2.21 ^3.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-0.61 ^2.09 ^3.72 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.05 ^1.86 ^3.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.41 ^1.55 ^4.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.66 ^1.18 ^4.34 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.83 ^0.77 ^4.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.118,0.591],scale:1.697} ^-1.9 ^0.36 ^4.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_015.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_015.mcfunction new file mode 100644 index 000000000..a8faf533a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_015.mcfunction @@ -0,0 +1,114 @@ +# frame 15 / 30 +# Vert +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.92 ^-0.63 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.66 ^-1.05 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.31 ^-1.39 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.9 ^-1.61 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.46 ^-1.73 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.02 ^-1.73 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.39 ^-1.63 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.53 ^-1.32 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.13 ^-1.61 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.68 ^-1.78 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.21 ^-1.84 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.24 ^-1.78 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.65 ^-1.61 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.99 ^-1.36 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.91 ^-1.8 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.43 ^-1.92 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.05 ^-1.9 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.51 ^-1.78 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.9 ^-1.55 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.21 ^-1.24 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.43 ^-0.87 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.15 ^-2.01 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.34 ^-1.93 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.78 ^-1.74 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.15 ^-1.45 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.42 ^-1.09 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.59 ^-0.68 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.66 ^-0.26 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.63 ^-1.92 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.05 ^-1.66 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.39 ^-1.31 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.61 ^-0.9 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.73 ^-0.46 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.73 ^-0.02 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.63 ^0.39 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.32 ^-1.53 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.61 ^-1.13 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.78 ^-0.68 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.84 ^-0.21 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.78 ^0.24 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.61 ^0.65 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.36 ^0.99 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.8 ^-0.91 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.92 ^-0.43 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.9 ^0.05 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.78 ^0.51 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.55 ^0.9 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.24 ^1.21 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.87 ^1.43 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^2.01 ^-0.15 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.93 ^0.34 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.74 ^0.78 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.45 ^1.15 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.09 ^1.42 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.68 ^1.59 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.26 ^1.66 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.92 ^0.63 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.66 ^1.05 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.31 ^1.39 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.9 ^1.61 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.46 ^1.73 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.02 ^1.73 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.39 ^1.63 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.53 ^1.32 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^1.13 ^1.61 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.68 ^1.78 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.21 ^1.84 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.24 ^1.78 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.65 ^1.61 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.99 ^1.36 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.91 ^1.8 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.43 ^1.92 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.05 ^1.9 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.51 ^1.78 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.9 ^1.55 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.21 ^1.24 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.43 ^0.87 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^0.15 ^2.01 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.34 ^1.93 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.78 ^1.74 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.15 ^1.45 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.42 ^1.09 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.59 ^0.68 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.66 ^0.26 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.63 ^1.92 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.05 ^1.66 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.39 ^1.31 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.61 ^0.9 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.73 ^0.46 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.73 ^0.02 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.63 ^-0.39 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.32 ^1.53 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.61 ^1.13 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.78 ^0.68 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.84 ^0.21 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.78 ^-0.24 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.61 ^-0.65 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.36 ^-0.99 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.8 ^0.91 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.92 ^0.43 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.9 ^-0.05 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.78 ^-0.51 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.55 ^-0.9 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.24 ^-1.21 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.87 ^-1.43 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-2.01 ^0.15 ^4.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.93 ^-0.34 ^4.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.74 ^-0.78 ^4.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.45 ^-1.15 ^5.05 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-1.09 ^-1.42 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.68 ^-1.59 ^5.48 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.126,0.628],scale:1.902} ^-0.26 ^-1.66 ^5.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_016.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_016.mcfunction new file mode 100644 index 000000000..5d71d5aa8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_016.mcfunction @@ -0,0 +1,114 @@ +# frame 16 / 30 +# Vert +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.03 ^-1.79 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.44 ^-1.67 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.85 ^-1.44 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.16 ^-1.11 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.37 ^-0.72 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.45 ^-0.31 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.42 ^0.09 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.66 ^-1.66 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.05 ^-1.37 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.33 ^-1.0 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.5 ^-0.58 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.54 ^-0.15 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.46 ^0.27 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.28 ^0.63 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.24 ^-1.29 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.49 ^-0.87 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.61 ^-0.42 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.61 ^0.04 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.48 ^0.45 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.25 ^0.81 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.94 ^1.07 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.64 ^-0.71 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.71 ^-0.23 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.65 ^0.23 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.47 ^0.65 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.19 ^0.99 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.84 ^1.22 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.46 ^1.35 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.79 ^-0.03 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.67 ^0.44 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.44 ^0.85 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.11 ^1.16 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.72 ^1.37 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.31 ^1.45 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.09 ^1.42 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.66 ^0.66 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.37 ^1.05 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.0 ^1.33 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.58 ^1.5 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.15 ^1.54 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.27 ^1.46 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.63 ^1.28 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.29 ^1.24 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.87 ^1.49 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.42 ^1.61 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.04 ^1.61 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.45 ^1.48 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.81 ^1.25 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.07 ^0.94 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.71 ^1.64 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.23 ^1.71 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.23 ^1.65 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.65 ^1.47 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.99 ^1.19 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.22 ^0.84 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.35 ^0.46 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.03 ^1.79 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.44 ^1.67 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.85 ^1.44 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.16 ^1.11 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.37 ^0.72 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.45 ^0.31 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.42 ^-0.09 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.66 ^1.66 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.05 ^1.37 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.33 ^1.0 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.5 ^0.58 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.54 ^0.15 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.46 ^-0.27 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.28 ^-0.63 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.24 ^1.29 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.49 ^0.87 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.61 ^0.42 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.61 ^-0.04 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.48 ^-0.45 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.25 ^-0.81 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.94 ^-1.07 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.64 ^0.71 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.71 ^0.23 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.65 ^-0.23 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.47 ^-0.65 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.19 ^-0.99 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.84 ^-1.22 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.46 ^-1.35 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.79 ^0.03 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.67 ^-0.44 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.44 ^-0.85 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.11 ^-1.16 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.72 ^-1.37 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.31 ^-1.45 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.09 ^-1.42 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.66 ^-0.66 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.37 ^-1.05 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.0 ^-1.33 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.58 ^-1.5 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.15 ^-1.54 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.27 ^-1.46 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.63 ^-1.28 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-1.29 ^-1.24 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.87 ^-1.49 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.42 ^-1.61 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.04 ^-1.61 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.45 ^-1.48 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.81 ^-1.25 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.07 ^-0.94 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.71 ^-1.64 ^5.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^-0.23 ^-1.71 ^5.51 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.23 ^-1.65 ^5.74 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.65 ^-1.47 ^5.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^0.99 ^-1.19 ^6.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.22 ^-0.84 ^6.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.133,0.664],scale:2.108} ^1.35 ^-0.46 ^6.67 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_017.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_017.mcfunction new file mode 100644 index 000000000..7e535c897 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_017.mcfunction @@ -0,0 +1,114 @@ +# frame 17 / 30 +# Vert +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.45 ^-0.57 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.49 ^-0.11 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.4 ^0.32 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.18 ^0.69 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.88 ^0.97 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.52 ^1.13 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.15 ^1.17 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.56 ^0.03 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.42 ^0.47 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.17 ^0.83 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.83 ^1.09 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.44 ^1.23 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.05 ^1.24 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.31 ^1.14 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.43 ^0.62 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.13 ^0.98 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.76 ^1.22 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.35 ^1.33 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.06 ^1.31 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.43 ^1.17 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.72 ^0.94 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.08 ^1.13 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.67 ^1.34 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.23 ^1.41 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.19 ^1.36 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.56 ^1.18 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.84 ^0.92 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.02 ^0.59 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.57 ^1.45 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.11 ^1.49 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.32 ^1.4 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.69 ^1.18 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.97 ^0.88 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.13 ^0.52 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.17 ^0.15 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.03 ^1.56 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.47 ^1.42 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.83 ^1.17 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.09 ^0.83 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.23 ^0.44 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.24 ^0.05 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.14 ^-0.31 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.62 ^1.43 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.98 ^1.13 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.22 ^0.76 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.33 ^0.35 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.31 ^-0.06 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.17 ^-0.43 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.94 ^-0.72 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.13 ^1.08 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.34 ^0.67 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.41 ^0.23 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.36 ^-0.19 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.18 ^-0.56 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.92 ^-0.84 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.59 ^-1.02 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.45 ^0.57 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.49 ^0.11 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.4 ^-0.32 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.18 ^-0.69 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.88 ^-0.97 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.52 ^-1.13 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.15 ^-1.17 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.56 ^-0.03 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.42 ^-0.47 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.17 ^-0.83 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.83 ^-1.09 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.44 ^-1.23 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.05 ^-1.24 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.31 ^-1.14 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.43 ^-0.62 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.13 ^-0.98 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.76 ^-1.22 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.35 ^-1.33 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.06 ^-1.31 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.43 ^-1.17 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.72 ^-0.94 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-1.08 ^-1.13 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.67 ^-1.34 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.23 ^-1.41 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.19 ^-1.36 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.56 ^-1.18 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.84 ^-0.92 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.02 ^-0.59 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.57 ^-1.45 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^-0.11 ^-1.49 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.32 ^-1.4 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.69 ^-1.18 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.97 ^-0.88 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.13 ^-0.52 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.17 ^-0.15 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.03 ^-1.56 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.47 ^-1.42 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.83 ^-1.17 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.09 ^-0.83 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.23 ^-0.44 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.24 ^-0.05 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.14 ^0.31 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.62 ^-1.43 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.98 ^-1.13 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.22 ^-0.76 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.33 ^-0.35 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.31 ^0.06 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.17 ^0.43 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.94 ^0.72 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.13 ^-1.08 ^6.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.34 ^-0.67 ^6.39 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.41 ^-0.23 ^6.64 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.36 ^0.19 ^6.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^1.18 ^0.56 ^7.14 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.92 ^0.84 ^7.4 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.140,0.701],scale:2.313} ^0.59 ^1.02 ^7.65 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_018.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_018.mcfunction new file mode 100644 index 000000000..d42550cb7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_018.mcfunction @@ -0,0 +1,114 @@ +# frame 18 / 30 +# Vert +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.94 ^0.96 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.55 ^1.15 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.14 ^1.2 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.24 ^1.12 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.55 ^0.93 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.77 ^0.65 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.88 ^0.35 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.5 ^1.25 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.07 ^1.27 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.33 ^1.16 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.65 ^0.94 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.87 ^0.64 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.97 ^0.31 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.95 ^-0.02 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.02 ^1.34 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.42 ^1.2 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.75 ^0.95 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.96 ^0.62 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.05 ^0.26 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.01 ^-0.08 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.87 ^-0.38 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.53 ^1.24 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.85 ^0.95 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.05 ^0.59 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.12 ^0.21 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.07 ^-0.16 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.9 ^-0.46 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.66 ^-0.69 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.96 ^0.94 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.15 ^0.55 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.2 ^0.14 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.12 ^-0.24 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.93 ^-0.55 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.65 ^-0.77 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.35 ^-0.88 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.25 ^0.5 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.27 ^0.07 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.16 ^-0.33 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.94 ^-0.65 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.64 ^-0.87 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.31 ^-0.97 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.02 ^-0.95 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.34 ^-0.02 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.2 ^-0.42 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.95 ^-0.75 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.62 ^-0.96 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.26 ^-1.05 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.08 ^-1.01 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.38 ^-0.87 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-1.24 ^-0.53 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.95 ^-0.85 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.59 ^-1.05 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.21 ^-1.12 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.16 ^-1.07 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.46 ^-0.9 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.69 ^-0.66 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.94 ^-0.96 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.55 ^-1.15 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.14 ^-1.2 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.24 ^-1.12 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.55 ^-0.93 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.77 ^-0.65 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.88 ^-0.35 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.5 ^-1.25 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.07 ^-1.27 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.33 ^-1.16 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.65 ^-0.94 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.87 ^-0.64 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.97 ^-0.31 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.95 ^0.02 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.02 ^-1.34 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.42 ^-1.2 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.75 ^-0.95 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.96 ^-0.62 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.05 ^-0.26 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.01 ^0.08 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.87 ^0.38 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.53 ^-1.24 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.85 ^-0.95 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.05 ^-0.59 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.12 ^-0.21 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.07 ^0.16 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.9 ^0.46 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.66 ^0.69 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.96 ^-0.94 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.15 ^-0.55 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.2 ^-0.14 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.12 ^0.24 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.93 ^0.55 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.65 ^0.77 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.35 ^0.88 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.25 ^-0.5 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.27 ^-0.07 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.16 ^0.33 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.94 ^0.65 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.64 ^0.87 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.31 ^0.97 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.02 ^0.95 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.34 ^0.02 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.2 ^0.42 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.95 ^0.75 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.62 ^0.96 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.26 ^1.05 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.08 ^1.01 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.38 ^0.87 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^1.24 ^0.53 ^7.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.95 ^0.85 ^7.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.59 ^1.05 ^7.53 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^0.21 ^1.12 ^7.8 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.16 ^1.07 ^8.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.46 ^0.9 ^8.35 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.147,0.737],scale:2.516} ^-0.69 ^0.66 ^8.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_019.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_019.mcfunction new file mode 100644 index 000000000..bb3b19c15 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_019.mcfunction @@ -0,0 +1,114 @@ +# frame 19 / 30 +# Vert +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.37 ^1.07 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.68 ^0.82 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.86 ^0.5 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.92 ^0.16 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.85 ^-0.16 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.69 ^-0.41 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.46 ^-0.57 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.76 ^0.85 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.94 ^0.5 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.99 ^0.14 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.91 ^-0.2 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.73 ^-0.47 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.48 ^-0.64 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.21 ^-0.71 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-1.02 ^0.49 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-1.06 ^0.1 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.97 ^-0.25 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.76 ^-0.53 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.49 ^-0.71 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.2 ^-0.78 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.08 ^-0.73 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-1.13 ^0.06 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-1.02 ^-0.31 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.79 ^-0.6 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.5 ^-0.78 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.18 ^-0.85 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.12 ^-0.79 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.35 ^-0.65 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-1.07 ^-0.37 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.82 ^-0.68 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.5 ^-0.86 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.16 ^-0.92 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.16 ^-0.85 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.41 ^-0.69 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.57 ^-0.46 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.85 ^-0.76 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.5 ^-0.94 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.14 ^-0.99 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.2 ^-0.91 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.47 ^-0.73 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.64 ^-0.48 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.71 ^-0.21 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.49 ^-1.02 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.1 ^-1.06 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.25 ^-0.97 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.53 ^-0.76 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.71 ^-0.49 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.78 ^-0.2 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.73 ^0.08 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.06 ^-1.13 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.31 ^-1.02 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.6 ^-0.79 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.78 ^-0.5 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.85 ^-0.18 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.79 ^0.12 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.65 ^0.35 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.37 ^-1.07 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.68 ^-0.82 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.86 ^-0.5 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.92 ^-0.16 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.85 ^0.16 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.69 ^0.41 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.46 ^0.57 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.76 ^-0.85 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.94 ^-0.5 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.99 ^-0.14 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.91 ^0.2 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.73 ^0.47 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.48 ^0.64 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.21 ^0.71 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^1.02 ^-0.49 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^1.06 ^-0.1 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.97 ^0.25 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.76 ^0.53 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.49 ^0.71 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.2 ^0.78 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.08 ^0.73 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^1.13 ^-0.06 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^1.02 ^0.31 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.79 ^0.6 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.5 ^0.78 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.18 ^0.85 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.12 ^0.79 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.35 ^0.65 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^1.07 ^0.37 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.82 ^0.68 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.5 ^0.86 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.16 ^0.92 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.16 ^0.85 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.41 ^0.69 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.57 ^0.46 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.85 ^0.76 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.5 ^0.94 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.14 ^0.99 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.2 ^0.91 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.47 ^0.73 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.64 ^0.48 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.71 ^0.21 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.49 ^1.02 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.1 ^1.06 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.25 ^0.97 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.53 ^0.76 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.71 ^0.49 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.78 ^0.2 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.73 ^-0.08 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^0.06 ^1.13 ^7.84 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.31 ^1.02 ^8.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.6 ^0.79 ^8.41 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.78 ^0.5 ^8.7 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.85 ^0.18 ^8.99 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.79 ^-0.12 ^9.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.154,0.772],scale:2.713} ^-0.65 ^-0.35 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_020.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_020.mcfunction new file mode 100644 index 000000000..ec724a086 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_020.mcfunction @@ -0,0 +1,114 @@ +# frame 20 / 30 +# Vert +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.92 ^0.18 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.86 ^-0.16 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.68 ^-0.43 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.44 ^-0.59 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.17 ^-0.65 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.08 ^-0.6 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.27 ^-0.48 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.92 ^-0.18 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.73 ^-0.47 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.47 ^-0.65 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.18 ^-0.71 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.09 ^-0.67 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.3 ^-0.53 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.43 ^-0.34 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.78 ^-0.52 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.5 ^-0.72 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.18 ^-0.78 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.11 ^-0.73 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.34 ^-0.58 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.48 ^-0.37 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.53 ^-0.15 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.52 ^-0.78 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.18 ^-0.85 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.13 ^-0.79 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.38 ^-0.63 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.54 ^-0.4 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.59 ^-0.16 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.54 ^0.06 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.18 ^-0.92 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.16 ^-0.86 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.43 ^-0.68 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.59 ^-0.44 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.65 ^-0.17 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.6 ^0.08 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.48 ^0.27 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.18 ^-0.92 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.47 ^-0.73 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.65 ^-0.47 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.71 ^-0.18 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.67 ^0.09 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.53 ^0.3 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.34 ^0.43 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.52 ^-0.78 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.72 ^-0.5 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.78 ^-0.18 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.73 ^0.11 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.58 ^0.34 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.37 ^0.48 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.15 ^0.53 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.78 ^-0.52 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.85 ^-0.18 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.79 ^0.13 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.63 ^0.38 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.4 ^0.54 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.16 ^0.59 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.06 ^0.54 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.92 ^-0.18 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.86 ^0.16 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.68 ^0.43 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.44 ^0.59 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.17 ^0.65 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.08 ^0.6 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.27 ^0.48 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.92 ^0.18 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.73 ^0.47 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.47 ^0.65 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.18 ^0.71 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.09 ^0.67 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.3 ^0.53 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.43 ^0.34 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.78 ^0.52 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.5 ^0.72 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.18 ^0.78 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.11 ^0.73 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.34 ^0.58 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.48 ^0.37 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.53 ^0.15 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.52 ^0.78 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.18 ^0.85 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.13 ^0.79 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.38 ^0.63 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.54 ^0.4 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.59 ^0.16 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.54 ^-0.06 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.18 ^0.92 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.16 ^0.86 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.43 ^0.68 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.59 ^0.44 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.65 ^0.17 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.6 ^-0.08 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.48 ^-0.27 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.18 ^0.92 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.47 ^0.73 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.65 ^0.47 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.71 ^0.18 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.67 ^-0.09 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.53 ^-0.3 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.34 ^-0.43 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.52 ^0.78 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.72 ^0.5 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.78 ^0.18 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.73 ^-0.11 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.58 ^-0.34 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.37 ^-0.48 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.15 ^-0.53 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.78 ^0.52 ^8.66 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.85 ^0.18 ^8.97 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.79 ^-0.13 ^9.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.63 ^-0.38 ^9.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.4 ^-0.54 ^9.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^-0.16 ^-0.59 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.161,0.805],scale:2.904} ^0.06 ^-0.54 ^10.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_021.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_021.mcfunction new file mode 100644 index 000000000..68f12b564 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_021.mcfunction @@ -0,0 +1,114 @@ +# frame 21 / 30 +# Vert +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.55 ^-0.53 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.27 ^-0.64 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.0 ^-0.63 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.22 ^-0.52 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.36 ^-0.35 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.41 ^-0.15 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.38 ^0.02 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.3 ^-0.7 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.01 ^-0.7 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.24 ^-0.58 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.4 ^-0.39 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.47 ^-0.18 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.44 ^0.02 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.34 ^0.16 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.01 ^-0.76 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.26 ^-0.64 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.45 ^-0.44 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.52 ^-0.21 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.5 ^0.01 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.4 ^0.18 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.26 ^0.28 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.28 ^-0.71 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.49 ^-0.5 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.58 ^-0.24 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.56 ^0.01 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.46 ^0.2 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.3 ^0.32 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.13 ^0.36 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.53 ^-0.55 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.64 ^-0.27 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.63 ^0.0 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.52 ^0.22 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.35 ^0.36 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.15 ^0.41 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.02 ^0.38 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.7 ^-0.3 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.7 ^-0.01 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.58 ^0.24 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.39 ^0.4 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.18 ^0.47 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.02 ^0.44 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.16 ^0.34 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.76 ^-0.01 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.64 ^0.26 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.44 ^0.45 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.21 ^0.52 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.01 ^0.5 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.18 ^0.4 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.28 ^0.26 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.71 ^0.28 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.5 ^0.49 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.24 ^0.58 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.01 ^0.56 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.2 ^0.46 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.32 ^0.3 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.36 ^0.13 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.55 ^0.53 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.27 ^0.64 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.0 ^0.63 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.22 ^0.52 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.36 ^0.35 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.41 ^0.15 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.38 ^-0.02 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.3 ^0.7 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.01 ^0.7 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.24 ^0.58 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.4 ^0.39 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.47 ^0.18 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.44 ^-0.02 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.34 ^-0.16 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.01 ^0.76 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.26 ^0.64 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.45 ^0.44 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.52 ^0.21 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.5 ^-0.01 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.4 ^-0.18 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.26 ^-0.28 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.28 ^0.71 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.49 ^0.5 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.58 ^0.24 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.56 ^-0.01 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.46 ^-0.2 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.3 ^-0.32 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.13 ^-0.36 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.53 ^0.55 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.64 ^0.27 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.63 ^-0.0 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.52 ^-0.22 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.35 ^-0.36 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.15 ^-0.41 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.02 ^-0.38 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.7 ^0.3 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.7 ^0.01 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.58 ^-0.24 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.39 ^-0.4 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.18 ^-0.47 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.02 ^-0.44 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.16 ^-0.34 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.76 ^0.01 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.64 ^-0.26 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.44 ^-0.45 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.21 ^-0.52 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.01 ^-0.5 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.18 ^-0.4 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.28 ^-0.26 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.71 ^-0.28 ^9.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.5 ^-0.49 ^9.77 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^-0.24 ^-0.58 ^10.1 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.01 ^-0.56 ^10.43 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.2 ^-0.46 ^10.76 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.32 ^-0.3 ^11.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.168,0.838],scale:3.086} ^0.36 ^-0.13 ^11.42 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_022.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_022.mcfunction new file mode 100644 index 000000000..769883bd0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_022.mcfunction @@ -0,0 +1,114 @@ +# frame 22 / 30 +# Vert +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.05 ^-0.61 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.26 ^-0.47 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.38 ^-0.29 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.41 ^-0.09 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.35 ^0.07 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.24 ^0.18 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.12 ^0.22 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.28 ^-0.54 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.42 ^-0.34 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.46 ^-0.12 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.41 ^0.07 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.29 ^0.2 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.15 ^0.26 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.03 ^0.25 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.47 ^-0.39 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.52 ^-0.15 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.47 ^0.07 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.35 ^0.22 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.19 ^0.3 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.04 ^0.3 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.07 ^0.24 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.58 ^-0.19 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.54 ^0.06 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.41 ^0.24 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.24 ^0.34 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.07 ^0.35 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.07 ^0.29 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.15 ^0.19 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.61 ^0.05 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.47 ^0.26 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.29 ^0.38 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.09 ^0.41 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.07 ^0.35 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.18 ^0.24 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.22 ^0.12 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.54 ^0.28 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.34 ^0.42 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.12 ^0.46 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.07 ^0.41 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.2 ^0.29 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.26 ^0.15 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.25 ^0.03 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.39 ^0.47 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.15 ^0.52 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.07 ^0.47 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.22 ^0.35 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.3 ^0.19 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.3 ^0.04 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.24 ^-0.07 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.19 ^0.58 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.06 ^0.54 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.24 ^0.41 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.34 ^0.24 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.35 ^0.07 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.29 ^-0.07 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.19 ^-0.15 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.05 ^0.61 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.26 ^0.47 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.38 ^0.29 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.41 ^0.09 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.35 ^-0.07 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.24 ^-0.18 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.12 ^-0.22 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.28 ^0.54 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.42 ^0.34 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.46 ^0.12 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.41 ^-0.07 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.29 ^-0.2 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.15 ^-0.26 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.03 ^-0.25 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.47 ^0.39 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.52 ^0.15 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.47 ^-0.07 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.35 ^-0.22 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.19 ^-0.3 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.04 ^-0.3 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.07 ^-0.24 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.58 ^0.19 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.54 ^-0.06 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.41 ^-0.24 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.24 ^-0.34 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.07 ^-0.35 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.07 ^-0.29 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.15 ^-0.19 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.61 ^-0.05 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.47 ^-0.26 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.29 ^-0.38 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.09 ^-0.41 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.07 ^-0.35 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.18 ^-0.24 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.22 ^-0.12 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.54 ^-0.28 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.34 ^-0.42 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.12 ^-0.46 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.07 ^-0.41 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.2 ^-0.29 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.26 ^-0.15 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.25 ^-0.03 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.39 ^-0.47 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.15 ^-0.52 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.07 ^-0.47 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.22 ^-0.35 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.3 ^-0.19 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.3 ^-0.04 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.24 ^0.07 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^-0.19 ^-0.58 ^10.2 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.06 ^-0.54 ^10.54 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.24 ^-0.41 ^10.89 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.34 ^-0.24 ^11.24 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.35 ^-0.07 ^11.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.29 ^0.07 ^11.94 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.174,0.868],scale:3.257} ^0.19 ^0.15 ^12.29 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_023.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_023.mcfunction new file mode 100644 index 000000000..47dd76e9b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_023.mcfunction @@ -0,0 +1,114 @@ +# frame 23 / 30 +# Vert +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.36 ^-0.3 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.4 ^-0.1 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.34 ^0.06 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.24 ^0.17 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.11 ^0.21 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.01 ^0.19 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.06 ^0.13 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.45 ^-0.14 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.41 ^0.05 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.29 ^0.19 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.15 ^0.25 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.02 ^0.24 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.06 ^0.18 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.1 ^0.1 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.47 ^0.04 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.35 ^0.21 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.2 ^0.29 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.05 ^0.29 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.07 ^0.23 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.13 ^0.14 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.13 ^0.05 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.42 ^0.22 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.25 ^0.33 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.07 ^0.34 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.07 ^0.28 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.15 ^0.18 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.17 ^0.08 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.14 ^-0.0 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.3 ^0.36 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.1 ^0.4 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.06 ^0.34 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.17 ^0.24 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.21 ^0.11 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.19 ^0.01 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.13 ^-0.06 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.14 ^0.45 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.05 ^0.41 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.19 ^0.29 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.25 ^0.15 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.24 ^0.02 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.18 ^-0.06 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.1 ^-0.1 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.04 ^0.47 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.21 ^0.35 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.29 ^0.2 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.29 ^0.05 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.23 ^-0.07 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.14 ^-0.13 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.05 ^-0.13 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.22 ^0.42 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.33 ^0.25 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.34 ^0.07 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.28 ^-0.07 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.18 ^-0.15 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.08 ^-0.17 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.0 ^-0.14 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.36 ^0.3 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.4 ^0.1 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.34 ^-0.06 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.24 ^-0.17 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.11 ^-0.21 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.01 ^-0.19 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.06 ^-0.13 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.45 ^0.14 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.41 ^-0.05 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.29 ^-0.19 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.15 ^-0.25 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.02 ^-0.24 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.06 ^-0.18 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.1 ^-0.1 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.47 ^-0.04 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.35 ^-0.21 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.2 ^-0.29 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.05 ^-0.29 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.07 ^-0.23 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.13 ^-0.14 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.13 ^-0.05 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.42 ^-0.22 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.25 ^-0.33 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.07 ^-0.34 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.07 ^-0.28 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.15 ^-0.18 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.17 ^-0.08 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.14 ^0.0 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.3 ^-0.36 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.1 ^-0.4 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.06 ^-0.34 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.17 ^-0.24 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.21 ^-0.11 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.19 ^-0.01 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.13 ^0.06 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.14 ^-0.45 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.05 ^-0.41 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.19 ^-0.29 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.25 ^-0.15 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.24 ^-0.02 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.18 ^0.06 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.1 ^0.1 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.04 ^-0.47 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.21 ^-0.35 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.29 ^-0.2 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.29 ^-0.05 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.23 ^0.07 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.14 ^0.13 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.05 ^0.13 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.22 ^-0.42 ^10.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.33 ^-0.25 ^11.27 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.34 ^-0.07 ^11.63 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.28 ^0.07 ^12.0 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.18 ^0.15 ^12.36 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^0.08 ^0.17 ^12.73 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.179,0.896],scale:3.415} ^-0.0 ^0.14 ^13.11 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_024.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_024.mcfunction new file mode 100644 index 000000000..5cd38d5f6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_024.mcfunction @@ -0,0 +1,114 @@ +# frame 24 / 30 +# Vert +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.36 ^0.0 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.27 ^0.13 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.15 ^0.19 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.04 ^0.19 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.04 ^0.14 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.07 ^0.07 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.07 ^0.02 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.33 ^0.14 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.2 ^0.23 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.06 ^0.24 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.04 ^0.19 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.09 ^0.12 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.09 ^0.04 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.07 ^-0.0 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.25 ^0.25 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.1 ^0.29 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.03 ^0.24 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.11 ^0.16 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.13 ^0.07 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.1 ^0.0 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.06 ^-0.03 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.14 ^0.33 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.02 ^0.3 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.12 ^0.21 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.16 ^0.11 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.15 ^0.02 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.1 ^-0.04 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.05 ^-0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.0 ^0.36 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.13 ^0.27 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.19 ^0.15 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.19 ^0.04 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.14 ^-0.04 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.07 ^-0.07 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.02 ^-0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.14 ^0.33 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.23 ^0.2 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.24 ^0.06 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.19 ^-0.04 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.12 ^-0.09 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.04 ^-0.09 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.0 ^-0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.25 ^0.25 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.29 ^0.1 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.24 ^-0.03 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.16 ^-0.11 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.07 ^-0.13 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.0 ^-0.1 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.03 ^-0.06 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.33 ^0.14 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.3 ^-0.02 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.21 ^-0.12 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.11 ^-0.16 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.02 ^-0.15 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.04 ^-0.1 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.05 ^-0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.36 ^-0.0 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.27 ^-0.13 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.15 ^-0.19 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.04 ^-0.19 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.04 ^-0.14 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.07 ^-0.07 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.07 ^-0.02 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.33 ^-0.14 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.2 ^-0.23 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.06 ^-0.24 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.04 ^-0.19 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.09 ^-0.12 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.09 ^-0.04 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.07 ^0.0 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.25 ^-0.25 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.1 ^-0.29 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.03 ^-0.24 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.11 ^-0.16 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.13 ^-0.07 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.1 ^-0.0 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.06 ^0.03 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.14 ^-0.33 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.02 ^-0.3 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.12 ^-0.21 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.16 ^-0.11 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.15 ^-0.02 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.1 ^0.04 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.05 ^0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.0 ^-0.36 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.13 ^-0.27 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.19 ^-0.15 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.19 ^-0.04 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.14 ^0.04 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.07 ^0.07 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.02 ^0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.14 ^-0.33 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.23 ^-0.2 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.24 ^-0.06 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.19 ^0.04 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.12 ^0.09 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.04 ^0.09 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.0 ^0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.25 ^-0.25 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.29 ^-0.1 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.24 ^0.03 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.16 ^0.11 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.07 ^0.13 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.0 ^0.1 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.03 ^0.06 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.33 ^-0.14 ^11.55 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.3 ^0.02 ^11.93 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.21 ^0.12 ^12.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.11 ^0.16 ^12.69 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^0.02 ^0.15 ^13.08 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.04 ^0.1 ^13.46 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.184,0.922],scale:3.558} ^-0.05 ^0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_025.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_025.mcfunction new file mode 100644 index 000000000..e3cd2ff6c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_025.mcfunction @@ -0,0 +1,114 @@ +# frame 25 / 30 +# Vert +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.22 ^0.16 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.09 ^0.19 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.01 ^0.17 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.06 ^0.1 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.07 ^0.04 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.05 ^0.0 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^-0.01 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.14 ^0.23 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.01 ^0.21 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.07 ^0.15 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.09 ^0.07 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.08 ^0.01 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.05 ^-0.02 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^-0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.04 ^0.27 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.07 ^0.2 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.12 ^0.11 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.12 ^0.03 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.08 ^-0.02 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.04 ^-0.03 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.01 ^-0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.07 ^0.26 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.14 ^0.16 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.16 ^0.06 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.12 ^-0.01 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.07 ^-0.05 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^-0.05 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.0 ^-0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.16 ^0.22 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.19 ^0.09 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.17 ^-0.01 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.1 ^-0.06 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.04 ^-0.07 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.0 ^-0.05 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.01 ^-0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.23 ^0.14 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.21 ^0.01 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.15 ^-0.07 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.07 ^-0.09 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.01 ^-0.08 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^-0.05 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^-0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.27 ^0.04 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.2 ^-0.07 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.11 ^-0.12 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.03 ^-0.12 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^-0.08 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.03 ^-0.04 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^-0.01 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.26 ^-0.07 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.16 ^-0.14 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.06 ^-0.16 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.01 ^-0.12 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.05 ^-0.07 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.05 ^-0.02 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^0.0 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.22 ^-0.16 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.09 ^-0.19 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.01 ^-0.17 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.06 ^-0.1 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.07 ^-0.04 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.05 ^-0.0 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^0.01 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.14 ^-0.23 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.01 ^-0.21 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.07 ^-0.15 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.09 ^-0.07 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.08 ^-0.01 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.05 ^0.02 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.04 ^-0.27 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.07 ^-0.2 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.12 ^-0.11 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.12 ^-0.03 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.08 ^0.02 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.04 ^0.03 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.01 ^0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.07 ^-0.26 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.14 ^-0.16 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.16 ^-0.06 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.12 ^0.01 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.07 ^0.05 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.02 ^0.05 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.0 ^0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.16 ^-0.22 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.19 ^-0.09 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.17 ^0.01 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.1 ^0.06 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.04 ^0.07 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.0 ^0.05 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.01 ^0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.23 ^-0.14 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.21 ^-0.01 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.15 ^0.07 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.07 ^0.09 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.01 ^0.08 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^0.05 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^0.02 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.27 ^-0.04 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.2 ^0.07 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.11 ^0.12 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.03 ^0.12 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^0.08 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.03 ^0.04 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^0.01 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.26 ^0.07 ^12.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.16 ^0.14 ^12.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^0.06 ^0.16 ^12.91 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.01 ^0.12 ^13.31 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.05 ^0.07 ^13.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.05 ^0.02 ^14.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.189,0.944],scale:3.685} ^-0.02 ^-0.0 ^14.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_026.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_026.mcfunction new file mode 100644 index 000000000..6fc840b7d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_026.mcfunction @@ -0,0 +1,99 @@ +# frame 26 / 30 +# Vert +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.08 ^0.19 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.06 ^0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.06 ^0.03 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.04 ^-0.0 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^-0.01 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.0 ^0.0 ^15.09 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.0 ^0.2 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.07 ^0.13 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.09 ^0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.07 ^0.01 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.04 ^-0.02 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.01 ^-0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.08 ^0.18 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.12 ^0.1 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.1 ^0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.07 ^-0.02 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.03 ^-0.03 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.01 ^-0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.14 ^0.14 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.15 ^0.04 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.1 ^-0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.05 ^-0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.01 ^-0.04 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.0 ^-0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.19 ^0.08 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.15 ^-0.02 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.09 ^-0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.03 ^-0.06 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.0 ^-0.04 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.01 ^-0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.2 ^-0.0 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.13 ^-0.07 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.06 ^-0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.01 ^-0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^-0.04 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^-0.01 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.18 ^-0.08 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.1 ^-0.12 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^-0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^-0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.03 ^-0.03 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^-0.01 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.14 ^-0.14 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.04 ^-0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^-0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.05 ^-0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.04 ^-0.01 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^0.0 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.08 ^-0.19 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^-0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.06 ^-0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.06 ^-0.03 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.04 ^0.0 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^0.01 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.0 ^-0.2 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.07 ^-0.13 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.09 ^-0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.07 ^-0.01 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.04 ^0.02 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.01 ^0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.08 ^-0.18 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.12 ^-0.1 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.1 ^-0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.07 ^0.02 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.03 ^0.03 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.01 ^0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.14 ^-0.14 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.15 ^-0.04 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.1 ^0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.05 ^0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.01 ^0.04 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.0 ^0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.19 ^-0.08 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.15 ^0.02 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.09 ^0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.03 ^0.06 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.0 ^0.04 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.01 ^0.02 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.2 ^0.0 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.13 ^0.07 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.06 ^0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.01 ^0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^0.04 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^0.01 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.18 ^0.08 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.1 ^0.12 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.02 ^0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^0.07 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.03 ^0.03 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^0.01 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.14 ^0.14 ^12.62 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^0.04 ^0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.05 ^0.05 ^13.85 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.04 ^0.01 ^14.26 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.193,0.963],scale:3.793} ^-0.02 ^-0.0 ^14.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_027.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_027.mcfunction new file mode 100644 index 000000000..4bae5269f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_027.mcfunction @@ -0,0 +1,84 @@ +# frame 27 / 30 +# Vert +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.01 ^0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.06 ^0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.06 ^0.03 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.04 ^-0.0 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^-0.01 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.0 ^0.0 ^15.13 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.0 ^0.0 ^15.56 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.07 ^0.14 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.09 ^0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.07 ^0.01 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.03 ^-0.02 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.01 ^-0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.12 ^0.1 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.1 ^0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.07 ^-0.02 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.03 ^-0.03 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.0 ^-0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.15 ^0.04 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.1 ^-0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.05 ^-0.05 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.01 ^-0.04 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.0 ^-0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.15 ^-0.01 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.09 ^-0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.03 ^-0.06 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.0 ^-0.04 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.01 ^-0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.14 ^-0.07 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.06 ^-0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.01 ^-0.07 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^-0.03 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^-0.01 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.1 ^-0.12 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^-0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^-0.07 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.03 ^-0.03 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^-0.0 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.04 ^-0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^-0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.05 ^-0.05 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.04 ^-0.01 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^0.0 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.01 ^-0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.06 ^-0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.06 ^-0.03 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.04 ^0.0 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^0.01 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.07 ^-0.14 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.09 ^-0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.07 ^-0.01 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.03 ^0.02 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.01 ^0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.12 ^-0.1 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.1 ^-0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.07 ^0.02 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.03 ^0.03 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.0 ^0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.15 ^-0.04 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.1 ^0.02 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.05 ^0.05 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.01 ^0.04 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.0 ^0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.15 ^0.01 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.09 ^0.06 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.03 ^0.06 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.0 ^0.04 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.01 ^0.02 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.14 ^0.07 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.06 ^0.09 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.01 ^0.07 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^0.03 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^0.01 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.1 ^0.12 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.02 ^0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^0.07 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.03 ^0.03 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^0.0 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^0.04 ^0.15 ^13.03 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^0.1 ^13.44 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.05 ^0.05 ^13.86 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.04 ^0.01 ^14.28 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.196,0.979],scale:3.881} ^-0.02 ^-0.0 ^14.71 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_028.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_028.mcfunction new file mode 100644 index 000000000..14e438f8f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_028.mcfunction @@ -0,0 +1,84 @@ +# frame 28 / 30 +# Vert +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.05 ^0.11 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.06 ^0.05 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.05 ^0.0 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^-0.01 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.0 ^0.0 ^15.04 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.0 ^0.0 ^15.47 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^0.02 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.09 ^0.08 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.08 ^0.02 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.04 ^-0.01 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^-0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.11 ^0.04 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.08 ^-0.01 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.04 ^-0.03 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^-0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.12 ^-0.01 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.07 ^-0.04 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^-0.04 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.0 ^-0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^-0.0 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.11 ^-0.05 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.05 ^-0.06 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.0 ^-0.05 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^-0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^-0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.08 ^-0.09 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^-0.08 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^-0.04 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^-0.01 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^-0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.04 ^-0.11 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^-0.08 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.03 ^-0.04 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^-0.01 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^-0.02 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^-0.12 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.04 ^-0.07 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.04 ^-0.02 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^0.0 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.0 ^-0.02 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.05 ^-0.11 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.06 ^-0.05 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.05 ^-0.0 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^0.01 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^-0.02 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.09 ^-0.08 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.08 ^-0.02 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.04 ^0.01 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^-0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.11 ^-0.04 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.08 ^0.01 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.04 ^0.03 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^-0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.12 ^0.01 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.07 ^0.04 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^0.04 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.0 ^0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^0.0 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.11 ^0.05 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.05 ^0.06 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.0 ^0.05 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^0.02 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.08 ^0.09 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.02 ^0.08 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^0.04 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^0.01 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^0.01 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.04 ^0.11 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^0.08 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.03 ^0.04 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^0.01 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^0.01 ^0.02 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.01 ^0.12 ^13.33 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.04 ^0.07 ^13.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.04 ^0.02 ^14.18 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.02 ^-0.0 ^14.61 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.198,0.990],scale:3.946} ^-0.0 ^0.02 ^15.9 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_029.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_029.mcfunction new file mode 100644 index 000000000..6f709ed18 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_029.mcfunction @@ -0,0 +1,99 @@ +# frame 29 / 30 +# Vert +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.06 ^0.08 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.06 ^0.02 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.03 ^-0.0 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^0.0 ^15.25 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.09 ^0.05 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.06 ^-0.0 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.03 ^-0.02 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^0.01 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.1 ^0.01 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.06 ^-0.03 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^-0.02 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^-0.02 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.03 ^0.0 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.09 ^-0.03 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.04 ^-0.05 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.03 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^-0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^0.0 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^-0.01 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.08 ^-0.06 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^-0.06 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^-0.03 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^-0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.0 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^-0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.05 ^-0.09 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^-0.06 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^-0.03 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^-0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.1 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.03 ^-0.06 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^-0.02 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^-0.0 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^-0.03 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.03 ^-0.09 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.05 ^-0.04 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.03 ^-0.01 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.0 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^-0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^-0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.06 ^-0.08 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.06 ^-0.02 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.03 ^0.0 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^-0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^-0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.09 ^-0.05 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.06 ^0.0 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.03 ^0.02 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^-0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^-0.01 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.1 ^-0.01 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.06 ^0.03 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^0.02 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^0.02 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^-0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.03 ^-0.0 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.09 ^0.03 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.04 ^0.05 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.03 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^-0.0 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^0.01 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.08 ^0.06 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^0.06 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^0.03 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.0 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.02 ^0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.05 ^0.09 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.0 ^0.06 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^0.03 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^0.01 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.1 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.03 ^0.06 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^0.02 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.02 ^0.0 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.01 ^0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^0.03 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.03 ^0.09 ^13.52 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.05 ^0.04 ^13.95 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.03 ^0.01 ^14.38 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^-0.0 ^14.81 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^0.0 ^0.01 ^15.68 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,0.998],scale:3.986} ^-0.01 ^0.02 ^16.12 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_030.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_030.mcfunction new file mode 100644 index 000000000..2a0dd0e73 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/casting/water_bolt/water_bolt_030.mcfunction @@ -0,0 +1,99 @@ +# frame 30 / 30 +# Vert +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.06 ^0.07 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.06 ^0.02 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^-0.01 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^0.0 ^15.32 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.02 ^0.02 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.08 ^0.04 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.06 ^-0.01 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.02 ^-0.02 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^0.01 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.09 ^0.0 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.05 ^-0.03 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.02 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^-0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^0.0 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.09 ^-0.03 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.04 ^-0.05 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^-0.03 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^-0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.0 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^-0.01 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.07 ^-0.06 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.02 ^-0.06 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.03 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.0 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.02 ^-0.02 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.04 ^-0.08 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.06 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.02 ^-0.02 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.03 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^-0.09 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^-0.05 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.02 ^-0.01 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.0 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^-0.03 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^-0.09 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.05 ^-0.04 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^-0.0 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.0 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^-0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.03 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.06 ^-0.07 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.06 ^-0.02 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^0.01 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^-0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.02 ^-0.02 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.08 ^-0.04 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.06 ^0.01 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.02 ^0.02 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^-0.01 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.09 ^-0.0 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.05 ^0.03 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.02 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^-0.0 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.09 ^0.03 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.04 ^0.05 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^0.03 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.0 ^0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^-0.0 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.03 ^0.01 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.07 ^0.06 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.02 ^0.06 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.03 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.0 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.02 ^0.02 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.04 ^0.08 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.06 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.02 ^0.02 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.01 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.03 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^0.09 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^0.05 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.02 ^0.01 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.0 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.01 ^0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^0.03 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^0.09 ^13.58 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.05 ^0.04 ^14.01 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.03 ^0.0 ^14.45 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^-0.0 ^14.88 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^0.0 ^0.01 ^15.75 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] +particle dust{color:[0.000,0.200,1.000],scale:4.000} ^-0.01 ^0.03 ^16.19 0.0 0.0 0.0 0.5 1 normal @a[tag=ShowParticles,distance=..24] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_1.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_1.mcfunction new file mode 100644 index 000000000..17a1feb3a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_1.mcfunction @@ -0,0 +1,103 @@ +# frame 1 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.195 ^0.981 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.383 ^0.924 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.556 ^0.831 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.707 ^0.707 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.831 ^0.556 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.924 ^0.383 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.981 ^0.195 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.0 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.981 ^-0.195 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.924 ^-0.383 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.831 ^-0.556 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.707 ^-0.707 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.556 ^-0.831 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.383 ^-0.924 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.195 ^-0.981 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.195 ^-0.981 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.383 ^-0.924 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.556 ^-0.831 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.707 ^-0.707 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.831 ^-0.556 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.924 ^-0.383 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.981 ^-0.195 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.0 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.981 ^0.195 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.924 ^0.383 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.831 ^0.556 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.707 ^0.707 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.556 ^0.831 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.383 ^0.924 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.195 ^0.981 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.48 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_10.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_10.mcfunction new file mode 100644 index 000000000..bf8bb18a8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_10.mcfunction @@ -0,0 +1,103 @@ +# frame 10 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^-1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^-0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^-1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^-0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^-0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^-1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^-0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^-0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^-0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^-0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^-0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^-0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^-0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^-0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^-0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^-0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^-0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^-1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^-1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^-1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^-1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^-1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^-0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^-0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^-0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^-0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^-0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^-0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.663 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.129 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.254 ^0.612 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.368 ^0.551 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.468 ^0.468 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.551 ^0.368 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.612 ^0.254 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.129 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.663 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.129 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.612 ^-0.254 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.551 ^-0.368 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.468 ^-0.468 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.368 ^-0.551 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.254 ^-0.612 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.129 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.663 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.129 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.254 ^-0.612 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.368 ^-0.551 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.468 ^-0.468 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.551 ^-0.368 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.612 ^-0.254 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.129 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.663 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.129 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.612 ^0.254 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.551 ^0.368 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.468 ^0.468 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.368 ^0.551 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.254 ^0.612 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.129 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.3 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_11.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_11.mcfunction new file mode 100644 index 000000000..0675e8de6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_11.mcfunction @@ -0,0 +1,103 @@ +# frame 11 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.5 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.5 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^-1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^-1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^-1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^-1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^-1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^-0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^-0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^-0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^-0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^-0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.413 ^-0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^-0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.488 ^-0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^-0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.563 ^-0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^-1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.638 ^-1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^-1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.713 ^-1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.425 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.35 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.275 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.2 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.125 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.05 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.975 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.9 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.825 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.637 ^1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.713 ^1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.638 ^1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.563 ^0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.413 ^0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.825 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.9 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.975 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.05 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.125 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.2 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.275 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.35 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.425 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.625 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.122 ^0.613 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.239 ^0.577 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.347 ^0.52 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.442 ^0.442 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.52 ^0.347 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.577 ^0.239 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.613 ^0.122 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.625 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.613 ^-0.122 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.577 ^-0.239 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.52 ^-0.347 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.442 ^-0.442 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.347 ^-0.52 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.239 ^-0.577 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.122 ^-0.613 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.625 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.122 ^-0.613 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.239 ^-0.577 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.347 ^-0.52 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.442 ^-0.442 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.52 ^-0.347 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.577 ^-0.239 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.613 ^-0.122 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.625 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.613 ^0.122 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.577 ^0.239 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.52 ^0.347 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.442 ^0.442 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.347 ^0.52 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.239 ^0.577 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.122 ^0.613 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.28 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_12.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_12.mcfunction new file mode 100644 index 000000000..504c21b9a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_12.mcfunction @@ -0,0 +1,103 @@ +# frame 12 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^-1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^-0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^-1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^-0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^-0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^-1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^-1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^-1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^-1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^-1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^-0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^-0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^-0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^-0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^-0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^-0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^-0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^-0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^-0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^-0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^-0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^-1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^-0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^-0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^-0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^-0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^-0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^-0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^-0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.587 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.115 ^0.576 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.225 ^0.543 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.326 ^0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.415 ^0.415 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.488 ^0.326 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.543 ^0.225 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.576 ^0.115 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.587 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.576 ^-0.115 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.543 ^-0.225 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.488 ^-0.326 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.415 ^-0.415 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.326 ^-0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.225 ^-0.543 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.115 ^-0.576 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.587 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.115 ^-0.576 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.225 ^-0.543 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.326 ^-0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.415 ^-0.415 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^-0.326 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.543 ^-0.225 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.576 ^-0.115 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.587 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.576 ^0.115 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.543 ^0.225 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^0.326 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.415 ^0.415 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.326 ^0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.225 ^0.543 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.115 ^0.576 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.26 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_13.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_13.mcfunction new file mode 100644 index 000000000..ffe68e18f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_13.mcfunction @@ -0,0 +1,103 @@ +# frame 13 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.713 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.563 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.413 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.563 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.713 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.55 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.107 ^0.539 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.21 ^0.508 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.306 ^0.457 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.389 ^0.389 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.457 ^0.306 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.508 ^0.21 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.539 ^0.107 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.55 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.539 ^-0.107 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.508 ^-0.21 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.457 ^-0.306 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.389 ^-0.389 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.306 ^-0.457 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.21 ^-0.508 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.107 ^-0.539 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.55 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.107 ^-0.539 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.21 ^-0.508 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.306 ^-0.457 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.389 ^-0.389 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.457 ^-0.306 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.508 ^-0.21 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.539 ^-0.107 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.55 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.539 ^0.107 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.508 ^0.21 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.457 ^0.306 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.389 ^0.389 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.306 ^0.457 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.21 ^0.508 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.107 ^0.539 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.24 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_14.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_14.mcfunction new file mode 100644 index 000000000..fb2f235a8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_14.mcfunction @@ -0,0 +1,103 @@ +# frame 14 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^-1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^-1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^-0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^-0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^-0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^-1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^-1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^-1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^-1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^-1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^-0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^-0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^-0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^-0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^-0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^-0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^-0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^-0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^-0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^-0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^-0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^-0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^-0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^-0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^-0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^-0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^-0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^-0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^-1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.513 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.1 ^0.503 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.196 ^0.473 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.285 ^0.426 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.362 ^0.362 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.426 ^0.285 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.473 ^0.196 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.503 ^0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.513 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.503 ^-0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.473 ^-0.196 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.426 ^-0.285 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.362 ^-0.362 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.285 ^-0.426 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.196 ^-0.473 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.1 ^-0.503 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.513 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.1 ^-0.503 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.196 ^-0.473 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.285 ^-0.426 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.362 ^-0.362 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.426 ^-0.285 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.473 ^-0.196 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.503 ^-0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.513 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.503 ^0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.473 ^0.196 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.426 ^0.285 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.362 ^0.362 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.285 ^0.426 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.196 ^0.473 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.1 ^0.503 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.22 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_15.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_15.mcfunction new file mode 100644 index 000000000..7957c778a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_15.mcfunction @@ -0,0 +1,103 @@ +# frame 15 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^-1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.5 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.5 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.713 ^-1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^-1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.638 ^-1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^-1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.563 ^-0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^-0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.488 ^-0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^-0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.413 ^-0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.825 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.9 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.975 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.05 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.125 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.2 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.275 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.35 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.425 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.637 ^1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.413 ^0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.563 ^0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.638 ^1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.713 ^1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.425 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.35 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.275 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.2 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.125 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.05 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.975 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.9 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.825 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^-0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^-0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^-0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^-0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^-0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^-1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^-1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^-1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^-1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.475 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.093 ^0.466 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.182 ^0.439 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.264 ^0.395 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.336 ^0.336 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.395 ^0.264 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.439 ^0.182 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.466 ^0.093 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.475 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.466 ^-0.093 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.439 ^-0.182 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.395 ^-0.264 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.336 ^-0.336 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.264 ^-0.395 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.182 ^-0.439 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.093 ^-0.466 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.475 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.093 ^-0.466 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.182 ^-0.439 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.264 ^-0.395 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.336 ^-0.336 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.395 ^-0.264 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.439 ^-0.182 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.466 ^-0.093 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.475 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.466 ^0.093 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.439 ^0.182 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.395 ^0.264 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.336 ^0.336 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.264 ^0.395 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.182 ^0.439 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.093 ^0.466 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.2 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_16.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_16.mcfunction new file mode 100644 index 000000000..8c77b6d0c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_16.mcfunction @@ -0,0 +1,103 @@ +# frame 16 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^-1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^-1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^-0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^-0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^-0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^-1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^-0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^-0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^-0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^-0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^-0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^-0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^-0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^-0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^-0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^-0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^-0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^-0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^-0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^-0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^-0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^-0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^-0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^-1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^-1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^-1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^-1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^-1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.438 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.085 ^0.429 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.167 ^0.404 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.243 ^0.364 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.309 ^0.309 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.364 ^0.243 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.404 ^0.167 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.429 ^0.085 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.438 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.429 ^-0.085 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.404 ^-0.167 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.364 ^-0.243 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.309 ^-0.309 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.243 ^-0.364 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.167 ^-0.404 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.085 ^-0.429 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.438 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.085 ^-0.429 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.167 ^-0.404 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.243 ^-0.364 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.309 ^-0.309 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.364 ^-0.243 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.404 ^-0.167 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.429 ^-0.085 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.438 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.429 ^0.085 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.404 ^0.167 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.364 ^0.243 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.309 ^0.309 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.243 ^0.364 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.167 ^0.404 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.085 ^0.429 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.18 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_17.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_17.mcfunction new file mode 100644 index 000000000..0ca0f1831 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_17.mcfunction @@ -0,0 +1,103 @@ +# frame 17 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.413 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.563 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.713 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.713 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.638 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.563 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.4 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.078 ^0.392 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.153 ^0.37 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.222 ^0.333 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.283 ^0.283 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.333 ^0.222 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.37 ^0.153 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.392 ^0.078 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.4 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.392 ^-0.078 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.37 ^-0.153 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.333 ^-0.222 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.283 ^-0.283 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.222 ^-0.333 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.153 ^-0.37 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.078 ^-0.392 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.4 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.078 ^-0.392 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.153 ^-0.37 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.222 ^-0.333 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.283 ^-0.283 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.333 ^-0.222 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.37 ^-0.153 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.392 ^-0.078 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.4 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.392 ^0.078 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.37 ^0.153 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.333 ^0.222 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.283 ^0.283 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.222 ^0.333 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.153 ^0.37 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.078 ^0.392 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.16 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_18.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_18.mcfunction new file mode 100644 index 000000000..4718e0505 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_18.mcfunction @@ -0,0 +1,103 @@ +# frame 18 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^-0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^-1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^-1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^-0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^-0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^-0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^-0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^-0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^-0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^-0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^-0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^-0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^-1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^-0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^-0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^-0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^-0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^-0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^-0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^-0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^-0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^-0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^-0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^-0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^-1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^-1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^-1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^-1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^-1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.363 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.071 ^0.356 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.139 ^0.335 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.201 ^0.301 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.256 ^0.256 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.301 ^0.201 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.335 ^0.139 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.356 ^0.071 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.363 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.356 ^-0.071 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.335 ^-0.139 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.301 ^-0.201 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.256 ^-0.256 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.201 ^-0.301 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.139 ^-0.335 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.071 ^-0.356 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.363 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.071 ^-0.356 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.139 ^-0.335 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.201 ^-0.301 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.256 ^-0.256 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.301 ^-0.201 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.335 ^-0.139 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.356 ^-0.071 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.363 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.356 ^0.071 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.335 ^0.139 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.301 ^0.201 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.256 ^0.256 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.201 ^0.301 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.139 ^0.335 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.071 ^0.356 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.1400000000000001 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_19.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_19.mcfunction new file mode 100644 index 000000000..d0b5238da --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_19.mcfunction @@ -0,0 +1,103 @@ +# frame 19 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.5 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^-1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.5 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.425 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.35 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.275 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.2 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.125 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.05 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.975 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.9 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.825 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.638 ^1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.825 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.9 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.975 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.05 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.125 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.2 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.275 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.35 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.425 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^-1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^-1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^-1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^-1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^-0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^-0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^-0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^-0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^-0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^-0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^-0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^-0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^-0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^-0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^-1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.638 ^-1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^-1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^-1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.325 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.063 ^0.319 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.124 ^0.3 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.181 ^0.27 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.23 ^0.23 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.27 ^0.181 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.3 ^0.124 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.319 ^0.063 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.325 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.319 ^-0.063 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.3 ^-0.124 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.27 ^-0.181 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.23 ^-0.23 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.181 ^-0.27 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.124 ^-0.3 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.063 ^-0.319 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.325 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.063 ^-0.319 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.124 ^-0.3 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.181 ^-0.27 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.23 ^-0.23 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.27 ^-0.181 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.3 ^-0.124 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.319 ^-0.063 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.325 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.319 ^0.063 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.3 ^0.124 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.27 ^0.181 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.23 ^0.23 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.181 ^0.27 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.124 ^0.3 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.063 ^0.319 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.12 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_2.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_2.mcfunction new file mode 100644 index 000000000..409ebec3b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_2.mcfunction @@ -0,0 +1,103 @@ +# frame 2 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^-0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^-1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^-1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^-0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^-0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^-1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^-0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^-0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^-0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^-0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^-0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^-0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^-0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^-0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^-0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^-0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^-1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^-1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^-1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^-1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^-1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^-0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^-0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^-0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^-0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^-0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^-0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.962 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.188 ^0.944 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.368 ^0.889 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.535 ^0.8 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.681 ^0.681 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.8 ^0.535 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.889 ^0.368 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.944 ^0.188 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.962 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.944 ^-0.188 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.889 ^-0.368 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.8 ^-0.535 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.681 ^-0.681 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.535 ^-0.8 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.368 ^-0.889 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.188 ^-0.944 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.962 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.188 ^-0.944 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.368 ^-0.889 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.535 ^-0.8 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.681 ^-0.681 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.8 ^-0.535 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.889 ^-0.368 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.944 ^-0.188 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.962 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.944 ^0.188 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.889 ^0.368 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.8 ^0.535 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.681 ^0.681 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.535 ^0.8 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.368 ^0.889 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.188 ^0.944 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.46 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_20.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_20.mcfunction new file mode 100644 index 000000000..2df2083d4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_20.mcfunction @@ -0,0 +1,103 @@ +# frame 20 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^-1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^-1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^-0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^-0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^-0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^-0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^-0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^-0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^-0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^-0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^-0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^-1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^-1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^-1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^-1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^-1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^-0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^-0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^-0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^-0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^-0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^-0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^-0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^-0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^-0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^-0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^-1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.287 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.056 ^0.282 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.11 ^0.266 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.16 ^0.239 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.203 ^0.203 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.239 ^0.16 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.266 ^0.11 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.282 ^0.056 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.287 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.282 ^-0.056 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.266 ^-0.11 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.239 ^-0.16 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.203 ^-0.203 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.16 ^-0.239 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.11 ^-0.266 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.056 ^-0.282 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.287 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.056 ^-0.282 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.11 ^-0.266 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.16 ^-0.239 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.203 ^-0.203 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.239 ^-0.16 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.266 ^-0.11 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.282 ^-0.056 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.287 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.282 ^0.056 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.266 ^0.11 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.239 ^0.16 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.203 ^0.203 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.16 ^0.239 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.11 ^0.266 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.056 ^0.282 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.1 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_21.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_21.mcfunction new file mode 100644 index 000000000..975d4fce2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_21.mcfunction @@ -0,0 +1,103 @@ +# frame 21 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.713 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.563 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.413 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.563 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.638 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.713 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.25 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.049 ^0.245 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.096 ^0.231 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.139 ^0.208 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.177 ^0.177 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.208 ^0.139 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.231 ^0.096 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.245 ^0.049 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.25 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.245 ^-0.049 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.231 ^-0.096 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.208 ^-0.139 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.177 ^-0.177 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.139 ^-0.208 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.096 ^-0.231 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.049 ^-0.245 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.25 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.049 ^-0.245 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.096 ^-0.231 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.139 ^-0.208 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.177 ^-0.177 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.208 ^-0.139 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.231 ^-0.096 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.245 ^-0.049 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.25 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.245 ^0.049 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.231 ^0.096 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.208 ^0.139 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.177 ^0.177 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.139 ^0.208 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.096 ^0.231 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.049 ^0.245 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.08 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_22.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_22.mcfunction new file mode 100644 index 000000000..cd0296efd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_22.mcfunction @@ -0,0 +1,103 @@ +# frame 22 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^-0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^-1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^-1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^-0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^-0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^-0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^-0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^-0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^-0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^-0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^-0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^-0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^-0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^-1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^-1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^-1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^-1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^-1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^-1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^-0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^-0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^-0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^-0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^-0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^-0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^-0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^-0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^-0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.213 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.041 ^0.208 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.081 ^0.196 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.118 ^0.177 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.15 ^0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.177 ^0.118 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.196 ^0.081 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.208 ^0.041 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.213 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.208 ^-0.041 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.196 ^-0.081 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.177 ^-0.118 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.15 ^-0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.118 ^-0.177 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.081 ^-0.196 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.041 ^-0.208 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.213 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.041 ^-0.208 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.081 ^-0.196 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.118 ^-0.177 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.15 ^-0.15 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.177 ^-0.118 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.196 ^-0.081 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.208 ^-0.041 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.213 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.208 ^0.041 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.196 ^0.081 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.177 ^0.118 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.15 ^0.15 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.118 ^0.177 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.081 ^0.196 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.041 ^0.208 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.06 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_23.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_23.mcfunction new file mode 100644 index 000000000..581deb15e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_23.mcfunction @@ -0,0 +1,103 @@ +# frame 23 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.5 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^-1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.5 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.637 ^1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.413 ^0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.563 ^0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.638 ^1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.713 ^1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.425 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.35 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.275 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.2 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.125 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.05 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.975 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.9 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.825 ^-0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^-0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^-0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^-0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^-0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^-0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^-1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^-1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^-1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^-1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.713 ^-1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^-1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.638 ^-1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^-1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.563 ^-0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^-0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.488 ^-0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^-0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.413 ^-0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.825 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.9 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.975 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.05 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.125 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.2 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.275 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.35 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.425 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.175 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.034 ^0.172 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.067 ^0.162 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.097 ^0.146 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.124 ^0.124 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.146 ^0.097 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.162 ^0.067 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.172 ^0.034 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.175 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.172 ^-0.034 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.162 ^-0.067 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.146 ^-0.097 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.124 ^-0.124 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.097 ^-0.146 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.067 ^-0.162 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.034 ^-0.172 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.175 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.034 ^-0.172 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.067 ^-0.162 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.097 ^-0.146 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.124 ^-0.124 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.146 ^-0.097 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.162 ^-0.067 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.172 ^-0.034 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.175 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.172 ^0.034 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.162 ^0.067 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.146 ^0.097 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.124 ^0.124 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.097 ^0.146 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.067 ^0.162 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.034 ^0.172 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.04 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_24.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_24.mcfunction new file mode 100644 index 000000000..c8067323c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_24.mcfunction @@ -0,0 +1,103 @@ +# frame 24 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^-1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^-1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^-0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^-0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^-0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^-0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^-0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^-0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^-0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^-0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^-0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^-0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^-0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^-1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^-1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^-1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^-1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^-1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^-1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^-0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^-0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^-0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^-0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^-0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^-0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^-0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^-0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.138 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.027 ^0.135 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.053 ^0.127 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.076 ^0.114 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.097 ^0.097 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.114 ^0.076 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.127 ^0.053 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.135 ^0.027 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.138 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.135 ^-0.027 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.127 ^-0.053 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.114 ^-0.076 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.097 ^-0.097 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.076 ^-0.114 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.053 ^-0.127 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.027 ^-0.135 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.138 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.027 ^-0.135 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.053 ^-0.127 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.076 ^-0.114 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.097 ^-0.097 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.114 ^-0.076 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.127 ^-0.053 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.135 ^-0.027 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.138 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.135 ^0.027 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.127 ^0.053 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.114 ^0.076 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.097 ^0.097 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.076 ^0.114 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.053 ^0.127 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.027 ^0.135 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.02 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_25.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_25.mcfunction new file mode 100644 index 000000000..09c724a8f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_25.mcfunction @@ -0,0 +1,103 @@ +# frame 25 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.713 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.638 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.563 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.413 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.563 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.713 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.1 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.02 ^0.098 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.038 ^0.092 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.056 ^0.083 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.071 ^0.071 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.083 ^0.056 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.092 ^0.038 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.098 ^0.02 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.1 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.098 ^-0.02 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.092 ^-0.038 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.083 ^-0.056 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.071 ^-0.071 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.056 ^-0.083 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.038 ^-0.092 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.02 ^-0.098 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.1 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.02 ^-0.098 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.038 ^-0.092 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.056 ^-0.083 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.071 ^-0.071 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.083 ^-0.056 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.092 ^-0.038 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.098 ^-0.02 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.1 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.098 ^0.02 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.092 ^0.038 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.083 ^0.056 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.071 ^0.071 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.056 ^0.083 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.038 ^0.092 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.02 ^0.098 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.0 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_3.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_3.mcfunction new file mode 100644 index 000000000..d9ec5fc34 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_3.mcfunction @@ -0,0 +1,103 @@ +# frame 3 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.5 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^-1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.5 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.825 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.9 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.975 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.05 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.125 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.2 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.275 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.35 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.425 ^0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^-1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^-1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^-1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^-1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^-0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^-0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^-0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^-0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.413 ^-0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^-0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^-0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^-0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^-0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^-0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^-1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.638 ^-1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^-1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^-1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.425 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.35 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.275 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.2 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.125 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.05 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.975 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.9 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.825 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.637 ^1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.925 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.18 ^0.907 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.354 ^0.855 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.514 ^0.769 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.654 ^0.654 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.769 ^0.514 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.855 ^0.354 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.907 ^0.18 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.925 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.907 ^-0.18 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.855 ^-0.354 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.769 ^-0.514 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.654 ^-0.654 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.514 ^-0.769 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.354 ^-0.855 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.18 ^-0.907 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.925 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.18 ^-0.907 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.354 ^-0.855 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.514 ^-0.769 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.654 ^-0.654 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.769 ^-0.514 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.855 ^-0.354 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.907 ^-0.18 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.925 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.907 ^0.18 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.855 ^0.354 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.769 ^0.514 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.654 ^0.654 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.514 ^0.769 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.354 ^0.855 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.18 ^0.907 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.44 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_4.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_4.mcfunction new file mode 100644 index 000000000..3cfe04932 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_4.mcfunction @@ -0,0 +1,103 @@ +# frame 4 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^-1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^-1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^-0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^-0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^-0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^-0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^-0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^-0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^-0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^-0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^-0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^-0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^-1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^-1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^-1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^-1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^-1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^-0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^-0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^-0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^-0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^-0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^-0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^-0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^-0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^-0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^-0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^-1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.887 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.173 ^0.87 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.34 ^0.82 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.493 ^0.738 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.628 ^0.628 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.738 ^0.493 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.82 ^0.34 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.87 ^0.173 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.887 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.87 ^-0.173 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.82 ^-0.34 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.738 ^-0.493 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.628 ^-0.628 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.493 ^-0.738 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.34 ^-0.82 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.173 ^-0.87 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.887 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.173 ^-0.87 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.34 ^-0.82 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.493 ^-0.738 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.628 ^-0.628 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.738 ^-0.493 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.82 ^-0.34 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.87 ^-0.173 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.887 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.87 ^0.173 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.82 ^0.34 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.738 ^0.493 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.628 ^0.628 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.493 ^0.738 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.34 ^0.82 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.173 ^0.87 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.42 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_5.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_5.mcfunction new file mode 100644 index 000000000..b145054b6 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_5.mcfunction @@ -0,0 +1,103 @@ +# frame 5 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.638 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.713 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.412 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.713 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.563 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.85 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.166 ^0.834 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.325 ^0.785 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.472 ^0.707 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.601 ^0.601 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.707 ^0.472 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.785 ^0.325 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.834 ^0.166 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.85 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.834 ^-0.166 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.785 ^-0.325 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.707 ^-0.472 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.601 ^-0.601 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.472 ^-0.707 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.325 ^-0.785 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.166 ^-0.834 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.85 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.166 ^-0.834 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.325 ^-0.785 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.472 ^-0.707 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.601 ^-0.601 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.707 ^-0.472 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.785 ^-0.325 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.834 ^-0.166 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.85 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.834 ^0.166 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.785 ^0.325 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.707 ^0.472 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.601 ^0.601 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.472 ^0.707 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.325 ^0.785 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.166 ^0.834 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.4 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_6.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_6.mcfunction new file mode 100644 index 000000000..ceaaa8ece --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_6.mcfunction @@ -0,0 +1,103 @@ +# frame 6 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^-0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^-1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^-1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^-0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^-0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^-0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^-0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^-0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^-0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^-0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^-0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^-0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^-0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^-0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^-1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^-1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^-1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^-1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^-1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^-1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^-0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^-0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^-0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^-0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^-0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^-0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^-0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^-0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^-0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.812 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.159 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^0.751 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.451 ^0.676 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.575 ^0.575 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.676 ^0.451 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.751 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.812 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^-0.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.751 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.676 ^-0.451 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.575 ^-0.575 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.451 ^-0.676 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^-0.751 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.159 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.812 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.159 ^-0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-0.751 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.451 ^-0.676 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.575 ^-0.575 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.676 ^-0.451 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.751 ^-0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.812 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^0.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.751 ^0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.676 ^0.451 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.575 ^0.575 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.451 ^0.676 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^0.751 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.159 ^0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.38 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_7.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_7.mcfunction new file mode 100644 index 000000000..59ae714ee --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_7.mcfunction @@ -0,0 +1,103 @@ +# frame 7 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.5 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.5 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^-1.299 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-1.299 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.75 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.75 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.375 ^-0.65 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.375 ^-0.65 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.425 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.35 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.275 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.2 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.125 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.05 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.975 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.9 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.825 ^-0.0 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.412 ^-0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^-0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.487 ^-0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^-0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.562 ^-0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^-1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.637 ^-1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^-1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.712 ^-1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.713 ^-1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^-1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.637 ^-1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^-1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.563 ^-0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^-0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.488 ^-0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^-0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.413 ^-0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.825 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.9 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.975 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.05 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.125 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.2 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.275 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.35 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.425 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.712 ^1.234 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.675 ^1.169 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.637 ^1.104 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.6 ^1.039 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.562 ^0.974 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.525 ^0.909 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.487 ^0.844 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.45 ^0.779 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.412 ^0.714 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.413 ^0.714 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.45 ^0.779 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.488 ^0.844 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.525 ^0.909 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.563 ^0.974 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.6 ^1.039 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.638 ^1.104 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.675 ^1.169 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.713 ^1.234 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.775 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.151 ^0.76 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.297 ^0.716 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.431 ^0.644 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.548 ^0.548 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.644 ^0.431 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.716 ^0.297 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.76 ^0.151 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.775 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.76 ^-0.151 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.716 ^-0.297 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.644 ^-0.431 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.548 ^-0.548 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.431 ^-0.644 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.297 ^-0.716 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.151 ^-0.76 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.775 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.151 ^-0.76 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.297 ^-0.716 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.431 ^-0.644 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.548 ^-0.548 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.644 ^-0.431 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.716 ^-0.297 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.76 ^-0.151 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.775 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.76 ^0.151 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.716 ^0.297 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.644 ^0.431 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.548 ^0.548 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.431 ^0.644 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.297 ^0.716 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.151 ^0.76 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.3599999999999999 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_8.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_8.mcfunction new file mode 100644 index 000000000..acb9d9d77 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_8.mcfunction @@ -0,0 +1,103 @@ +# frame 8 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.449 ^-0.388 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.061 ^1.061 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.388 ^1.449 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.449 ^0.388 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.061 ^-1.061 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.388 ^-1.449 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.724 ^-0.194 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.53 ^0.53 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.194 ^0.724 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.724 ^0.194 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.53 ^-0.53 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.194 ^-0.724 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.376 ^-0.369 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.304 ^-0.349 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.232 ^-0.33 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.159 ^-0.311 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.087 ^-0.291 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.014 ^-0.272 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.942 ^-0.252 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.869 ^-0.233 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.797 ^-0.214 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.214 ^-0.797 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.233 ^-0.869 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.252 ^-0.942 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.272 ^-1.014 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.291 ^-1.087 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.311 ^-1.159 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.33 ^-1.232 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.349 ^-1.304 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.369 ^-1.376 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.008 ^-1.008 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.955 ^-0.955 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.902 ^-0.902 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.849 ^-0.849 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.795 ^-0.795 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.742 ^-0.742 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.689 ^-0.689 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.636 ^-0.636 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.583 ^-0.583 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.797 ^0.214 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.869 ^0.233 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.942 ^0.252 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.014 ^0.272 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.087 ^0.291 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.159 ^0.311 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.232 ^0.33 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.304 ^0.349 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.376 ^0.369 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.369 ^1.376 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.349 ^1.304 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.33 ^1.232 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.311 ^1.159 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.291 ^1.087 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.272 ^1.014 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.252 ^0.942 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.233 ^0.869 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.214 ^0.797 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.583 ^0.583 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.636 ^0.636 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.689 ^0.689 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.742 ^0.742 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.795 ^0.795 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.849 ^0.849 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.902 ^0.902 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.955 ^0.955 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.008 ^1.008 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.738 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.144 ^0.723 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.282 ^0.681 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.41 ^0.613 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.521 ^0.521 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.613 ^0.41 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.681 ^0.282 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.723 ^0.144 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.738 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.723 ^-0.144 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.681 ^-0.282 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.613 ^-0.41 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.521 ^-0.521 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.41 ^-0.613 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.282 ^-0.681 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.144 ^-0.723 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.738 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.144 ^-0.723 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.282 ^-0.681 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.41 ^-0.613 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.521 ^-0.521 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.613 ^-0.41 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.681 ^-0.282 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.723 ^-0.144 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.738 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.723 ^0.144 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.681 ^0.282 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.613 ^0.41 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.521 ^0.521 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.41 ^0.613 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.282 ^0.681 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.144 ^0.723 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.34 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_9.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_9.mcfunction new file mode 100644 index 000000000..eb117e23a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_9.mcfunction @@ -0,0 +1,103 @@ +# frame 9 / 25 +# 円 +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.299 ^0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.5 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.299 ^-0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.5 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^-0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.65 ^0.375 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.75 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.65 ^-0.375 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.75 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^-0.713 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^-0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^-0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^-0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^-0.563 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^-0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^-0.488 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^-0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^-0.413 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.825 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.9 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-0.975 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.05 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.125 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.2 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-1.275 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.35 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.0 ^-1.425 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^-0.712 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^-0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^-0.637 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^-0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^-0.562 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^-0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^-0.487 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^-0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^-0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.714 ^0.413 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.779 ^0.45 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.844 ^0.488 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.909 ^0.525 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.974 ^0.563 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.039 ^0.6 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.104 ^0.638 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.169 ^0.675 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^1.234 ^0.713 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.425 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.35 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.275 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.2 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.125 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^1.05 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.975 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.9 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.825 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.714 ^0.412 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.779 ^0.45 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.844 ^0.487 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.909 ^0.525 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.974 ^0.562 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.039 ^0.6 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.104 ^0.637 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.169 ^0.675 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-1.234 ^0.712 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 円.001 +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^0.7 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.137 ^0.687 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.268 ^0.647 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.389 ^0.582 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.495 ^0.495 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.582 ^0.389 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.647 ^0.268 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.687 ^0.137 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.7 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.687 ^-0.137 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.647 ^-0.268 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.582 ^-0.389 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.495 ^-0.495 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.389 ^-0.582 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.268 ^-0.647 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^0.137 ^-0.687 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.0 ^-0.7 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.137 ^-0.687 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.268 ^-0.647 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.389 ^-0.582 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.495 ^-0.495 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.582 ^-0.389 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.647 ^-0.268 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.687 ^-0.137 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.7 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.687 ^0.137 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.647 ^0.268 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.582 ^0.389 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.495 ^0.495 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.389 ^0.582 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.268 ^0.647 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[-1,0,-1],scale:0.5} ^-0.137 ^0.687 ^-0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.32 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_1.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_1.mcfunction new file mode 100644 index 000000000..f0a2f0959 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_1.mcfunction @@ -0,0 +1,36 @@ +# frame 1 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.58 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_10.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_10.mcfunction new file mode 100644 index 000000000..a080865bf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_10.mcfunction @@ -0,0 +1,36 @@ +# frame 10 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.603 ^0.0 ^2.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.965 ^0.0 ^1.659 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.251 ^0.0 ^1.244 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.45 ^0.0 ^0.781 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.555 ^0.0 ^0.288 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.562 ^0.0 ^-0.216 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.471 ^0.0 ^-0.712 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.285 ^0.0 ^-1.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.01 ^0.0 ^-1.603 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.659 ^0.0 ^-1.965 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.244 ^0.0 ^-2.251 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.781 ^0.0 ^-2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.288 ^0.0 ^-2.555 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.216 ^0.0 ^-2.562 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.712 ^0.0 ^-2.471 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.18 ^0.0 ^-2.285 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.603 ^0.0 ^-2.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.965 ^0.0 ^-1.659 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.251 ^0.0 ^-1.244 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.45 ^0.0 ^-0.781 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.555 ^0.0 ^-0.288 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.562 ^0.0 ^0.216 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.471 ^0.0 ^0.712 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.285 ^0.0 ^1.18 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.01 ^0.0 ^1.603 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.659 ^0.0 ^1.965 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.244 ^0.0 ^2.251 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.781 ^0.0 ^2.45 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.288 ^0.0 ^2.555 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.216 ^0.0 ^2.562 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.712 ^0.0 ^2.471 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.18 ^0.0 ^2.285 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.85 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_11.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_11.mcfunction new file mode 100644 index 000000000..27442c4fe --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_11.mcfunction @@ -0,0 +1,36 @@ +# frame 11 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.943 ^0.0 ^2.094 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.315 ^0.0 ^1.675 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.597 ^0.0 ^1.191 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.779 ^0.0 ^0.662 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.855 ^0.0 ^0.107 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.821 ^0.0 ^-0.452 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.679 ^0.0 ^-0.994 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.433 ^0.0 ^-1.497 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.094 ^0.0 ^-1.943 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.675 ^0.0 ^-2.315 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.191 ^0.0 ^-2.597 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.662 ^0.0 ^-2.779 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.107 ^0.0 ^-2.855 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.452 ^0.0 ^-2.821 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.994 ^0.0 ^-2.679 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.497 ^0.0 ^-2.433 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.943 ^0.0 ^-2.094 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.315 ^0.0 ^-1.675 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.597 ^0.0 ^-1.191 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.779 ^0.0 ^-0.662 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.855 ^0.0 ^-0.107 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.821 ^0.0 ^0.452 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.679 ^0.0 ^0.994 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.433 ^0.0 ^1.497 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.094 ^0.0 ^1.943 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.675 ^0.0 ^2.315 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.191 ^0.0 ^2.597 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.662 ^0.0 ^2.779 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.107 ^0.0 ^2.855 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.452 ^0.0 ^2.821 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.994 ^0.0 ^2.679 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.497 ^0.0 ^2.433 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.88 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_12.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_12.mcfunction new file mode 100644 index 000000000..b3d72b337 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_12.mcfunction @@ -0,0 +1,36 @@ +# frame 12 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.304 ^0.0 ^2.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.677 ^0.0 ^1.647 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.947 ^0.0 ^1.093 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.103 ^0.0 ^0.497 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.141 ^0.0 ^-0.118 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.057 ^0.0 ^-0.728 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.857 ^0.0 ^-1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.546 ^0.0 ^-1.843 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.138 ^0.0 ^-2.304 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.647 ^0.0 ^-2.677 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.093 ^0.0 ^-2.947 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.497 ^0.0 ^-3.103 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.118 ^0.0 ^-3.141 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.728 ^0.0 ^-3.057 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.31 ^0.0 ^-2.857 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.843 ^0.0 ^-2.546 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.304 ^0.0 ^-2.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.677 ^0.0 ^-1.647 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.947 ^0.0 ^-1.093 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.103 ^0.0 ^-0.497 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.141 ^0.0 ^0.118 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.057 ^0.0 ^0.728 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.857 ^0.0 ^1.31 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.546 ^0.0 ^1.843 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.138 ^0.0 ^2.304 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.647 ^0.0 ^2.677 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.093 ^0.0 ^2.947 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.497 ^0.0 ^3.103 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.118 ^0.0 ^3.141 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.728 ^0.0 ^3.057 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.31 ^0.0 ^2.857 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.843 ^0.0 ^2.546 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.9100000000000001 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_13.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_13.mcfunction new file mode 100644 index 000000000..f71346f10 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_13.mcfunction @@ -0,0 +1,36 @@ +# frame 13 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.681 ^0.0 ^2.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.046 ^0.0 ^1.574 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.295 ^0.0 ^0.949 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.416 ^0.0 ^0.288 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.407 ^0.0 ^-0.384 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.267 ^0.0 ^-1.041 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.001 ^0.0 ^-1.658 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.62 ^0.0 ^-2.212 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.138 ^0.0 ^-2.681 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.574 ^0.0 ^-3.046 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.949 ^0.0 ^-3.295 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.288 ^0.0 ^-3.416 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.384 ^0.0 ^-3.407 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.041 ^0.0 ^-3.267 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.658 ^0.0 ^-3.001 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.212 ^0.0 ^-2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.681 ^0.0 ^-2.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.046 ^0.0 ^-1.574 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.295 ^0.0 ^-0.949 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.416 ^0.0 ^-0.288 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.407 ^0.0 ^0.384 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.267 ^0.0 ^1.041 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.001 ^0.0 ^1.658 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.62 ^0.0 ^2.212 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.138 ^0.0 ^2.681 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.574 ^0.0 ^3.046 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.949 ^0.0 ^3.295 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.288 ^0.0 ^3.416 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.384 ^0.0 ^3.407 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.041 ^0.0 ^3.267 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.658 ^0.0 ^3.001 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.212 ^0.0 ^2.62 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.94 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_14.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_14.mcfunction new file mode 100644 index 000000000..311cafe04 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_14.mcfunction @@ -0,0 +1,36 @@ +# frame 14 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.069 ^0.0 ^2.092 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.418 ^0.0 ^1.453 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.636 ^0.0 ^0.759 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.714 ^0.0 ^0.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.65 ^0.0 ^-0.691 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.445 ^0.0 ^-1.389 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.107 ^0.0 ^-2.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.651 ^0.0 ^-2.602 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.092 ^0.0 ^-3.069 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.453 ^0.0 ^-3.418 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.759 ^0.0 ^-3.636 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.035 ^0.0 ^-3.714 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.691 ^0.0 ^-3.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.389 ^0.0 ^-3.445 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.035 ^0.0 ^-3.107 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.602 ^0.0 ^-2.651 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.069 ^0.0 ^-2.092 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.418 ^0.0 ^-1.453 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.636 ^0.0 ^-0.759 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.714 ^0.0 ^-0.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.65 ^0.0 ^0.691 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.445 ^0.0 ^1.389 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.107 ^0.0 ^2.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.651 ^0.0 ^2.602 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.092 ^0.0 ^3.069 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.453 ^0.0 ^3.418 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.759 ^0.0 ^3.636 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.035 ^0.0 ^3.714 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.691 ^0.0 ^3.65 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.389 ^0.0 ^3.445 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.035 ^0.0 ^3.107 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.602 ^0.0 ^2.651 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.97 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_15.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_15.mcfunction new file mode 100644 index 000000000..c3be16457 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_15.mcfunction @@ -0,0 +1,36 @@ +# frame 15 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.464 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.788 ^0.0 ^1.286 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.966 ^0.0 ^0.522 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.991 ^0.0 ^-0.262 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.864 ^0.0 ^-1.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.587 ^0.0 ^-1.769 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.173 ^0.0 ^-2.435 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.637 ^0.0 ^-3.007 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.0 ^0.0 ^-3.464 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.286 ^0.0 ^-3.788 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.522 ^0.0 ^-3.966 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.262 ^0.0 ^-3.991 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.035 ^0.0 ^-3.864 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.769 ^0.0 ^-3.587 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.435 ^0.0 ^-3.173 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.007 ^0.0 ^-2.637 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.464 ^0.0 ^-2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.788 ^0.0 ^-1.286 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.966 ^0.0 ^-0.522 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.991 ^0.0 ^0.262 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.864 ^0.0 ^1.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.587 ^0.0 ^1.769 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-3.173 ^0.0 ^2.435 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.637 ^0.0 ^3.007 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.0 ^0.0 ^3.464 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.286 ^0.0 ^3.788 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.522 ^0.0 ^3.966 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.262 ^0.0 ^3.991 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.035 ^0.0 ^3.864 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.769 ^0.0 ^3.587 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.435 ^0.0 ^3.173 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^3.007 ^0.0 ^2.637 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 2.0 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_2.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_2.mcfunction new file mode 100644 index 000000000..4dd18038e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_2.mcfunction @@ -0,0 +1,36 @@ +# frame 2 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.021 ^0.0 ^0.285 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.077 ^0.0 ^0.275 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.129 ^0.0 ^0.255 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.176 ^0.0 ^0.225 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.217 ^0.0 ^0.186 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.249 ^0.0 ^0.141 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.271 ^0.0 ^0.089 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.284 ^0.0 ^0.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.285 ^0.0 ^-0.021 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.275 ^0.0 ^-0.077 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.255 ^0.0 ^-0.129 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.225 ^0.0 ^-0.176 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.186 ^0.0 ^-0.217 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.141 ^0.0 ^-0.249 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.089 ^0.0 ^-0.271 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.035 ^0.0 ^-0.284 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.021 ^0.0 ^-0.285 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.077 ^0.0 ^-0.275 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.129 ^0.0 ^-0.255 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.176 ^0.0 ^-0.225 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.217 ^0.0 ^-0.186 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.249 ^0.0 ^-0.141 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.271 ^0.0 ^-0.089 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.284 ^0.0 ^-0.035 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.285 ^0.0 ^0.021 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.275 ^0.0 ^0.077 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.255 ^0.0 ^0.129 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.225 ^0.0 ^0.176 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.186 ^0.0 ^0.217 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.141 ^0.0 ^0.249 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.089 ^0.0 ^0.271 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.035 ^0.0 ^0.284 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.61 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_3.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_3.mcfunction new file mode 100644 index 000000000..f0dfe1945 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_3.mcfunction @@ -0,0 +1,36 @@ +# frame 3 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.085 ^0.0 ^0.565 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.194 ^0.0 ^0.538 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.295 ^0.0 ^0.489 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.385 ^0.0 ^0.423 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.46 ^0.0 ^0.339 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.517 ^0.0 ^0.243 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.555 ^0.0 ^0.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.571 ^0.0 ^0.027 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.565 ^0.0 ^-0.085 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.538 ^0.0 ^-0.194 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.489 ^0.0 ^-0.295 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.423 ^0.0 ^-0.385 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.339 ^0.0 ^-0.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.243 ^0.0 ^-0.517 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.138 ^0.0 ^-0.555 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.027 ^0.0 ^-0.571 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.085 ^0.0 ^-0.565 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.194 ^0.0 ^-0.538 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.295 ^0.0 ^-0.489 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.385 ^0.0 ^-0.423 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.46 ^0.0 ^-0.339 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.517 ^0.0 ^-0.243 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.555 ^0.0 ^-0.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.571 ^0.0 ^-0.027 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.565 ^0.0 ^0.085 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.538 ^0.0 ^0.194 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.489 ^0.0 ^0.295 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.423 ^0.0 ^0.385 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.339 ^0.0 ^0.46 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.243 ^0.0 ^0.517 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.138 ^0.0 ^0.555 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.027 ^0.0 ^0.571 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.6400000000000001 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_4.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_4.mcfunction new file mode 100644 index 000000000..cc5d8191e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_4.mcfunction @@ -0,0 +1,36 @@ +# frame 4 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.191 ^0.0 ^0.836 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.35 ^0.0 ^0.782 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.496 ^0.0 ^0.699 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.623 ^0.0 ^0.589 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.726 ^0.0 ^0.456 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.801 ^0.0 ^0.306 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.845 ^0.0 ^0.144 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.857 ^0.0 ^-0.024 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.836 ^0.0 ^-0.191 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.782 ^0.0 ^-0.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.699 ^0.0 ^-0.496 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.589 ^0.0 ^-0.623 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.456 ^0.0 ^-0.726 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.306 ^0.0 ^-0.801 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.144 ^0.0 ^-0.845 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.024 ^0.0 ^-0.857 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.191 ^0.0 ^-0.836 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.35 ^0.0 ^-0.782 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.496 ^0.0 ^-0.699 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.623 ^0.0 ^-0.589 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.726 ^0.0 ^-0.456 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.801 ^0.0 ^-0.306 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.845 ^0.0 ^-0.144 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.857 ^0.0 ^0.024 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.836 ^0.0 ^0.191 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.782 ^0.0 ^0.35 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.699 ^0.0 ^0.496 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.589 ^0.0 ^0.623 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.456 ^0.0 ^0.726 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.306 ^0.0 ^0.801 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.144 ^0.0 ^0.845 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.024 ^0.0 ^0.857 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.67 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_5.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_5.mcfunction new file mode 100644 index 000000000..5a234a35d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_5.mcfunction @@ -0,0 +1,36 @@ +# frame 5 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.337 ^0.0 ^1.092 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.543 ^0.0 ^1.005 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.729 ^0.0 ^0.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.887 ^0.0 ^0.721 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.01 ^0.0 ^0.534 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.095 ^0.0 ^0.327 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.138 ^0.0 ^0.107 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.137 ^0.0 ^-0.117 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.092 ^0.0 ^-0.337 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.005 ^0.0 ^-0.543 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.88 ^0.0 ^-0.729 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.721 ^0.0 ^-0.887 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.534 ^0.0 ^-1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.327 ^0.0 ^-1.095 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.107 ^0.0 ^-1.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.117 ^0.0 ^-1.137 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.337 ^0.0 ^-1.092 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.543 ^0.0 ^-1.005 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.729 ^0.0 ^-0.88 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.887 ^0.0 ^-0.721 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.01 ^0.0 ^-0.534 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.095 ^0.0 ^-0.327 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.138 ^0.0 ^-0.107 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.137 ^0.0 ^0.117 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.092 ^0.0 ^0.337 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.005 ^0.0 ^0.543 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.88 ^0.0 ^0.729 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.721 ^0.0 ^0.887 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.534 ^0.0 ^1.01 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.327 ^0.0 ^1.095 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.107 ^0.0 ^1.138 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.117 ^0.0 ^1.137 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.7 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_6.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_6.mcfunction new file mode 100644 index 000000000..75fbbcc6f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_6.mcfunction @@ -0,0 +1,36 @@ +# frame 6 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.522 ^0.0 ^1.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.771 ^0.0 ^1.202 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.991 ^0.0 ^1.029 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.173 ^0.0 ^0.816 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.309 ^0.0 ^0.571 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.396 ^0.0 ^0.305 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.428 ^0.0 ^0.027 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.406 ^0.0 ^-0.252 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.33 ^0.0 ^-0.522 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.202 ^0.0 ^-0.771 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.029 ^0.0 ^-0.991 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.816 ^0.0 ^-1.173 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.571 ^0.0 ^-1.309 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.305 ^0.0 ^-1.396 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.027 ^0.0 ^-1.428 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.252 ^0.0 ^-1.406 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.522 ^0.0 ^-1.33 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.771 ^0.0 ^-1.202 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.991 ^0.0 ^-1.029 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.173 ^0.0 ^-0.816 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.309 ^0.0 ^-0.571 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.396 ^0.0 ^-0.305 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.428 ^0.0 ^-0.027 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.406 ^0.0 ^0.252 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.33 ^0.0 ^0.522 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.202 ^0.0 ^0.771 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.029 ^0.0 ^0.991 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.816 ^0.0 ^1.173 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.571 ^0.0 ^1.309 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.305 ^0.0 ^1.396 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.027 ^0.0 ^1.428 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.252 ^0.0 ^1.406 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.73 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_7.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_7.mcfunction new file mode 100644 index 000000000..be84cfd5e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_7.mcfunction @@ -0,0 +1,36 @@ +# frame 7 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.744 ^0.0 ^1.545 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.031 ^0.0 ^1.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.278 ^0.0 ^1.142 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.477 ^0.0 ^0.871 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.618 ^0.0 ^0.566 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.697 ^0.0 ^0.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.712 ^0.0 ^-0.096 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.66 ^0.0 ^-0.428 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.545 ^0.0 ^-0.744 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.37 ^0.0 ^-1.031 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.142 ^0.0 ^-1.278 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.871 ^0.0 ^-1.477 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.566 ^0.0 ^-1.618 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.24 ^0.0 ^-1.697 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.096 ^0.0 ^-1.712 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.428 ^0.0 ^-1.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.744 ^0.0 ^-1.545 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.031 ^0.0 ^-1.37 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.278 ^0.0 ^-1.142 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.477 ^0.0 ^-0.871 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.618 ^0.0 ^-0.566 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.697 ^0.0 ^-0.24 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.712 ^0.0 ^0.096 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.66 ^0.0 ^0.428 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.545 ^0.0 ^0.744 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.37 ^0.0 ^1.031 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.142 ^0.0 ^1.278 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.871 ^0.0 ^1.477 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.566 ^0.0 ^1.618 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.24 ^0.0 ^1.697 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.096 ^0.0 ^1.712 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.428 ^0.0 ^1.66 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.76 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_8.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_8.mcfunction new file mode 100644 index 000000000..4f2c8042c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_8.mcfunction @@ -0,0 +1,36 @@ +# frame 8 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.0 ^0.0 ^1.732 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.319 ^0.0 ^1.504 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.587 ^0.0 ^1.218 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.794 ^0.0 ^0.885 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.932 ^0.0 ^0.518 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.996 ^0.0 ^0.131 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.983 ^0.0 ^-0.261 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.894 ^0.0 ^-0.643 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.732 ^0.0 ^-1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.504 ^0.0 ^-1.319 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.218 ^0.0 ^-1.587 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.885 ^0.0 ^-1.794 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.518 ^0.0 ^-1.932 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.131 ^0.0 ^-1.996 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.261 ^0.0 ^-1.983 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.643 ^0.0 ^-1.894 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.0 ^0.0 ^-1.732 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.319 ^0.0 ^-1.504 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.587 ^0.0 ^-1.218 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.794 ^0.0 ^-0.885 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.932 ^0.0 ^-0.518 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.996 ^0.0 ^-0.131 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.983 ^0.0 ^0.261 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.894 ^0.0 ^0.643 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.732 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.504 ^0.0 ^1.319 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.218 ^0.0 ^1.587 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.885 ^0.0 ^1.794 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.518 ^0.0 ^1.932 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.131 ^0.0 ^1.996 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.261 ^0.0 ^1.983 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.643 ^0.0 ^1.894 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.79 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_9.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_9.mcfunction new file mode 100644 index 000000000..6af81cc84 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_9.mcfunction @@ -0,0 +1,36 @@ +# frame 9 / 15 +# 円 +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.288 ^0.0 ^1.889 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.631 ^0.0 ^1.601 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.912 ^0.0 ^1.252 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.12 ^0.0 ^0.855 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.246 ^0.0 ^0.425 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.286 ^0.0 ^-0.021 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.238 ^0.0 ^-0.467 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^2.103 ^0.0 ^-0.894 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.889 ^0.0 ^-1.288 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.601 ^0.0 ^-1.631 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^1.252 ^0.0 ^-1.912 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.855 ^0.0 ^-2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.425 ^0.0 ^-2.246 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.021 ^0.0 ^-2.286 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.467 ^0.0 ^-2.238 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.894 ^0.0 ^-2.103 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.288 ^0.0 ^-1.889 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.631 ^0.0 ^-1.601 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.912 ^0.0 ^-1.252 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.12 ^0.0 ^-0.855 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.246 ^0.0 ^-0.425 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.286 ^0.0 ^0.021 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.238 ^0.0 ^0.467 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-2.103 ^0.0 ^0.894 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.889 ^0.0 ^1.288 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.601 ^0.0 ^1.631 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-1.252 ^0.0 ^1.912 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.855 ^0.0 ^2.12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^-0.425 ^0.0 ^2.246 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.021 ^0.0 ^2.286 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.467 ^0.0 ^2.238 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust_color_transition{from_color:[0.000,1.000,0.9],to_color:[4.0,0.0,0.35],scale:1} ^0.894 ^0.0 ^2.103 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound block.beacon.power_select hostile @a[distance=..32] ^-0.0 ^0.0 ^0.0 1 1.82 0 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_1.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_1.mcfunction new file mode 100644 index 000000000..6feb8d4cd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_1.mcfunction @@ -0,0 +1,36 @@ +# frame 1 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.29 ^0.0 ^1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.57 ^0.0 ^1.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.06 ^0.0 ^1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.25 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.39 ^0.0 ^0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.47 ^0.0 ^0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.5 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.47 ^0.0 ^-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.39 ^0.0 ^-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.25 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.06 ^0.0 ^-1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^-1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.57 ^0.0 ^-1.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.29 ^0.0 ^-1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.29 ^0.0 ^-1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.57 ^0.0 ^-1.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^-1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.06 ^0.0 ^-1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.25 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.39 ^0.0 ^-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.47 ^0.0 ^-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.5 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.47 ^0.0 ^0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.39 ^0.0 ^0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.25 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.06 ^0.0 ^1.06 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.57 ^0.0 ^1.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.29 ^0.0 ^1.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.41000000000000003 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_10.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_10.mcfunction new file mode 100644 index 000000000..4d807f440 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_10.mcfunction @@ -0,0 +1,36 @@ +# frame 10 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.23 ^0.0 ^1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.98 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.08 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.15 ^0.0 ^0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.17 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.15 ^0.0 ^-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.08 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.98 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^-0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^-1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.23 ^0.0 ^-1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.23 ^0.0 ^-1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^-1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^-0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.98 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.08 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.15 ^0.0 ^-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.17 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.15 ^0.0 ^0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.08 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.98 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.23 ^0.0 ^1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.5 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_11.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_11.mcfunction new file mode 100644 index 000000000..b60397e1a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_11.mcfunction @@ -0,0 +1,36 @@ +# frame 11 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.22 ^0.0 ^1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.44 ^0.0 ^1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.63 ^0.0 ^0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.8 ^0.0 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.95 ^0.0 ^0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.05 ^0.0 ^0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.12 ^0.0 ^0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.14 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.12 ^0.0 ^-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.05 ^0.0 ^-0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.95 ^0.0 ^-0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.8 ^0.0 ^-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.63 ^0.0 ^-0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.44 ^0.0 ^-1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.22 ^0.0 ^-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.22 ^0.0 ^-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.44 ^0.0 ^-1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.63 ^0.0 ^-0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.8 ^0.0 ^-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.95 ^0.0 ^-0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.05 ^0.0 ^-0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.12 ^0.0 ^-0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.14 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.12 ^0.0 ^0.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.05 ^0.0 ^0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.95 ^0.0 ^0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.8 ^0.0 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.63 ^0.0 ^0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.44 ^0.0 ^1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.22 ^0.0 ^1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.51 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_12.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_12.mcfunction new file mode 100644 index 000000000..58b67dadb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_12.mcfunction @@ -0,0 +1,36 @@ +# frame 12 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.21 ^0.0 ^1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.42 ^0.0 ^1.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.61 ^0.0 ^0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.78 ^0.0 ^0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.92 ^0.0 ^0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.02 ^0.0 ^0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.08 ^0.0 ^0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.1 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.08 ^0.0 ^-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.02 ^0.0 ^-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.92 ^0.0 ^-0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.78 ^0.0 ^-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.61 ^0.0 ^-0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.42 ^0.0 ^-1.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.21 ^0.0 ^-1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.21 ^0.0 ^-1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.42 ^0.0 ^-1.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.61 ^0.0 ^-0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.78 ^0.0 ^-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.92 ^0.0 ^-0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.02 ^0.0 ^-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.08 ^0.0 ^-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.1 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.08 ^0.0 ^0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.02 ^0.0 ^0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.92 ^0.0 ^0.61 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.78 ^0.0 ^0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.61 ^0.0 ^0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.42 ^0.0 ^1.02 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.21 ^0.0 ^1.08 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.52 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_13.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_13.mcfunction new file mode 100644 index 000000000..c6e42c9c7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_13.mcfunction @@ -0,0 +1,36 @@ +# frame 13 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.21 ^0.0 ^1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.41 ^0.0 ^0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.59 ^0.0 ^0.89 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.75 ^0.0 ^0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.89 ^0.0 ^0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.98 ^0.0 ^0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.05 ^0.0 ^0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.07 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.05 ^0.0 ^-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.98 ^0.0 ^-0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.89 ^0.0 ^-0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.75 ^0.0 ^-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.59 ^0.0 ^-0.89 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.41 ^0.0 ^-0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.21 ^0.0 ^-1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.21 ^0.0 ^-1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.41 ^0.0 ^-0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.59 ^0.0 ^-0.89 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.75 ^0.0 ^-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.89 ^0.0 ^-0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.98 ^0.0 ^-0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.05 ^0.0 ^-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.07 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.05 ^0.0 ^0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.98 ^0.0 ^0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.89 ^0.0 ^0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.75 ^0.0 ^0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.59 ^0.0 ^0.89 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.41 ^0.0 ^0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.21 ^0.0 ^1.05 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.53 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_14.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_14.mcfunction new file mode 100644 index 000000000..2c5904f6c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_14.mcfunction @@ -0,0 +1,36 @@ +# frame 14 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.2 ^0.0 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.39 ^0.0 ^0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.57 ^0.0 ^0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.73 ^0.0 ^0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.86 ^0.0 ^0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.95 ^0.0 ^0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.01 ^0.0 ^0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.03 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.01 ^0.0 ^-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.95 ^0.0 ^-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.86 ^0.0 ^-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.73 ^0.0 ^-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.57 ^0.0 ^-0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.39 ^0.0 ^-0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.2 ^0.0 ^-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.03 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.2 ^0.0 ^-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.39 ^0.0 ^-0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.57 ^0.0 ^-0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.73 ^0.0 ^-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.86 ^0.0 ^-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.95 ^0.0 ^-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.01 ^0.0 ^-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.03 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.01 ^0.0 ^0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.95 ^0.0 ^0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.86 ^0.0 ^0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.73 ^0.0 ^0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.57 ^0.0 ^0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.39 ^0.0 ^0.95 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.2 ^0.0 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.54 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_15.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_15.mcfunction new file mode 100644 index 000000000..7f7f12863 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_15.mcfunction @@ -0,0 +1,36 @@ +# frame 15 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.99 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.19 ^0.0 ^0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.38 ^0.0 ^0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.7 ^0.0 ^0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.92 ^0.0 ^0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.97 ^0.0 ^0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.99 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.97 ^0.0 ^-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.92 ^0.0 ^-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.7 ^0.0 ^-0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.38 ^0.0 ^-0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.19 ^0.0 ^-0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.99 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.19 ^0.0 ^-0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.38 ^0.0 ^-0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.7 ^0.0 ^-0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.92 ^0.0 ^-0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.97 ^0.0 ^-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.99 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.97 ^0.0 ^0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.92 ^0.0 ^0.38 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.7 ^0.0 ^0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.38 ^0.0 ^0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.19 ^0.0 ^0.97 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.55 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_16.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_16.mcfunction new file mode 100644 index 000000000..5f41888d2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_16.mcfunction @@ -0,0 +1,36 @@ +# frame 16 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.19 ^0.0 ^0.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.53 ^0.0 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.68 ^0.0 ^0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.8 ^0.0 ^0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.88 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.94 ^0.0 ^0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.96 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.94 ^0.0 ^-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.88 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.8 ^0.0 ^-0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.68 ^0.0 ^-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.53 ^0.0 ^-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^-0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.19 ^0.0 ^-0.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.19 ^0.0 ^-0.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^-0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.53 ^0.0 ^-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.68 ^0.0 ^-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.8 ^0.0 ^-0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.88 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.94 ^0.0 ^-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.96 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.94 ^0.0 ^0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.88 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.8 ^0.0 ^0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.68 ^0.0 ^0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.53 ^0.0 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.19 ^0.0 ^0.94 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.56 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_17.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_17.mcfunction new file mode 100644 index 000000000..f4f40538e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_17.mcfunction @@ -0,0 +1,36 @@ +# frame 17 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.18 ^0.0 ^0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.35 ^0.0 ^0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.51 ^0.0 ^0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.77 ^0.0 ^0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.85 ^0.0 ^0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.9 ^0.0 ^0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.92 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.9 ^0.0 ^-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.85 ^0.0 ^-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.77 ^0.0 ^-0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.51 ^0.0 ^-0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.35 ^0.0 ^-0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.18 ^0.0 ^-0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.92 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.18 ^0.0 ^-0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.35 ^0.0 ^-0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.51 ^0.0 ^-0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.77 ^0.0 ^-0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.85 ^0.0 ^-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.9 ^0.0 ^-0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.92 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.9 ^0.0 ^0.18 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.85 ^0.0 ^0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.77 ^0.0 ^0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.51 ^0.0 ^0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.35 ^0.0 ^0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.18 ^0.0 ^0.9 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.5700000000000001 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_18.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_18.mcfunction new file mode 100644 index 000000000..bb371b461 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_18.mcfunction @@ -0,0 +1,36 @@ +# frame 18 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.17 ^0.0 ^0.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.34 ^0.0 ^0.82 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.63 ^0.0 ^0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.74 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.82 ^0.0 ^0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.87 ^0.0 ^0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.88 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.87 ^0.0 ^-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.82 ^0.0 ^-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.74 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.63 ^0.0 ^-0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^-0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.34 ^0.0 ^-0.82 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.17 ^0.0 ^-0.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.17 ^0.0 ^-0.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.34 ^0.0 ^-0.82 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^-0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.63 ^0.0 ^-0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.74 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.82 ^0.0 ^-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.87 ^0.0 ^-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.88 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.87 ^0.0 ^0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.82 ^0.0 ^0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.74 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.63 ^0.0 ^0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.34 ^0.0 ^0.82 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.17 ^0.0 ^0.87 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.5800000000000001 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_19.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_19.mcfunction new file mode 100644 index 000000000..40438164c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_19.mcfunction @@ -0,0 +1,36 @@ +# frame 19 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.17 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.32 ^0.0 ^0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.47 ^0.0 ^0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.6 ^0.0 ^0.6 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.71 ^0.0 ^0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.78 ^0.0 ^0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.85 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.83 ^0.0 ^-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.78 ^0.0 ^-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.71 ^0.0 ^-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.6 ^0.0 ^-0.6 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.47 ^0.0 ^-0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.32 ^0.0 ^-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.17 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.85 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.17 ^0.0 ^-0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.32 ^0.0 ^-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.47 ^0.0 ^-0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.6 ^0.0 ^-0.6 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.71 ^0.0 ^-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.78 ^0.0 ^-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.85 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.83 ^0.0 ^0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.78 ^0.0 ^0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.71 ^0.0 ^0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.6 ^0.0 ^0.6 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.47 ^0.0 ^0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.32 ^0.0 ^0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.17 ^0.0 ^0.83 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.5900000000000001 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_2.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_2.mcfunction new file mode 100644 index 000000000..320505e4a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_2.mcfunction @@ -0,0 +1,36 @@ +# frame 2 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.29 ^0.0 ^1.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.56 ^0.0 ^1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.81 ^0.0 ^1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.04 ^0.0 ^1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.22 ^0.0 ^0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.35 ^0.0 ^0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.44 ^0.0 ^0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.46 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.44 ^0.0 ^-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.35 ^0.0 ^-0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.22 ^0.0 ^-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.04 ^0.0 ^-1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.81 ^0.0 ^-1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.56 ^0.0 ^-1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.29 ^0.0 ^-1.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.29 ^0.0 ^-1.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.56 ^0.0 ^-1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.81 ^0.0 ^-1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.04 ^0.0 ^-1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.22 ^0.0 ^-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.35 ^0.0 ^-0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.44 ^0.0 ^-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.46 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.44 ^0.0 ^0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.35 ^0.0 ^0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.22 ^0.0 ^0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.04 ^0.0 ^1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.81 ^0.0 ^1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.56 ^0.0 ^1.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.29 ^0.0 ^1.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.42000000000000004 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_20.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_20.mcfunction new file mode 100644 index 000000000..781eb684f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_20.mcfunction @@ -0,0 +1,36 @@ +# frame 20 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.16 ^0.0 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.31 ^0.0 ^0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.57 ^0.0 ^0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.68 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.75 ^0.0 ^0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.8 ^0.0 ^0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.81 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.8 ^0.0 ^-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.75 ^0.0 ^-0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.68 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.57 ^0.0 ^-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.31 ^0.0 ^-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.16 ^0.0 ^-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.81 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.16 ^0.0 ^-0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.31 ^0.0 ^-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.57 ^0.0 ^-0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.68 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.75 ^0.0 ^-0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.8 ^0.0 ^-0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.81 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.8 ^0.0 ^0.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.75 ^0.0 ^0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.68 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.57 ^0.0 ^0.57 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.31 ^0.0 ^0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.16 ^0.0 ^0.8 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.6000000000000001 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_21.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_21.mcfunction new file mode 100644 index 000000000..a40987d28 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_21.mcfunction @@ -0,0 +1,36 @@ +# frame 21 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.15 ^0.0 ^0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.3 ^0.0 ^0.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.43 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.72 ^0.0 ^0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.76 ^0.0 ^0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.78 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.76 ^0.0 ^-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.72 ^0.0 ^-0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.43 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.3 ^0.0 ^-0.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.15 ^0.0 ^-0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.78 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.15 ^0.0 ^-0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.3 ^0.0 ^-0.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.43 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.72 ^0.0 ^-0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.76 ^0.0 ^-0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.78 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.76 ^0.0 ^0.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.72 ^0.0 ^0.3 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.43 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.3 ^0.0 ^0.72 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.15 ^0.0 ^0.76 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.61 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_22.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_22.mcfunction new file mode 100644 index 000000000..b6be1c059 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_22.mcfunction @@ -0,0 +1,36 @@ +# frame 22 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.14 ^0.0 ^0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.28 ^0.0 ^0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.41 ^0.0 ^0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.62 ^0.0 ^0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.68 ^0.0 ^0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.73 ^0.0 ^0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.74 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.73 ^0.0 ^-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.68 ^0.0 ^-0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.62 ^0.0 ^-0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.41 ^0.0 ^-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.28 ^0.0 ^-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.14 ^0.0 ^-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.74 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.14 ^0.0 ^-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.28 ^0.0 ^-0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.41 ^0.0 ^-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.62 ^0.0 ^-0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.68 ^0.0 ^-0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.73 ^0.0 ^-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.74 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.73 ^0.0 ^0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.68 ^0.0 ^0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.62 ^0.0 ^0.41 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.41 ^0.0 ^0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.28 ^0.0 ^0.68 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.14 ^0.0 ^0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.62 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_23.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_23.mcfunction new file mode 100644 index 000000000..a12a9d50a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_23.mcfunction @@ -0,0 +1,36 @@ +# frame 23 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.14 ^0.0 ^0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.27 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.39 ^0.0 ^0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.5 ^0.0 ^0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.58 ^0.0 ^0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.69 ^0.0 ^0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.7 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.69 ^0.0 ^-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.58 ^0.0 ^-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.5 ^0.0 ^-0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.39 ^0.0 ^-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.27 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.14 ^0.0 ^-0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.7 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.14 ^0.0 ^-0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.27 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.39 ^0.0 ^-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.5 ^0.0 ^-0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.58 ^0.0 ^-0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.69 ^0.0 ^-0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.7 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.69 ^0.0 ^0.14 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.58 ^0.0 ^0.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.5 ^0.0 ^0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.39 ^0.0 ^0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.27 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.14 ^0.0 ^0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.63 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_24.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_24.mcfunction new file mode 100644 index 000000000..9e252627f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_24.mcfunction @@ -0,0 +1,36 @@ +# frame 24 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.13 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.26 ^0.0 ^0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.47 ^0.0 ^0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.62 ^0.0 ^0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.67 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.65 ^0.0 ^-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.62 ^0.0 ^-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.47 ^0.0 ^-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.26 ^0.0 ^-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.13 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.13 ^0.0 ^-0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.26 ^0.0 ^-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.47 ^0.0 ^-0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.62 ^0.0 ^-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^-0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.67 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.65 ^0.0 ^0.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.62 ^0.0 ^0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.47 ^0.0 ^0.47 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.26 ^0.0 ^0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.13 ^0.0 ^0.65 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.64 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_25.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_25.mcfunction new file mode 100644 index 000000000..06d50e6eb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_25.mcfunction @@ -0,0 +1,36 @@ +# frame 25 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.12 ^0.0 ^0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.24 ^0.0 ^0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.35 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.58 ^0.0 ^0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.62 ^0.0 ^0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.63 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.62 ^0.0 ^-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.58 ^0.0 ^-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.35 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.24 ^0.0 ^-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.12 ^0.0 ^-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.63 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.12 ^0.0 ^-0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.24 ^0.0 ^-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.35 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^-0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.58 ^0.0 ^-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.62 ^0.0 ^-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.63 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.62 ^0.0 ^0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.58 ^0.0 ^0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^0.35 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.35 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.24 ^0.0 ^0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.12 ^0.0 ^0.62 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.65 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_26.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_26.mcfunction new file mode 100644 index 000000000..6264ff981 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_26.mcfunction @@ -0,0 +1,36 @@ +# frame 26 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.12 ^0.0 ^0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.23 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.33 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.42 ^0.0 ^0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.58 ^0.0 ^0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.59 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.58 ^0.0 ^-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.42 ^0.0 ^-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.33 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.23 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.12 ^0.0 ^-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.59 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.12 ^0.0 ^-0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.23 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.33 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.42 ^0.0 ^-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^-0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^-0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.58 ^0.0 ^-0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.59 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.58 ^0.0 ^0.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^0.23 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^0.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.42 ^0.0 ^0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.33 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.23 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.12 ^0.0 ^0.58 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.66 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_27.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_27.mcfunction new file mode 100644 index 000000000..93d76c7b9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_27.mcfunction @@ -0,0 +1,36 @@ +# frame 27 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.11 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.21 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.31 ^0.0 ^0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.4 ^0.0 ^0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.46 ^0.0 ^0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.56 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.46 ^0.0 ^-0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.4 ^0.0 ^-0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.31 ^0.0 ^-0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.21 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.11 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.56 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.11 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.21 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.31 ^0.0 ^-0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.4 ^0.0 ^-0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.46 ^0.0 ^-0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^-0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^-0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.56 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^0.11 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^0.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.46 ^0.0 ^0.31 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.4 ^0.0 ^0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.31 ^0.0 ^0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.21 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.11 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.67 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_28.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_28.mcfunction new file mode 100644 index 000000000..d1987869d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_28.mcfunction @@ -0,0 +1,36 @@ +# frame 28 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.1 ^0.0 ^0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.2 ^0.0 ^0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.29 ^0.0 ^0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.43 ^0.0 ^0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.48 ^0.0 ^0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.51 ^0.0 ^0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.51 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.48 ^0.0 ^-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.43 ^0.0 ^-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.29 ^0.0 ^-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.2 ^0.0 ^-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.1 ^0.0 ^-0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.1 ^0.0 ^-0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.2 ^0.0 ^-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.29 ^0.0 ^-0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.43 ^0.0 ^-0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.48 ^0.0 ^-0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.51 ^0.0 ^-0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.51 ^0.0 ^0.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.48 ^0.0 ^0.2 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.43 ^0.0 ^0.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.29 ^0.0 ^0.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.2 ^0.0 ^0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.1 ^0.0 ^0.51 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.68 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_29.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_29.mcfunction new file mode 100644 index 000000000..d2ed1e8b7 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_29.mcfunction @@ -0,0 +1,36 @@ +# frame 29 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.09 ^0.0 ^0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.19 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.27 ^0.0 ^0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.34 ^0.0 ^0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.4 ^0.0 ^0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.48 ^0.0 ^0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.48 ^0.0 ^-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.4 ^0.0 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.34 ^0.0 ^-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.27 ^0.0 ^-0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.19 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.09 ^0.0 ^-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.09 ^0.0 ^-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.19 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.27 ^0.0 ^-0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.34 ^0.0 ^-0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.4 ^0.0 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^-0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.48 ^0.0 ^-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.48 ^0.0 ^0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^0.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.4 ^0.0 ^0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.34 ^0.0 ^0.34 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.27 ^0.0 ^0.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.19 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.09 ^0.0 ^0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.69 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_3.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_3.mcfunction new file mode 100644 index 000000000..c81910f45 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_3.mcfunction @@ -0,0 +1,36 @@ +# frame 3 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.28 ^0.0 ^1.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^1.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.79 ^0.0 ^1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.01 ^0.0 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.19 ^0.0 ^0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.32 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.4 ^0.0 ^0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.43 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.4 ^0.0 ^-0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.32 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.19 ^0.0 ^-0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.01 ^0.0 ^-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.79 ^0.0 ^-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.55 ^0.0 ^-1.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.28 ^0.0 ^-1.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.43 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.28 ^0.0 ^-1.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^-1.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.79 ^0.0 ^-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.01 ^0.0 ^-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.19 ^0.0 ^-0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.32 ^0.0 ^-0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.4 ^0.0 ^-0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.43 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.4 ^0.0 ^0.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.32 ^0.0 ^0.55 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.19 ^0.0 ^0.79 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.01 ^0.0 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.79 ^0.0 ^1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.55 ^0.0 ^1.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.28 ^0.0 ^1.4 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.43000000000000005 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_30.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_30.mcfunction new file mode 100644 index 000000000..23f3010ad --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_30.mcfunction @@ -0,0 +1,36 @@ +# frame 30 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.09 ^0.0 ^0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.17 ^0.0 ^0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.25 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.32 ^0.0 ^0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.42 ^0.0 ^0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.44 ^0.0 ^0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.45 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.44 ^0.0 ^-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.42 ^0.0 ^-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.37 ^0.0 ^-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.32 ^0.0 ^-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.25 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.17 ^0.0 ^-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.09 ^0.0 ^-0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-0.45 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.09 ^0.0 ^-0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.17 ^0.0 ^-0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.25 ^0.0 ^-0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.32 ^0.0 ^-0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.42 ^0.0 ^-0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.44 ^0.0 ^-0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.45 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.44 ^0.0 ^0.09 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.42 ^0.0 ^0.17 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.37 ^0.0 ^0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.32 ^0.0 ^0.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.25 ^0.0 ^0.37 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.17 ^0.0 ^0.42 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.09 ^0.0 ^0.44 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.7 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_4.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_4.mcfunction new file mode 100644 index 000000000..d32c0259b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_4.mcfunction @@ -0,0 +1,36 @@ +# frame 4 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.27 ^0.0 ^1.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.53 ^0.0 ^1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.77 ^0.0 ^1.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.98 ^0.0 ^0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.16 ^0.0 ^0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.29 ^0.0 ^0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.36 ^0.0 ^0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.39 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.36 ^0.0 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.29 ^0.0 ^-0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.16 ^0.0 ^-0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.98 ^0.0 ^-0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.77 ^0.0 ^-1.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.53 ^0.0 ^-1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.27 ^0.0 ^-1.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.39 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.27 ^0.0 ^-1.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.53 ^0.0 ^-1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.77 ^0.0 ^-1.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.98 ^0.0 ^-0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.16 ^0.0 ^-0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.29 ^0.0 ^-0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.36 ^0.0 ^-0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.39 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.36 ^0.0 ^0.27 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.29 ^0.0 ^0.53 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.16 ^0.0 ^0.77 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.98 ^0.0 ^0.98 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.77 ^0.0 ^1.16 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.53 ^0.0 ^1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.27 ^0.0 ^1.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.44 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_5.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_5.mcfunction new file mode 100644 index 000000000..11c1a2451 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_5.mcfunction @@ -0,0 +1,36 @@ +# frame 5 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.26 ^0.0 ^1.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.75 ^0.0 ^1.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.96 ^0.0 ^0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.13 ^0.0 ^0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.25 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.33 ^0.0 ^0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.36 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.33 ^0.0 ^-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.25 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.13 ^0.0 ^-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.96 ^0.0 ^-0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.75 ^0.0 ^-1.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.52 ^0.0 ^-1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.26 ^0.0 ^-1.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.36 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.26 ^0.0 ^-1.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^-1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.75 ^0.0 ^-1.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.96 ^0.0 ^-0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.13 ^0.0 ^-0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.25 ^0.0 ^-0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.33 ^0.0 ^-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.36 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.33 ^0.0 ^0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.25 ^0.0 ^0.52 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.13 ^0.0 ^0.75 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.96 ^0.0 ^0.96 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.75 ^0.0 ^1.13 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.52 ^0.0 ^1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.26 ^0.0 ^1.33 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.45 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_6.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_6.mcfunction new file mode 100644 index 000000000..0842ca410 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_6.mcfunction @@ -0,0 +1,36 @@ +# frame 6 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.26 ^0.0 ^1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.5 ^0.0 ^1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.73 ^0.0 ^1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.93 ^0.0 ^0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.1 ^0.0 ^0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.22 ^0.0 ^0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.29 ^0.0 ^0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.32 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.29 ^0.0 ^-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.22 ^0.0 ^-0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.1 ^0.0 ^-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.93 ^0.0 ^-0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.73 ^0.0 ^-1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.5 ^0.0 ^-1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.26 ^0.0 ^-1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.32 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.26 ^0.0 ^-1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.5 ^0.0 ^-1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.73 ^0.0 ^-1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.93 ^0.0 ^-0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.1 ^0.0 ^-0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.22 ^0.0 ^-0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.29 ^0.0 ^-0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.32 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.29 ^0.0 ^0.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.22 ^0.0 ^0.5 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.1 ^0.0 ^0.73 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.93 ^0.0 ^0.93 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.73 ^0.0 ^1.1 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.5 ^0.0 ^1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.26 ^0.0 ^1.29 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.46 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_7.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_7.mcfunction new file mode 100644 index 000000000..64a505254 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_7.mcfunction @@ -0,0 +1,36 @@ +# frame 7 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.25 ^0.0 ^1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.71 ^0.0 ^1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.91 ^0.0 ^0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.07 ^0.0 ^0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.19 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.26 ^0.0 ^0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.28 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.26 ^0.0 ^-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.19 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.07 ^0.0 ^-0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.91 ^0.0 ^-0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.71 ^0.0 ^-1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.49 ^0.0 ^-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.25 ^0.0 ^-1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.28 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.25 ^0.0 ^-1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.71 ^0.0 ^-1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.91 ^0.0 ^-0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.07 ^0.0 ^-0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.19 ^0.0 ^-0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.26 ^0.0 ^-0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.28 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.26 ^0.0 ^0.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.19 ^0.0 ^0.49 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.07 ^0.0 ^0.71 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.91 ^0.0 ^0.91 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.71 ^0.0 ^1.07 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.49 ^0.0 ^1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.25 ^0.0 ^1.26 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.47000000000000003 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_8.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_8.mcfunction new file mode 100644 index 000000000..a12878ebf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_8.mcfunction @@ -0,0 +1,36 @@ +# frame 8 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.24 ^0.0 ^1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.48 ^0.0 ^1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.69 ^0.0 ^1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.88 ^0.0 ^0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.04 ^0.0 ^0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.15 ^0.0 ^0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.22 ^0.0 ^0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.25 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.22 ^0.0 ^-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.15 ^0.0 ^-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.04 ^0.0 ^-0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.88 ^0.0 ^-0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.69 ^0.0 ^-1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.48 ^0.0 ^-1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.24 ^0.0 ^-1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.25 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.24 ^0.0 ^-1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.48 ^0.0 ^-1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.69 ^0.0 ^-1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.88 ^0.0 ^-0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.04 ^0.0 ^-0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.15 ^0.0 ^-0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.22 ^0.0 ^-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.25 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.22 ^0.0 ^0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.15 ^0.0 ^0.48 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.04 ^0.0 ^0.69 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.88 ^0.0 ^0.88 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.69 ^0.0 ^1.04 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.48 ^0.0 ^1.15 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.24 ^0.0 ^1.22 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.48000000000000004 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_9.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_9.mcfunction new file mode 100644 index 000000000..b573465d2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/crimson_eye/blood/fc_9.mcfunction @@ -0,0 +1,36 @@ +# frame 9 / 30 +# 円.001 +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.24 ^0.0 ^1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.46 ^0.0 ^1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.67 ^0.0 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.86 ^0.0 ^0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.01 ^0.0 ^0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.12 ^0.0 ^0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.19 ^0.0 ^0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.21 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.19 ^0.0 ^-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.12 ^0.0 ^-0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^1.01 ^0.0 ^-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.86 ^0.0 ^-0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.67 ^0.0 ^-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.46 ^0.0 ^-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^0.24 ^0.0 ^-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.0 ^0.0 ^-1.21 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.24 ^0.0 ^-1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.46 ^0.0 ^-1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.67 ^0.0 ^-1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.86 ^0.0 ^-0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.01 ^0.0 ^-0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.12 ^0.0 ^-0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.19 ^0.0 ^-0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.21 ^0.0 ^0.0 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.19 ^0.0 ^0.24 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.12 ^0.0 ^0.46 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-1.01 ^0.0 ^0.67 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.86 ^0.0 ^0.86 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.67 ^0.0 ^1.01 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.46 ^0.0 ^1.12 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1.0,0.15,0.0],scale:1.0} ^-0.24 ^0.0 ^1.19 0.0 0.0 0.0 0.0 1 force @a[distance=..32,tag=ShowParticles] +# 平面 +playsound entity.blaze.hurt hostile @a[distance=..16] ~ ~ ~ 0.6 0.49 0.01 diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_1.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_1.mcfunction new file mode 100644 index 000000000..3112c46e9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_1.mcfunction @@ -0,0 +1,412 @@ +# frame 1 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.91 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_10.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_10.mcfunction new file mode 100644 index 000000000..e4b3522b2 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_10.mcfunction @@ -0,0 +1,412 @@ +# frame 10 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.0 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_11.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_11.mcfunction new file mode 100644 index 000000000..d3de12b36 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_11.mcfunction @@ -0,0 +1,412 @@ +# frame 11 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.01 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_12.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_12.mcfunction new file mode 100644 index 000000000..8b8b96cda --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_12.mcfunction @@ -0,0 +1,412 @@ +# frame 12 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.02 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_13.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_13.mcfunction new file mode 100644 index 000000000..81290525b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_13.mcfunction @@ -0,0 +1,412 @@ +# frame 13 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.03 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_14.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_14.mcfunction new file mode 100644 index 000000000..da5855ba8 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_14.mcfunction @@ -0,0 +1,412 @@ +# frame 14 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.04 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_15.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_15.mcfunction new file mode 100644 index 000000000..75f0245cb --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_15.mcfunction @@ -0,0 +1,412 @@ +# frame 15 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.05 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_16.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_16.mcfunction new file mode 100644 index 000000000..78dd09fc3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_16.mcfunction @@ -0,0 +1,412 @@ +# frame 16 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.06 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_17.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_17.mcfunction new file mode 100644 index 000000000..d078c99ad --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_17.mcfunction @@ -0,0 +1,412 @@ +# frame 17 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.07 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_18.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_18.mcfunction new file mode 100644 index 000000000..dc066c174 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_18.mcfunction @@ -0,0 +1,412 @@ +# frame 18 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.08 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_19.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_19.mcfunction new file mode 100644 index 000000000..7870a0cf1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_19.mcfunction @@ -0,0 +1,412 @@ +# frame 19 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.09 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_2.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_2.mcfunction new file mode 100644 index 000000000..f6169188e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_2.mcfunction @@ -0,0 +1,412 @@ +# frame 2 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.92 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_20.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_20.mcfunction new file mode 100644 index 000000000..1271b33f9 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_20.mcfunction @@ -0,0 +1,412 @@ +# frame 20 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.1 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_21.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_21.mcfunction new file mode 100644 index 000000000..8b3c78dbf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_21.mcfunction @@ -0,0 +1,412 @@ +# frame 21 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.11 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_22.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_22.mcfunction new file mode 100644 index 000000000..83c628bdd --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_22.mcfunction @@ -0,0 +1,412 @@ +# frame 22 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.12 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_23.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_23.mcfunction new file mode 100644 index 000000000..54a64f471 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_23.mcfunction @@ -0,0 +1,412 @@ +# frame 23 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.1300000000000001 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_24.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_24.mcfunction new file mode 100644 index 000000000..33b7bd345 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_24.mcfunction @@ -0,0 +1,412 @@ +# frame 24 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.1400000000000001 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.97 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_25.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_25.mcfunction new file mode 100644 index 000000000..5ab63ec64 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_25.mcfunction @@ -0,0 +1,412 @@ +# frame 25 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.15 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-1.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_26.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_26.mcfunction new file mode 100644 index 000000000..a4852ee25 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_26.mcfunction @@ -0,0 +1,412 @@ +# frame 26 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.1600000000000001 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.93 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.67 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_27.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_27.mcfunction new file mode 100644 index 000000000..2aa595f2e --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_27.mcfunction @@ -0,0 +1,412 @@ +# frame 27 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.17 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-1.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^1.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.55 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.98 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.86 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.64 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-1.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.56 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.81 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.9 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_28.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_28.mcfunction new file mode 100644 index 000000000..2874e98ff --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_28.mcfunction @@ -0,0 +1,412 @@ +# frame 28 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.1800000000000002 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.63 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-1.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.76 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.68 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.5 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.92 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.85 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.46 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.72 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.6 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.49 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.59 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.71 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.48 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.74 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.78 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_29.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_29.mcfunction new file mode 100644 index 000000000..60da40223 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_29.mcfunction @@ -0,0 +1,412 @@ +# frame 29 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.19 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^1.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^1.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.66 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.75 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.83 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-1.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-1.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.44 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-1.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-1.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.61 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.52 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.42 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.96 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.87 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.79 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.7 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.94 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.82 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.57 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.45 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.53 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.89 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.43 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.47 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.51 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.54 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.58 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.62 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.65 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.69 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.73 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.77 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.8 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.84 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.88 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.91 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.95 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.99 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_3.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_3.mcfunction new file mode 100644 index 000000000..630453939 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_3.mcfunction @@ -0,0 +1,412 @@ +# frame 3 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.93 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_30.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_30.mcfunction new file mode 100644 index 000000000..f12a3d62f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_30.mcfunction @@ -0,0 +1,462 @@ +# frame 30 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.2 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_31.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_31.mcfunction new file mode 100644 index 000000000..a3a507275 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_31.mcfunction @@ -0,0 +1,462 @@ +# frame 31 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.21 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_32.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_32.mcfunction new file mode 100644 index 000000000..e0391ae33 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_32.mcfunction @@ -0,0 +1,462 @@ +# frame 32 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.22 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_33.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_33.mcfunction new file mode 100644 index 000000000..60f9f8591 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_33.mcfunction @@ -0,0 +1,462 @@ +# frame 33 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.23 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_34.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_34.mcfunction new file mode 100644 index 000000000..f1c109eed --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_34.mcfunction @@ -0,0 +1,462 @@ +# frame 34 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.24 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_35.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_35.mcfunction new file mode 100644 index 000000000..d57293ae1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_35.mcfunction @@ -0,0 +1,462 @@ +# frame 35 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.25 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_36.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_36.mcfunction new file mode 100644 index 000000000..bbfe86119 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_36.mcfunction @@ -0,0 +1,462 @@ +# frame 36 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.26 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_37.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_37.mcfunction new file mode 100644 index 000000000..5f66f111d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_37.mcfunction @@ -0,0 +1,462 @@ +# frame 37 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.27 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_38.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_38.mcfunction new file mode 100644 index 000000000..f7dca9af3 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_38.mcfunction @@ -0,0 +1,462 @@ +# frame 38 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.28 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_39.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_39.mcfunction new file mode 100644 index 000000000..89b9ed351 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_39.mcfunction @@ -0,0 +1,462 @@ +# frame 39 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.29 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_4.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_4.mcfunction new file mode 100644 index 000000000..00501a0bf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_4.mcfunction @@ -0,0 +1,412 @@ +# frame 4 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.9400000000000001 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_40.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_40.mcfunction new file mode 100644 index 000000000..33568a91d --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_40.mcfunction @@ -0,0 +1,462 @@ +# frame 40 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.3 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^-0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_41.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_41.mcfunction new file mode 100644 index 000000000..3df9dbb9b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_41.mcfunction @@ -0,0 +1,462 @@ +# frame 41 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.31 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^-1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^-1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_42.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_42.mcfunction new file mode 100644 index 000000000..79ebf52a1 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_42.mcfunction @@ -0,0 +1,462 @@ +# frame 42 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.32 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_43.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_43.mcfunction new file mode 100644 index 000000000..9552db5bf --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_43.mcfunction @@ -0,0 +1,462 @@ +# frame 43 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.33 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^-0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^-1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_44.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_44.mcfunction new file mode 100644 index 000000000..3ef4e1a2b --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_44.mcfunction @@ -0,0 +1,462 @@ +# frame 44 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.34 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_45.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_45.mcfunction new file mode 100644 index 000000000..71fd5c2af --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_45.mcfunction @@ -0,0 +1,462 @@ +# frame 45 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.35 0.5 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^1.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.11 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-1.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.66 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-1.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^-1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.01 ^-1.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.41 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.37 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^1.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^1.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.01 ^1.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^-0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.41 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-1.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.66 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-1.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^1.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.37 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_46.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_46.mcfunction new file mode 100644 index 000000000..d20cb0f2f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_46.mcfunction @@ -0,0 +1,460 @@ +# frame 46 / 55 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.76 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.95 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^-1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.95 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.22 ^-0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.28 ^-0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.44 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.32 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^1.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.22 ^0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.28 ^0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.44 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-1.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.76 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^-0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.95 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.32 ^0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_47.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_47.mcfunction new file mode 100644 index 000000000..5da135bc4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_47.mcfunction @@ -0,0 +1,460 @@ +# frame 47 / 55 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.62 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.51 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^1.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.62 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.92 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.46 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^1.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.51 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.54 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.98 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.16 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.33 ^-0.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^-1.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^-1.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^-1.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^-1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^-1.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.54 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^0.9 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.98 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.82 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^1.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^1.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^1.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^1.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^-0.9 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-1.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-1.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.62 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.92 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.46 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-1.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.51 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.54 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.98 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.82 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.16 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.33 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_48.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_48.mcfunction new file mode 100644 index 000000000..db9c290ab --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_48.mcfunction @@ -0,0 +1,460 @@ +# frame 48 / 55 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.43 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.59 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.61 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.86 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.88 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.97 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.87 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^1.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.58 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.24 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.99 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-1.4 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.14 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.43 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.94 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^0.29 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.64 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.54 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.49 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^1.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^1.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.26 ^-0.59 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.61 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.0 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-0.86 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.93 ^-0.88 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^-0.89 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^1.18 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.97 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.87 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.75 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.07 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.15 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-1.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.95 ^-1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.03 ^-1.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-1.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.38 ^-0.58 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.47 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.4 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.36 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.31 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.99 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^1.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.72 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.63 ^1.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.53 ^1.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.43 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^1.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^1.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.59 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.69 ^1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.95 ^1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.03 ^1.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^1.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.38 ^0.58 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.47 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.4 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.36 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.99 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-1.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.81 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.72 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.63 ^-1.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.53 ^-1.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.43 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-1.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.14 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.43 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.94 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.74 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.69 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.64 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.59 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.54 ^-0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.49 ^-0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.89 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-1.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-1.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.26 ^0.59 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.61 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.0 ^0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.74 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.68 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.81 ^0.86 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.93 ^0.88 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^0.89 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-1.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.97 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.87 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.68 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.75 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.07 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.15 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.31 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_49.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_49.mcfunction new file mode 100644 index 000000000..d68910874 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_49.mcfunction @@ -0,0 +1,460 @@ +# frame 49 / 55 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.91 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-0.69 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.7 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.73 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.77 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.78 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.79 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.8 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.81 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.96 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.63 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.42 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.01 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.93 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.35 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.55 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.65 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-1.14 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.08 ^-0.48 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.02 ^-0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-0.25 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.9 ^-0.13 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.85 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^0.1 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^0.22 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.67 ^0.33 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.56 ^0.57 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.91 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^1.03 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^1.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.21 ^-0.67 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.09 ^-0.68 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-0.69 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.83 ^-0.7 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.57 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.72 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.73 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.76 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.77 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.47 ^-0.78 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^-0.79 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.73 ^-0.8 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.86 ^-0.81 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.99 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^1.17 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.06 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.96 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.85 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.74 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.48 ^0.63 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.55 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^0.42 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^0.31 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.77 ^0.2 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.09 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.02 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.98 ^-0.12 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.06 ^-0.23 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^-0.34 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.2 ^-0.45 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.27 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.87 ^-1.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.93 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.85 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.29 ^-0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.34 ^-0.67 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.42 ^-0.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.45 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.55 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.65 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.25 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.05 ^1.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^1.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.89 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.8 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.62 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.42 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^1.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.5 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.6 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.87 ^1.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.93 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.29 ^0.76 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.34 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.57 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.42 ^0.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.45 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.55 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.65 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.25 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.19 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.12 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.05 ^-1.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-1.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.89 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.8 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.42 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-1.48 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.19 ^0.72 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.13 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.08 ^0.48 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.02 ^0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.9 ^0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.85 ^0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.67 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-0.45 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.56 ^-0.57 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.5 ^-0.68 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.44 ^-0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.91 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-1.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-1.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.21 ^0.67 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.09 ^0.68 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^0.69 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.83 ^0.7 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.57 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.44 ^0.72 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.73 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.74 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.76 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.77 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.47 ^0.78 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.6 ^0.79 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.73 ^0.8 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.86 ^0.81 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.99 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.12 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-1.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.96 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.85 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.74 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.48 ^-0.63 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.55 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.62 ^-0.42 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.77 ^-0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.98 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.06 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.13 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.2 ^0.45 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.27 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_5.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_5.mcfunction new file mode 100644 index 000000000..c5013755c --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_5.mcfunction @@ -0,0 +1,412 @@ +# frame 5 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.9500000000000001 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_50.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_50.mcfunction new file mode 100644 index 000000000..d238c7a08 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_50.mcfunction @@ -0,0 +1,460 @@ +# frame 50 / 55 +# ビーム--平面 +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^1.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^2.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^4.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^5.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^7.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^8.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.25 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^10.75 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.5} ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_51.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_51.mcfunction new file mode 100644 index 000000000..6f691e400 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_51.mcfunction @@ -0,0 +1,705 @@ +# frame 51 / 55 +# サウンド +playsound entity.wither.hurt_2 hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.8 0 0.4 +playsound block.respawn_anchor.deplete hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 2 0.4 +playsound block.respawn_anchor.deplete hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 1.97 0.4 +playsound block.end_portal.spawn hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.6 1.5 0.3 +playsound entity.zombie_villager.cure hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.75 1.5 0.4 +playsound item.trident.thunder hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.75 0.5 0.4 +# 発射--円 +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 発射--円.001 +particle end_rod ^-0.0 ^1.5 ^-0.0 ^-0.0 ^1.5 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^0.75 ^1.3 ^-0.0 ^0.75 ^1.3 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^1.3 ^0.75 ^-0.0 ^1.3 ^0.75 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^1.5 ^0.0 ^0.0 ^1.5 ^0.0 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^1.3 ^-0.75 ^0.0 ^1.3 ^-0.75 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^0.75 ^-1.3 ^0.0 ^0.75 ^-1.3 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^-0.0 ^-1.5 ^0.0 ^-0.0 ^-1.5 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^-0.75 ^-1.3 ^0.0 ^-0.75 ^-1.3 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^-1.3 ^-0.75 ^0.0 ^-1.3 ^-0.75 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^-1.5 ^0.0 ^0.0 ^-1.5 ^0.0 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^-1.3 ^0.75 ^-0.0 ^-1.3 ^0.75 ^1000000000.0 0.00000000020 0 normal +particle end_rod ^-0.75 ^1.3 ^-0.0 ^-0.75 ^1.3 ^1000000000.0 0.00000000020 0 normal +# 発射--円.002 +particle end_rod ^-0.0 ^1.5 ^-0.0 ^-0.0 ^1.5 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^0.75 ^1.3 ^-0.0 ^0.75 ^1.3 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^1.3 ^0.75 ^-0.0 ^1.3 ^30.55 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^1.5 ^0.0 ^0.0 ^1.5 ^21.86 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^1.3 ^-0.75 ^0.0 ^1.3 ^29.05 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^0.75 ^-1.3 ^0.0 ^0.75 ^-1.3 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^-0.0 ^-1.5 ^0.0 ^-0.0 ^-1.5 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^-0.75 ^-1.3 ^0.0 ^-0.75 ^-1.3 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^-1.3 ^-0.75 ^0.0 ^-1.3 ^29.05 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^-1.5 ^0.0 ^0.0 ^-1.5 ^21.86 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^-1.3 ^0.75 ^-0.0 ^-1.3 ^30.55 ^1000000000.0 0.00000000040 0 normal +particle end_rod ^-0.75 ^1.3 ^-0.0 ^-0.75 ^1.3 ^1000000000.0 0.00000000040 0 normal +# 発射--円.003 +particle end_rod ^-0.0 ^1.5 ^-0.0 ^-0.0 ^21.37 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^0.75 ^1.3 ^-0.0 ^0.75 ^21.17 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^1.3 ^0.75 ^-0.0 ^1.3 ^30.55 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^1.5 ^0.0 ^0.0 ^1.5 ^29.14 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^1.3 ^-0.75 ^0.0 ^1.3 ^29.05 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^0.75 ^-1.3 ^0.0 ^0.75 ^18.57 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^-0.0 ^-1.5 ^0.0 ^-0.0 ^18.37 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^-0.75 ^-1.3 ^0.0 ^-0.75 ^18.57 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^-1.3 ^-0.75 ^0.0 ^-1.3 ^29.05 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^-1.5 ^0.0 ^0.0 ^-1.5 ^29.14 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^-1.3 ^0.75 ^-0.0 ^-1.3 ^30.55 ^1000000000.0 0.00000000060 0 normal +particle end_rod ^-0.75 ^1.3 ^-0.0 ^-0.75 ^21.17 ^1000000000.0 0.00000000060 0 normal +# 発射--円.004 +particle end_rod ^-0.0 ^1.5 ^-0.0 ^-0.0 ^31.3 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^0.75 ^1.3 ^-0.0 ^0.75 ^31.1 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^1.3 ^0.75 ^-0.0 ^1.3 ^38.0 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^1.5 ^0.0 ^0.0 ^1.5 ^32.78 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^1.3 ^-0.75 ^0.0 ^1.3 ^36.5 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^0.75 ^-1.3 ^0.0 ^0.75 ^28.5 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^-0.0 ^-1.5 ^0.0 ^-0.0 ^28.3 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^-0.75 ^-1.3 ^0.0 ^-0.75 ^28.5 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^-1.3 ^-0.75 ^0.0 ^-1.3 ^36.5 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^-1.5 ^0.0 ^0.0 ^-1.5 ^32.78 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^-1.3 ^0.75 ^-0.0 ^-1.3 ^38.0 ^1000000000.0 0.00000000080 0 normal +particle end_rod ^-0.75 ^1.3 ^-0.0 ^-0.75 ^31.1 ^1000000000.0 0.00000000080 0 normal +# 発射--円.005 +particle end_rod ^-0.0 ^1.5 ^-0.0 ^-0.0 ^37.26 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^0.75 ^1.3 ^-0.0 ^0.75 ^37.06 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^1.3 ^0.75 ^-0.0 ^1.3 ^36.51 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^1.5 ^0.0 ^0.0 ^1.5 ^34.97 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^1.3 ^-0.75 ^0.0 ^1.3 ^35.01 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^0.75 ^-1.3 ^0.0 ^0.75 ^34.46 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^-0.0 ^-1.5 ^0.0 ^-0.0 ^34.26 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^-0.75 ^-1.3 ^0.0 ^-0.75 ^34.46 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^-1.3 ^-0.75 ^0.0 ^-1.3 ^35.01 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^-1.5 ^0.0 ^0.0 ^-1.5 ^34.97 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^-1.3 ^0.75 ^-0.0 ^-1.3 ^36.51 ^1000000000.0 0.00000000100 0 normal +particle end_rod ^-0.75 ^1.3 ^-0.0 ^-0.75 ^37.06 ^1000000000.0 0.00000000100 0 normal +# 発射--円.006 +particle end_rod ^-0.0 ^1.5 ^12.0 ^-0.0 ^1.5 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^0.75 ^1.3 ^12.0 ^0.75 ^1.3 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^1.3 ^0.75 ^12.0 ^1.3 ^0.75 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^1.5 ^0.0 ^12.0 ^1.5 ^0.0 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^1.3 ^-0.75 ^12.0 ^1.3 ^-0.75 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^0.75 ^-1.3 ^12.0 ^0.75 ^-1.3 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^-0.0 ^-1.5 ^12.0 ^-0.0 ^-1.5 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^-0.75 ^-1.3 ^12.0 ^-0.75 ^-1.3 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^-1.3 ^-0.75 ^12.0 ^-1.3 ^-0.75 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^-1.5 ^0.0 ^12.0 ^-1.5 ^0.0 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^-1.3 ^0.75 ^12.0 ^-1.3 ^0.75 ^-1000000000.0 0.00000000020 0 normal +particle end_rod ^-0.75 ^1.3 ^12.0 ^-0.75 ^1.3 ^-1000000000.0 0.00000000020 0 normal +# 発射--円.007 +particle end_rod ^-0.0 ^1.5 ^12.0 ^-0.0 ^1.5 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^0.75 ^1.3 ^12.0 ^0.75 ^1.3 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^1.3 ^0.75 ^12.0 ^1.3 ^30.55 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^1.5 ^0.0 ^12.0 ^1.5 ^21.86 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^1.3 ^-0.75 ^12.0 ^1.3 ^29.05 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^0.75 ^-1.3 ^12.0 ^0.75 ^-1.3 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^-0.0 ^-1.5 ^12.0 ^-0.0 ^-1.5 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^-0.75 ^-1.3 ^12.0 ^-0.75 ^-1.3 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^-1.3 ^-0.75 ^12.0 ^-1.3 ^29.05 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^-1.5 ^0.0 ^12.0 ^-1.5 ^21.86 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^-1.3 ^0.75 ^12.0 ^-1.3 ^30.55 ^-1000000000.0 0.00000000040 0 normal +particle end_rod ^-0.75 ^1.3 ^12.0 ^-0.75 ^1.3 ^-1000000000.0 0.00000000040 0 normal +# 発射--円.008 +particle end_rod ^-0.0 ^1.5 ^12.0 ^-0.0 ^21.37 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^0.75 ^1.3 ^12.0 ^0.75 ^21.17 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^1.3 ^0.75 ^12.0 ^1.3 ^30.55 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^1.5 ^0.0 ^12.0 ^1.5 ^29.14 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^1.3 ^-0.75 ^12.0 ^1.3 ^29.05 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^0.75 ^-1.3 ^12.0 ^0.75 ^18.57 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^-0.0 ^-1.5 ^12.0 ^-0.0 ^18.37 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^-0.75 ^-1.3 ^12.0 ^-0.75 ^18.57 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^-1.3 ^-0.75 ^12.0 ^-1.3 ^29.05 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^-1.5 ^0.0 ^12.0 ^-1.5 ^29.14 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^-1.3 ^0.75 ^12.0 ^-1.3 ^30.55 ^-1000000000.0 0.00000000060 0 normal +particle end_rod ^-0.75 ^1.3 ^12.0 ^-0.75 ^21.17 ^-1000000000.0 0.00000000060 0 normal +# 発射--円.009 +particle end_rod ^-0.0 ^1.5 ^12.0 ^-0.0 ^31.3 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^0.75 ^1.3 ^12.0 ^0.75 ^31.1 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^1.3 ^0.75 ^12.0 ^1.3 ^38.0 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^1.5 ^0.0 ^12.0 ^1.5 ^32.78 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^1.3 ^-0.75 ^12.0 ^1.3 ^36.5 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^0.75 ^-1.3 ^12.0 ^0.75 ^28.5 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^-0.0 ^-1.5 ^12.0 ^-0.0 ^28.3 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^-0.75 ^-1.3 ^12.0 ^-0.75 ^28.5 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^-1.3 ^-0.75 ^12.0 ^-1.3 ^36.5 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^-1.5 ^0.0 ^12.0 ^-1.5 ^32.78 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^-1.3 ^0.75 ^12.0 ^-1.3 ^38.0 ^-1000000000.0 0.00000000080 0 normal +particle end_rod ^-0.75 ^1.3 ^12.0 ^-0.75 ^31.1 ^-1000000000.0 0.00000000080 0 normal +# 発射--円.010 +particle end_rod ^-0.0 ^1.5 ^12.0 ^-0.0 ^37.26 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^0.75 ^1.3 ^12.0 ^0.75 ^37.06 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^1.3 ^0.75 ^12.0 ^1.3 ^36.51 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^1.5 ^0.0 ^12.0 ^1.5 ^34.97 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^1.3 ^-0.75 ^12.0 ^1.3 ^35.01 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^0.75 ^-1.3 ^12.0 ^0.75 ^34.46 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^-0.0 ^-1.5 ^12.0 ^-0.0 ^34.26 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^-0.75 ^-1.3 ^12.0 ^-0.75 ^34.46 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^-1.3 ^-0.75 ^12.0 ^-1.3 ^35.01 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^-1.5 ^0.0 ^12.0 ^-1.5 ^34.97 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^-1.3 ^0.75 ^12.0 ^-1.3 ^36.51 ^-1000000000.0 0.00000000100 0 normal +particle end_rod ^-0.75 ^1.3 ^12.0 ^-0.75 ^37.06 ^-1000000000.0 0.00000000100 0 normal +# 発射--平面.001 +particle flash ^-0.0 ^0.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle flash ^-0.0 ^0.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle flash ^-0.0 ^0.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle flash ^-0.0 ^0.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle flash ^-0.0 ^0.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle flash ^-0.0 ^0.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_52.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_52.mcfunction new file mode 100644 index 000000000..5e2f0d81a --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_52.mcfunction @@ -0,0 +1,563 @@ +# frame 52 / 55 +# サウンド +playsound entity.zombie_villager.cure hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.75 1.75 0.4 +# 発射--円 +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_53.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_53.mcfunction new file mode 100644 index 000000000..e0e191546 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_53.mcfunction @@ -0,0 +1,563 @@ +# frame 53 / 55 +# サウンド +playsound entity.zombie_villager.cure hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.75 1.5 0.4 +# 発射--円 +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_54.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_54.mcfunction new file mode 100644 index 000000000..9e294280f --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_54.mcfunction @@ -0,0 +1,563 @@ +# frame 54 / 55 +# サウンド +playsound entity.zombie_villager.cure hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 0.75 1.75 0.4 +# 発射--円 +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_55.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_55.mcfunction new file mode 100644 index 000000000..43fbea3d0 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_55.mcfunction @@ -0,0 +1,561 @@ +# frame 55 / 55 +# 発射--円 +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^11.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.0 ^-1.0 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^-0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^0.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^1.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^2.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^3.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^4.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^5.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^6.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^7.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^8.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^9.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[0.45,0.1,0.75],scale:1.5} ^-0.87 ^0.5 ^10.5 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.52 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.08 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.37 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.82 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^1.27 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^-0.75 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^1.39 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^1.28 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^1.16 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^1.05 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.94 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.83 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^0.71 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.6 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^0.49 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.38 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^0.26 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.15 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^0.04 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^-0.07 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^-0.19 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-0.3 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^-0.41 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^-0.53 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^-0.64 ^12.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^-1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^-1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^-1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^-1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^-1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^-1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^-0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^-0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^-0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^-0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^-0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^-0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.5 ^0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.49 ^0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.48 ^0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.46 ^0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.43 ^0.46 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.39 ^0.56 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.35 ^0.66 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.3 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.24 ^0.84 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.18 ^0.92 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.11 ^1.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^1.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.96 ^1.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.88 ^1.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.79 ^1.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.7 ^1.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^1.5 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^1.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^1.47 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^1.44 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^1.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^1.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.5 ^-0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.49 ^-0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.48 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.46 ^-0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.43 ^-0.46 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.39 ^-0.56 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.35 ^-0.66 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.3 ^-0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.24 ^-0.84 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.18 ^-0.92 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.11 ^-1.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^-1.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.96 ^-1.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.88 ^-1.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.79 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.7 ^-1.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.61 ^-1.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.51 ^-1.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-1.44 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-1.47 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-1.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-1.5 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.23 ^0.64 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.52 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.1 ^0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.97 ^0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.84 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.71 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.58 ^-0.49 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^-0.6 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.45 ^-0.71 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.82 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-1.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.75 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.52 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.65 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.78 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.91 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.04 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^1.17 ^0.75 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-1.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-1.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-1.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-1.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.94 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.83 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.45 ^-0.71 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.52 ^-0.6 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.58 ^-0.49 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.65 ^-0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.71 ^-0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.78 ^-0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.84 ^-0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.91 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.97 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.04 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.1 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.17 ^0.53 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-1.23 ^0.64 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_6.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_6.mcfunction new file mode 100644 index 000000000..f315bdaac --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_6.mcfunction @@ -0,0 +1,412 @@ +# frame 6 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.96 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_7.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_7.mcfunction new file mode 100644 index 000000000..e7155b366 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_7.mcfunction @@ -0,0 +1,412 @@ +# frame 7 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.97 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_8.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_8.mcfunction new file mode 100644 index 000000000..4c746cfb4 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_8.mcfunction @@ -0,0 +1,412 @@ +# frame 8 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.98 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.0 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.03 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.1 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.06 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.22 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^-0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.1 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.0 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.06 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.03 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.22 ^-0.1 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_9.mcfunction b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_9.mcfunction new file mode 100644 index 000000000..10ca32615 --- /dev/null +++ b/data/makeup/function/ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_9.mcfunction @@ -0,0 +1,412 @@ +# frame 9 / 55 +# 音 +playsound minecraft:entity.evoker.prepare_summon hostile @a[distance=..32] ^-0.0 ^0.0 ^6.0 1 0.99 0.5 +# 魔法陣--魔法陣 +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.01 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.13 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.41 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.4 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.39 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.38 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.37 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.36 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.26 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.24 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.19 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.08 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.17 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.33 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.35 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.01 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.05 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^-0.12 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^-0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^-0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^-0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^-0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^-0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^-0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^-0.31 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^-0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^0.34 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^0.3 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.09 ^0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.27 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.23 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.2 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^0.16 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.13 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^0.09 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^0.06 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.02 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.29 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.22 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.15 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.04 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^-0.0 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.03 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.07 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.11 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.14 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.18 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.21 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.25 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.28 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.32 ^12 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.07 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.04 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.01 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.02 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.05 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.08 ^0.41 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^0.4 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^0.39 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^0.38 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.19 ^0.37 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.21 ^0.36 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.24 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.28 ^0.3 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.3 ^0.28 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.26 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.34 ^0.24 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.37 ^0.19 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.08 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^0.02 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.0 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.41 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.4 ^-0.12 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.39 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.17 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.36 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.33 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.31 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.27 ^-0.31 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.25 ^-0.33 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.35 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.18 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.15 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.12 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^-0.41 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.1 ^-0.4 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.13 ^-0.39 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.16 ^-0.38 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.19 ^-0.37 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.36 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.24 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.26 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.28 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.3 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.32 ^-0.26 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.34 ^-0.24 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.37 ^-0.19 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.08 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.05 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.41 ^0.06 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.4 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.39 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.38 ^0.17 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.36 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.35 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.33 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.31 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.29 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.27 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.25 ^0.33 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.23 ^0.35 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^0.01 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^0.03 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^0.05 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^0.09 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^0.12 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.17 ^0.14 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.14 ^0.16 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.11 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^0.2 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^0.21 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^0.23 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^0.27 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.08 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.11 ^0.31 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.14 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.17 ^0.34 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.18 ^-0.34 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.15 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.12 ^-0.3 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.09 ^-0.29 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.05 ^-0.27 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.02 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.01 ^-0.23 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.04 ^-0.22 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.07 ^-0.2 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.1 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.13 ^-0.16 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.16 ^-0.15 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.2 ^-0.13 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.23 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.26 ^-0.09 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.29 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.32 ^-0.06 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.35 ^-0.04 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^-0.38 ^-0.02 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.32 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.29 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.25 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.22 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.2 ^0.18 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.15 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.11 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.07 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.04 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^0.0 ^0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.03 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.07 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.11 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.14 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.18 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.21 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.25 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.28 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] +particle dust{color:[1,0,100000000],scale:0.33} ^0.21 ^-0.32 ^-0.0 0 0 0 0 1 force @a[distance=..32,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/firework_tusb_star.mcfunction b/data/makeup/function/ai/skill/firework_tusb_star.mcfunction new file mode 100644 index 000000000..ec9070394 --- /dev/null +++ b/data/makeup/function/ai/skill/firework_tusb_star.mcfunction @@ -0,0 +1,549 @@ +#> makeup:ai/skill/reraise/death_cancel +particle firework ^-0.0 ^0.0 ^-0.0 ^42.81 ^-1000000000.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-723607360.0 ^-447219584.0 ^-525725376.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^276388064.0 ^-447219904.0 ^-850649152.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^894426240.0 ^-447215584.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^276388032.0 ^-447219872.0 ^850649280.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-723607296.0 ^-447219552.0 ^525725376.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-276388032.0 ^447219840.0 ^-850649216.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^723607360.0 ^447219456.0 ^-525725312.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^723607360.0 ^447219456.0 ^525725376.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-276388000.0 ^447219776.0 ^850649280.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-894426240.0 ^447215552.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^42.81 ^1000000000.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^232821584.0 ^-657519296.0 ^-716563072.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^162455584.0 ^-850654464.0 ^-499995168.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^77606680.0 ^-967949760.0 ^-238852672.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-203180864.0 ^-967949632.0 ^-147617808.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-425322624.0 ^-850654336.0 ^-309011360.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-609546688.0 ^-657518912.0 ^-442856384.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-531940928.0 ^-502301824.0 ^-681712448.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-262868816.0 ^-525737760.0 ^-809011648.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^29639318.0 ^-502301984.0 ^-864184128.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-812729152.0 ^-502300672.0 ^295237760.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-850647872.0 ^-525735968.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-812729216.0 ^-502300672.0 ^-295237728.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-203180864.0 ^-967949632.0 ^147617872.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-425322624.0 ^-850654336.0 ^309011392.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-609546688.0 ^-657518912.0 ^442856448.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^753441728.0 ^-657514752.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^525729760.0 ^-850651712.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^251147008.0 ^-967949056.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^483971488.0 ^-502301760.0 ^-716564480.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^688189376.0 ^-525736224.0 ^-499996800.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^831050624.0 ^-502298656.0 ^-238853344.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^232821552.0 ^-657519232.0 ^716563136.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^162455584.0 ^-850654464.0 ^499995264.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^77606680.0 ^-967949760.0 ^238852720.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^831050624.0 ^-502298656.0 ^238853424.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^688189376.0 ^-525736224.0 ^499996928.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^483971456.0 ^-502301696.0 ^716564544.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^29639314.0 ^-502301920.0 ^864184256.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-262868784.0 ^-525737632.0 ^809011776.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-531940864.0 ^-502301760.0 ^681712512.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-956625728.0 ^251149440.0 ^-147618352.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-951057984.0 ^-47.75 ^-309012672.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-860697664.0 ^-251150912.0 ^-442857536.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-860697664.0 ^-251150912.0 ^442857632.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-951057984.0 ^-12.72 ^309012704.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-956625728.0 ^251149440.0 ^147618416.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-155215056.0 ^251151536.0 ^-955422016.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^42.81 ^-47.75 ^-1000000000.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^155215152.0 ^-251151568.0 ^-955422016.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-687158656.0 ^-251151952.0 ^-681715392.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-587785664.0 ^-12.72 ^-809016704.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-436006816.0 ^251152032.0 ^-864187968.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^860697664.0 ^251150816.0 ^-442857440.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^951057984.0 ^-47.75 ^-309012608.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^956625792.0 ^-251149440.0 ^-147618320.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^436006880.0 ^-251152064.0 ^-864187904.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^587785728.0 ^-12.72 ^-809016768.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^687158656.0 ^251151888.0 ^-681715392.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^687158656.0 ^251151888.0 ^681715392.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^587785664.0 ^-47.75 ^809016768.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^436006784.0 ^-251152032.0 ^864187904.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^956625728.0 ^-251149408.0 ^147618384.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^951057984.0 ^-12.72 ^309012640.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^860697664.0 ^251150816.0 ^442857536.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-436006752.0 ^251152016.0 ^864187968.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-587785536.0 ^-47.75 ^809016768.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-687158592.0 ^-251151952.0 ^681715456.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^155215136.0 ^-251151536.0 ^955422016.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^42.81 ^-12.72 ^1000000000.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-155215040.0 ^251151472.0 ^955422016.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-831050624.0 ^502298656.0 ^-238853408.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-688189312.0 ^525736160.0 ^-499996896.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-483971456.0 ^502301696.0 ^-716564544.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-29639234.0 ^502301920.0 ^-864184192.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^262868880.0 ^525737632.0 ^-809011712.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^531940928.0 ^502301696.0 ^-681712448.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^812729280.0 ^502300576.0 ^-295237696.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^850647936.0 ^525735840.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^812729280.0 ^502300576.0 ^295237728.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^531940928.0 ^502301696.0 ^681712448.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^262868848.0 ^525737568.0 ^809011776.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-29639230.0 ^502301824.0 ^864184256.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-483971392.0 ^502301696.0 ^716564608.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-688189312.0 ^525736160.0 ^499996928.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-831050624.0 ^502298656.0 ^238853440.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-77606600.0 ^967949696.0 ^-238852720.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-162455536.0 ^850654400.0 ^-499995296.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-232821504.0 ^657519232.0 ^-716563136.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-753441728.0 ^657514752.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-525729760.0 ^850651712.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-251147008.0 ^967949056.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^203180976.0 ^967949632.0 ^-147617824.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^425322752.0 ^850654208.0 ^-309011392.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^609546752.0 ^657518848.0 ^-442856384.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^203180976.0 ^967949632.0 ^147617888.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^425322752.0 ^850654208.0 ^309011424.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^609546752.0 ^657518848.0 ^442856448.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-77606600.0 ^967949696.0 ^238852768.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-162455520.0 ^850654336.0 ^499995328.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-232821488.0 ^657519168.0 ^716563136.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-361800352.0 ^894429184.0 ^262862976.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-638193536.0 ^723610048.0 ^262864144.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-447209152.0 ^723611584.0 ^525728288.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^138197312.0 ^894429952.0 ^425319584.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^52789620.0 ^723612288.0 ^688184960.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^361803680.0 ^723612160.0 ^587778432.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^447209920.0 ^894429056.0 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^670816704.0 ^723610944.0 ^162457072.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^670816704.0 ^723610944.0 ^-162457024.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^138197344.0 ^894429952.0 ^-425319488.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^361803712.0 ^723612224.0 ^-587778368.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^52789620.0 ^723612288.0 ^-688184896.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-361800352.0 ^894429184.0 ^-262862944.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-447209248.0 ^723611712.0 ^-525728224.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-638193536.0 ^723610048.0 ^-262864080.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-861804096.0 ^276396192.0 ^425322016.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-809019264.0 ^-30.24 ^587782208.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-670820544.0 ^276397376.0 ^688189184.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^138198576.0 ^276397056.0 ^951055104.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^309016480.0 ^-522.21 ^951056704.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^447215008.0 ^276397184.0 ^850648768.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^947213248.0 ^276395840.0 ^162457648.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^1000000000.0 ^592.93 ^-324.12 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^947213056.0 ^276396576.0 ^-162457856.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^447215904.0 ^276396864.0 ^-850648448.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^309017280.0 ^-817.39 ^-951056512.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^138199312.0 ^276396768.0 ^-951055104.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-670820416.0 ^276396160.0 ^-688189824.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-809018688.0 ^-1932.53 ^-587783040.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-861804096.0 ^276394432.0 ^-425323200.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-309017184.0 ^-30.24 ^951056512.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-447215520.0 ^-276397696.0 ^850648384.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-138199024.0 ^-276397536.0 ^951054912.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^809018432.0 ^-30.24 ^587783296.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^670819008.0 ^-276397280.0 ^688190720.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^861803200.0 ^-276396320.0 ^425323936.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^809018496.0 ^-30.24 ^-587783296.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^861803200.0 ^-276396320.0 ^-425323904.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^670819072.0 ^-276397280.0 ^-688190656.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-309017248.0 ^-30.24 ^-951056512.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-138199056.0 ^-276397600.0 ^-951054912.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-447215616.0 ^-276397760.0 ^-850648256.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-1000000000.0 ^-30.24 ^36.66 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-947213184.0 ^-276396064.0 ^-162457504.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-947213184.0 ^-276396064.0 ^162457616.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-361803456.0 ^-723611648.0 ^587779264.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-138196736.0 ^-894429120.0 ^425321344.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-52789056.0 ^-723611008.0 ^688186368.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^447210624.0 ^-723611584.0 ^525727168.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^361801216.0 ^-894428992.0 ^262862528.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^638194752.0 ^-723609472.0 ^262862832.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^638194560.0 ^-723609280.0 ^-262863664.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^361801344.0 ^-894428416.0 ^-262864352.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^447210592.0 ^-723610496.0 ^-525728640.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-670817024.0 ^-723610688.0 ^162456832.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-670817472.0 ^-723610048.0 ^-162457712.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-447210912.0 ^-894428544.0 ^-701.3 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-52790312.0 ^-723611904.0 ^-688185408.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-138198640.0 ^-894429184.0 ^-425320608.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle firework ^-0.0 ^0.0 ^-0.0 ^-361804960.0 ^-723611008.0 ^-587779136.0 0.00000000055 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33434070.0 ^33207536.0 ^-998889024.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30188.99 ^49940136.0 ^-998752320.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29394.71 ^22382272.0 ^-999749568.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15452770.0 ^15248026.0 ^-999764352.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-22580798.0 ^-157894.56 ^-999745024.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-50166512.0 ^-169066.89 ^-998740928.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-97076600.0 ^-193484.72 ^-995276928.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64734688.0 ^64475328.0 ^-995817472.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34553.59 ^96821488.0 ^-995301696.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113671224.0 ^113371392.0 ^-987028736.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39901.91 ^169966288.0 ^-985449920.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-170255088.0 ^-223399.39 ^-985399936.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-277980672.0 ^-258560.64 ^-960586688.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186110016.0 ^185762080.0 ^-964808448.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46189.12 ^277664416.0 ^-960678080.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286159328.0 ^285759296.0 ^-914578880.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52794.86 ^424575744.0 ^-905392320.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-424906176.0 ^-295484.28 ^-905237312.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-707174400.0 ^-358137.53 ^-707038912.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421579168.0 ^421134464.0 ^-803067072.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^62623.2 ^706971328.0 ^-707242048.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7321239.0 ^7135838.0 ^-999947712.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-8993965.0 ^-164018.22 ^-999959552.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^28946.61 ^8811934.0 ^-999961216.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^25659.62 ^-144643.14 ^-1000000000.0 0.00000000053 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999948288.0 ^7135551.5 ^-7252593.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999960000.0 ^-163845.89 ^-8942857.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-1000000000.0 ^-144470.23 ^56274.07 0.00000000053 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999961280.0 ^8811548.0 ^84146.85 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999749568.0 ^22380836.0 ^82612.84 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999765376.0 ^15247148.0 ^-15379982.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999746112.0 ^-157723.48 ^-22533656.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998891968.0 ^33205218.0 ^-33351172.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995824320.0 ^64470180.0 ^-64633980.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995283520.0 ^-193319.2 ^-97008392.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998743744.0 ^-168898.27 ^-50108216.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998752384.0 ^49936428.0 ^93049.8 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995302592.0 ^96813120.0 ^106494.95 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-914639168.0 ^285733888.0 ^-285991776.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-905417728.0 ^424521888.0 ^162663.53 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-707318016.0 ^706895360.0 ^186934.62 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-803174080.0 ^421106784.0 ^-421403072.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-905301888.0 ^-295376.22 ^-424768672.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-960616320.0 ^-258418.27 ^-277877824.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-964839488.0 ^185743520.0 ^-185967840.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-960687872.0 ^277630560.0 ^142326.91 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-577559488.0 ^577088768.0 ^-577402560.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421625952.0 ^802865536.0 ^-421471936.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-987043328.0 ^113361440.0 ^-113554688.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-985452800.0 ^169949312.0 ^122967.59 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-985413376.0 ^-223243.83 ^-170177840.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7322090.5 ^999946880.0 ^-7256445.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-8994978.0 ^999959488.0 ^84000.33 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^25662.35 ^1000000000.0 ^74232.51 0.00000000053 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^31296.9 ^999960128.0 ^-8930544.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29398.29 ^999746624.0 ^-22512306.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15449498.0 ^999762240.0 ^-15383121.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-22583490.0 ^999744960.0 ^82469.4 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33435776.0 ^998884160.0 ^-33355516.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64744764.0 ^995805248.0 ^-64652832.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-97091120.0 ^995275520.0 ^103029.29 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-50173240.0 ^998740480.0 ^89993.3 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30193.08 ^998744576.0 ^-50093196.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34558.77 ^995284096.0 ^-97003432.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113689976.0 ^987002240.0 ^-113583680.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186141712.0 ^964752960.0 ^-186018336.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-278034336.0 ^960571136.0 ^137780.08 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-170284880.0 ^985394816.0 ^119002.59 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39908.04 ^985412032.0 ^-170185616.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46196.03 ^960602688.0 ^-277925088.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286205696.0 ^914469184.0 ^-286063776.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-424994336.0 ^905196032.0 ^157508.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52801.45 ^905249984.0 ^-424879264.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33433426.0 ^33210122.0 ^998889024.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15453707.0 ^15249278.0 ^999764288.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29396.34 ^22383834.0 ^999749504.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30191.12 ^49943996.0 ^998752064.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34556.27 ^96829320.0 ^995300928.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64739712.0 ^64480648.0 ^995816768.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-97081208.0 ^-193169.62 ^995276416.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-50168892.0 ^-168749.48 ^998740736.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-22581750.0 ^-160168.8 ^999744960.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113680888.0 ^113381360.0 ^987026496.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39905.46 ^169981680.0 ^985447296.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46193.75 ^277692544.0 ^960670016.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186127968.0 ^185780320.0 ^964801536.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-277997696.0 ^-258263.47 ^960581632.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-170265648.0 ^-223092.17 ^985398144.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286190784.0 ^285791008.0 ^914559104.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52800.79 ^424623744.0 ^905369856.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^68151.1 ^707005504.0 ^707208128.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421607264.0 ^421162848.0 ^803037440.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-707219392.0 ^-357929.91 ^706994048.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-424934016.0 ^-295212.25 ^905224256.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7321646.5 ^7136562.0 ^999947712.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-8994373.0 ^-163699.83 ^999959552.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^25660.57 ^-144322.62 ^1000000000.0 0.00000000053 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^31295.05 ^8812762.0 ^999961280.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286343040.0 ^-914369088.0 ^286246048.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421775104.0 ^-802688320.0 ^421660128.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-707526208.0 ^-706687104.0 ^-149845.47 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-425199520.0 ^-905099712.0 ^-113005.11 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-278158976.0 ^-960535104.0 ^-98840.01 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186224528.0 ^-964713664.0 ^186140256.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46216.23 ^-960556288.0 ^278085664.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52825.83 ^-905134592.0 ^425125120.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^62640.47 ^-706750016.0 ^707463424.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113734840.0 ^-986988096.0 ^113662232.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-170352528.0 ^-985383232.0 ^-85357.98 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-97124848.0 ^-995272128.0 ^-73890.45 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64767160.0 ^-995800512.0 ^64704388.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34570.68 ^-995277952.0 ^97066008.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39923.66 ^-985394688.0 ^170285904.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33446022.0 ^-998882432.0 ^33394154.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-50188664.0 ^-998739776.0 ^-64532.78 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-22589604.0 ^-999744832.0 ^-59864.63 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15458950.0 ^-999761792.0 ^15407476.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29406.3 ^-999745856.0 ^22543662.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30202.32 ^-998742528.0 ^50134008.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7323933.5 ^-999946624.0 ^7279129.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-8997182.0 ^-999959552.0 ^-61198.25 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^25668.42 ^-1000000000.0 ^-54499.05 0.00000000053 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^31304.56 ^-999959872.0 ^8953206.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999947328.0 ^7135547.0 ^7380998.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999959360.0 ^-163842.84 ^9014941.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999746304.0 ^-157716.17 ^22522564.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999763968.0 ^15247133.0 ^15478266.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998888704.0 ^33205122.0 ^33449568.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998745856.0 ^-168882.28 ^50066616.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995287808.0 ^-193288.45 ^96964400.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995816640.0 ^64469708.0 ^64752936.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-914595008.0 ^285720160.0 ^286146688.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-803119424.0 ^421078240.0 ^421535424.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-964813120.0 ^185738512.0 ^186109504.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-960634560.0 ^-258332.67 ^277814848.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-905329856.0 ^-295246.94 ^424708896.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-577531328.0 ^577060864.0 ^577458624.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421596256.0 ^802809088.0 ^421608928.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-987029120.0 ^113359856.0 ^113679528.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-985423296.0 ^-223190.66 ^170120560.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7322083.5 ^999945920.0 ^7379768.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^31296.88 ^999959296.0 ^9030477.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15449475.0 ^999760832.0 ^15478498.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29398.26 ^999745792.0 ^22550142.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33435666.0 ^998880832.0 ^33453606.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64744300.0 ^995798208.0 ^64761528.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34558.72 ^995282496.0 ^97018720.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30193.06 ^998743808.0 ^50106628.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113688336.0 ^986988032.0 ^113708256.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186136656.0 ^964726784.0 ^186159840.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46195.76 ^960597248.0 ^277944256.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39907.91 ^985409024.0 ^170203008.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286191904.0 ^914425088.0 ^286218560.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52800.8 ^905238912.0 ^424902880.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999948224.0 ^7135864.0 ^-7252911.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999961216.0 ^8811948.0 ^84150.66 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^1000000000.0 ^-144476.88 ^56276.66 0.00000000053 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999959936.0 ^-163853.31 ^-8943263.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999746048.0 ^-157730.53 ^-22534664.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999765376.0 ^15247877.0 ^-15380717.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999749568.0 ^22381840.0 ^82616.54 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998891904.0 ^33206996.0 ^-33352956.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995823744.0 ^64474112.0 ^-64637920.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995301952.0 ^96819016.0 ^106501.44 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998752064.0 ^49942012.0 ^93054.76 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998743616.0 ^-168907.28 ^-50110892.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995283008.0 ^-193331.0 ^-97014304.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^987041792.0 ^113368496.0 ^-113561760.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^964833216.0 ^185759904.0 ^-185984240.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^960682176.0 ^277650752.0 ^142339.53 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^985451008.0 ^169959840.0 ^122975.21 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^985412864.0 ^-223257.95 ^-170180880.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^960609344.0 ^-258440.84 ^-277902112.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^914622016.0 ^285761312.0 ^-286019264.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^803146432.0 ^421136000.0 ^-421426496.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^707281152.0 ^706932224.0 ^186945.83 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^905398976.0 ^424561792.0 ^162678.83 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^905283136.0 ^-295404.03 ^-424808640.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^707140416.0 ^-358160.44 ^-707073088.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999947264.0 ^7135859.5 ^7381321.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999959360.0 ^-163850.27 ^9015350.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999763968.0 ^15247861.0 ^15479005.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999746304.0 ^-157723.25 ^22523574.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998888512.0 ^33206894.0 ^33451356.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995816512.0 ^64473668.0 ^64750216.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995287616.0 ^-193300.3 ^96967008.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998745664.0 ^-168891.3 ^50069288.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^987027520.0 ^113366904.0 ^113686592.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^964806848.0 ^185754896.0 ^186125920.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^960628800.0 ^-258355.58 ^277834976.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^985421504.0 ^-223204.5 ^170131120.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^914577920.0 ^285747648.0 ^286174176.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^803089920.0 ^421106464.0 ^421563680.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^707179776.0 ^-357950.0 ^707033664.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^905311168.0 ^-295274.72 ^424748896.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113719232.0 ^986998848.0 ^-113583296.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^170264928.0 ^985398336.0 ^119003.02 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^278012352.0 ^960577408.0 ^137780.98 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186175008.0 ^964746944.0 ^-186017168.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64766988.0 ^995803904.0 ^-64652740.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^97073448.0 ^995277184.0 ^103029.47 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^577560192.0 ^577091520.0 ^-577399104.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421611040.0 ^421127552.0 ^-803053888.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421657824.0 ^802852416.0 ^-421465024.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286242048.0 ^914458752.0 ^-286060544.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^424972000.0 ^905206464.0 ^157509.81 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33458252.0 ^998883264.0 ^-33358500.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15477347.0 ^999761792.0 ^-15383155.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^22580050.0 ^999745024.0 ^82469.4 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^50154936.0 ^998741440.0 ^89993.65 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7359570.5 ^999946624.0 ^-7256461.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^9022365.0 ^999959360.0 ^84000.31 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7358697.0 ^7135836.0 ^-999947456.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15475444.0 ^15248100.0 ^-999763968.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^22577414.0 ^-157894.98 ^-999745024.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^9021370.0 ^-164018.55 ^-999959232.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286195680.0 ^285756064.0 ^-914568448.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^424881632.0 ^-295489.72 ^-905248832.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^277958688.0 ^-258562.33 ^-960592960.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186143296.0 ^185760912.0 ^-964802432.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113700920.0 ^113371448.0 ^-987025408.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^170236448.0 ^-223401.89 ^-985403200.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^97058936.0 ^-193485.06 ^-995278592.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64756908.0 ^64475232.0 ^-995816000.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33453542.0 ^33207518.0 ^-998888512.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^50148212.0 ^-169067.53 ^-998741888.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33455912.0 ^33210196.0 ^998888320.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15476343.0 ^15249313.0 ^999763968.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^22578370.0 ^-157575.91 ^999745088.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^50150592.0 ^-168750.12 ^998741632.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^97063888.0 ^-193170.62 ^995278144.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64765260.0 ^64480536.0 ^995815040.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113710592.0 ^113381416.0 ^987023040.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^170245712.0 ^-223092.97 ^985401664.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^277975776.0 ^-258265.17 ^960588096.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186162064.0 ^185779952.0 ^964795136.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286228448.0 ^285789088.0 ^914547840.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^424913632.0 ^-295217.03 ^905233792.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421639104.0 ^421155904.0 ^803024320.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7359124.5 ^7136577.5 ^999947520.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^9021757.0 ^-163699.78 ^999959232.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7359563.0 ^999945664.0 ^7379784.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15477325.0 ^999760384.0 ^15478532.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33458148.0 ^998880064.0 ^33453676.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64769856.0 ^995796544.0 ^64761416.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286228224.0 ^914414656.0 ^286215296.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421628192.0 ^802796096.0 ^421602048.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186169904.0 ^964720576.0 ^186158624.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^577529984.0 ^577061504.0 ^577459264.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113717608.0 ^986984704.0 ^113707880.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7323929.5 ^-999946112.0 ^-7360771.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^31304.54 ^-999959424.0 ^-9012215.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15453724.0 ^-999761024.0 ^-15460012.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29406.31 ^-999746112.0 ^-22533688.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33445980.0 ^-998881088.0 ^-33435512.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64766936.0 ^-995797120.0 ^-64754976.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34570.82 ^-995282048.0 ^-97023536.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30202.38 ^-998744448.0 ^-50096600.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113734072.0 ^-986981376.0 ^-113720272.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186222144.0 ^-964701248.0 ^-186206176.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46216.96 ^-960571584.0 ^-278032832.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39924.0 ^-985403008.0 ^-170237904.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286336608.0 ^-914348544.0 ^-286318240.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421759296.0 ^-802658304.0 ^-421732864.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^62646.04 ^-706813056.0 ^-707400448.0 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52827.4 ^-905161728.0 ^-425067264.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113764112.0 ^-986984640.0 ^113661848.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^170333216.0 ^-985386560.0 ^-85358.62 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^278138176.0 ^-960541056.0 ^-98841.09 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186257808.0 ^-964707392.0 ^186139040.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64789384.0 ^-995798976.0 ^64704292.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^97107184.0 ^-995273984.0 ^-73890.58 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286379360.0 ^-914358656.0 ^286242784.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^425177152.0 ^-905110144.0 ^-113006.41 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^707486656.0 ^-706726784.0 ^-149853.86 0.00000000022 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421810016.0 ^-802675072.0 ^421650432.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33468418.0 ^-998881728.0 ^33394132.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15481553.0 ^-999761472.0 ^15407470.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^22586218.0 ^-999744832.0 ^-59864.79 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^50170208.0 ^-998740672.0 ^-64532.84 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7361405.0 ^-999946368.0 ^7279127.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^9024574.0 ^-999959232.0 ^-61198.23 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7361401.0 ^-999945792.0 ^-7360768.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15481541.0 ^-999760640.0 ^-15460005.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33468370.0 ^-998880320.0 ^-33435486.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64789168.0 ^-995795712.0 ^-64754888.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286372928.0 ^-914338176.0 ^-286314976.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421793184.0 ^-802643264.0 ^-421727968.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186255424.0 ^-964695104.0 ^-186204992.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113763360.0 ^-986978112.0 ^-113719888.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999946176.0 ^-7354613.5 ^-7317114.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999959744.0 ^-8970276.0 ^4368.46 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999761792.0 ^-15392139.0 ^-15476352.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999749952.0 ^-22364380.0 ^-57403.15 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7321403.0 ^-7355417.0 ^-999946176.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15453339.0 ^-15393970.0 ^-999762048.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^28947.59 ^-8971312.0 ^-999959680.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^26802.9 ^-22367296.0 ^-999749760.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286164256.0 ^-285984576.0 ^-914506880.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186115472.0 ^-185959248.0 ^-964769408.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46195.48 ^-277562848.0 ^-960707456.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52804.56 ^-424493920.0 ^-905430848.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421561280.0 ^-421295008.0 ^-802992192.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113675600.0 ^-113541032.0 ^-987008832.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64737536.0 ^-64621156.0 ^-995807680.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34556.7 ^-96725720.0 ^-995311040.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39906.23 ^-169863904.0 ^-985467520.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33435502.0 ^-33330958.0 ^-998884928.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30191.23 ^-49855516.0 ^-998756480.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-987028032.0 ^-113524592.0 ^113524768.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-985473024.0 ^-169831760.0 ^-116321.95 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-960725248.0 ^-277501248.0 ^-134636.77 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-964811904.0 ^-185929600.0 ^185925328.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995816256.0 ^-64612316.0 ^64615792.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995312640.0 ^-96709296.0 ^-100738.94 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-577577088.0 ^-577073536.0 ^577400000.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-421559872.0 ^-421293312.0 ^802993920.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-803128064.0 ^-421260800.0 ^421336672.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-914591488.0 ^-285939008.0 ^285939296.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-905479168.0 ^-424390560.0 ^-153878.09 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998888640.0 ^-33326768.0 ^33329808.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999763200.0 ^-15392154.0 ^15381829.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998756736.0 ^-49848004.0 ^-88020.3 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-999946176.0 ^-7354610.0 ^7316454.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-7321460.0 ^-7355148.5 ^999946112.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-15453109.0 ^-15393414.0 ^999762112.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^29394.82 ^-22365884.0 ^999749824.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^31293.98 ^-8968541.0 ^999959744.0 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-286151200.0 ^-285971232.0 ^914515136.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^52798.27 ^-424443072.0 ^905454656.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^46190.58 ^-277533088.0 ^960716160.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-186108464.0 ^-185951952.0 ^964772224.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-113671816.0 ^-113536928.0 ^987009664.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^39902.63 ^-169848272.0 ^985470144.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^34553.97 ^-96717752.0 ^995311808.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-64735880.0 ^-64619184.0 ^995808000.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-33431732.0 ^-33329784.0 ^998885120.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^30189.14 ^-49851740.0 ^998756672.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-998884096.0 ^-33326630.0 ^-33467744.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-995806336.0 ^-64611696.0 ^-64769916.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-914526272.0 ^-285918752.0 ^-286167904.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-803048896.0 ^-421219392.0 ^-421529024.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-964772160.0 ^-185922000.0 ^-186138768.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-577539648.0 ^-577036352.0 ^-577474688.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^-987007104.0 ^-113522232.0 ^-113708992.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999946112.0 ^-7354932.0 ^7316774.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999959808.0 ^-8968337.0 ^2022.05 0.00000000051 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999763136.0 ^-15392888.0 ^15382562.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999749760.0 ^-22365378.0 ^-57405.71 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998888512.0 ^-33328552.0 ^33331592.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995816256.0 ^-64616284.0 ^64613076.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995312064.0 ^-96715200.0 ^-100745.09 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998756736.0 ^-49850672.0 ^-88025.01 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^987027200.0 ^-113527888.0 ^113528056.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^964805568.0 ^-185945984.0 ^185941712.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^960719552.0 ^-277521440.0 ^-134648.72 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^985471232.0 ^-169842304.0 ^-116329.16 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^914575616.0 ^-285961760.0 ^285967168.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^803100480.0 ^-421284288.0 ^421365952.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^905460608.0 ^-424430560.0 ^-153892.59 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999946112.0 ^-7354935.0 ^-7317434.5 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^999761728.0 ^-15392873.0 ^-15477090.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^998883840.0 ^-33328406.0 ^-33469528.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^995805760.0 ^-64615636.0 ^-64773864.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^987005888.0 ^-113525464.0 ^-113716120.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^964765760.0 ^-185938384.0 ^-186155168.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^914510464.0 ^-285941472.0 ^-286195776.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^803021248.0 ^-421242848.0 ^-421558272.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^577577856.0 ^-577070144.0 ^577402816.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421593696.0 ^-421288352.0 ^802978624.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7358936.5 ^-7355164.0 ^999945792.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15475746.0 ^-15393450.0 ^999761792.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286187520.0 ^-285967968.0 ^914504768.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186142528.0 ^-185951568.0 ^964765760.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113701944.0 ^-113537408.0 ^987006144.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64761436.0 ^-64619080.0 ^995806400.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33454112.0 ^-33329758.0 ^998884352.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^33454966.0 ^-33330936.0 ^-998884288.0 0.00000000041 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^15475935.0 ^-15393965.0 ^-999761792.0 0.00000000046 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^64759760.0 ^-64621068.0 ^-995806336.0 0.00000000036 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^113704864.0 ^-113540640.0 ^-987005440.0 0.00000000031 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^186148736.0 ^-185958080.0 ^-964763264.0 0.00000000027 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^286200608.0 ^-285981344.0 ^-914496512.0 0.00000000023 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^421595200.0 ^-421290144.0 ^-802977088.0 0.00000000021 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^7358896.0 ^-7355449.5 ^-999945792.0 0.00000000050 0 force @a[distance=..64,tag=ShowParticles] +particle end_rod ^0.0 ^-0.0 ^0.0 ^577540416.0 ^-577032896.0 ^-577477504.0 0.00000000020 0 force @a[distance=..64,tag=ShowParticles] diff --git a/data/makeup/function/ai/skill/heal/.mcfunction b/data/makeup/function/ai/skill/heal/.mcfunction new file mode 100644 index 000000000..9fe998fd3 --- /dev/null +++ b/data/makeup/function/ai/skill/heal/.mcfunction @@ -0,0 +1,7 @@ +#> makeup:ai/skill/heal/ +playsound entity.player.levelup hostile @a[distance=..32] ~ ~ ~ 1.0 1.8 +playsound minecraft:block.brewing_stand.brew hostile @a[distance=..32] ~ ~ ~ 1 1 +playsound minecraft:entity.guardian.death_land hostile @a[distance=..32] ~ ~ ~ 1 1.2 +summon area_effect_cloud ~ ~0.5 ~ {Tags:[Initializing],Duration:8,Radius:0f,RadiusPerTick:1f,Particle:{type:"entity_effect",color:589683}} +execute as @e[tag=Initializing,limit=1] store result entity @s RadiusPerTick float 0.00125 run scoreboard players get # _ +tag @e[tag=Initializing] remove Initializing diff --git a/data/makeup/function/ai/skill/heal/get_heal.mcfunction b/data/makeup/function/ai/skill/heal/get_heal.mcfunction new file mode 100644 index 000000000..16f9e7772 --- /dev/null +++ b/data/makeup/function/ai/skill/heal/get_heal.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/heal/get_heal +particle minecraft:happy_villager ~ ~1 ~ 0.3 0.5 0.3 1 15 force diff --git a/data/makeup/function/ai/skill/icicle_magic/icicle.mcfunction b/data/makeup/function/ai/skill/icicle_magic/icicle.mcfunction new file mode 100644 index 000000000..9b4efac32 --- /dev/null +++ b/data/makeup/function/ai/skill/icicle_magic/icicle.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/icicle_magic/icicle +particle minecraft:dust{color:[1,1,1],scale:0.5} ~ ~ ~ 0.2 0.2 0.2 0 4 normal diff --git a/data/makeup/function/ai/skill/icicle_magic/icicle_fall.mcfunction b/data/makeup/function/ai/skill/icicle_magic/icicle_fall.mcfunction new file mode 100644 index 000000000..089f60efb --- /dev/null +++ b/data/makeup/function/ai/skill/icicle_magic/icicle_fall.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/icicle_magic/icicle_fall +playsound block.chain.break hostile @a[distance=..16] ~ ~ ~ 2.0 1.9 +playsound minecraft:block.glass.break hostile @a[distance=..16] ~ ~ ~ 2 1.5 +execute align y run particle minecraft:block{block_state:{Name:"minecraft:blue_ice"}} ~ ~1.3 ~ 0.2 0.2 0.2 0 40 normal diff --git a/data/makeup/function/ai/skill/laser/loop/blue_laser/spark.mcfunction b/data/makeup/function/ai/skill/laser/loop/blue_laser/spark.mcfunction new file mode 100644 index 000000000..a362fad54 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/blue_laser/spark.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/blue_laser/spark +particle dust{color:[0,0,100000000],scale:0.3} ^ ^ ^ 0.05 0.05 0.05 1 7 force +particle dust{color:[0,0,100000000],scale:0.2} ^ ^ ^ 0.15 0.15 0.15 1 14 force +particle dust{color:[0,0,100000000],scale:0.1} ^ ^ ^ 0.35 0.35 0.35 1 14 force diff --git a/data/makeup/function/ai/skill/laser/loop/blue_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/blue_laser/trail.mcfunction new file mode 100644 index 000000000..79c1d40e2 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/blue_laser/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/blue_laser/trail +particle dust{color:[0,0,100000000],scale:0.3} ^ ^ ^ 0 0 0 1 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/frozenlazer/ice_effect.mcfunction b/data/makeup/function/ai/skill/laser/loop/frozenlazer/ice_effect.mcfunction new file mode 100644 index 000000000..3ca5de51d --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/frozenlazer/ice_effect.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/frozenlazer/ice_effect +##プレイヤーが撃たれた時のの演出 +#爆発のような演出 +particle dust{color:[0.8,0.8,1.0],scale:4} ^ ^ ^ 1.5 1.5 1.5 0.1 30 force diff --git a/data/makeup/function/ai/skill/laser/loop/frozenlazer/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/frozenlazer/trail.mcfunction new file mode 100644 index 000000000..5affb2a2e --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/frozenlazer/trail.mcfunction @@ -0,0 +1,5 @@ +#> makeup:ai/skill/laser/loop/frozenlazer/trail +particle falling_dust{block_state:{Name:"blue_ice"}} ^ ^ ^ 0 0 0 0 0 force +particle block{block_state:{Name:"ice"}} ^ ^ ^ 0 0 0 0 0 force +particle dust{color:[0.8,0.8,1.0],scale:2} ^ ^ ^ 0 0 0 0 0 force +particle item_snowball ^ ^ ^ 0 0 0 0 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/green_laser/spark.mcfunction b/data/makeup/function/ai/skill/laser/loop/green_laser/spark.mcfunction new file mode 100644 index 000000000..489cd69df --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/green_laser/spark.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/green_laser/spark +particle dust{color:[0,100000000,0],scale:0.3} ^ ^ ^ 0.05 0.05 0.05 1 7 force +particle dust{color:[0,100000000,0],scale:0.2} ^ ^ ^ 0.15 0.15 0.15 1 14 force +particle dust{color:[0,100000000,0],scale:0.1} ^ ^ ^ 0.35 0.35 0.35 1 14 force diff --git a/data/makeup/function/ai/skill/laser/loop/green_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/green_laser/trail.mcfunction new file mode 100644 index 000000000..36a8cf063 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/green_laser/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/green_laser/trail +particle dust{color:[0,100000000,0],scale:0.3} ^ ^ ^ 0 0 0 1 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/1.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/1.mcfunction new file mode 100644 index 000000000..dafa57cd8 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/1.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/1 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/2.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/2.mcfunction new file mode 100644 index 000000000..b866b6125 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/2.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/2 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/3.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/3.mcfunction new file mode 100644 index 000000000..1cdc28bc0 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/3.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/3 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/4.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/4.mcfunction new file mode 100644 index 000000000..898918dd9 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/4.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/4 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/5.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/5.mcfunction new file mode 100644 index 000000000..14698c995 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/5.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/5 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/6.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/6.mcfunction new file mode 100644 index 000000000..4bdc7a2d4 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/6.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/6 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/7.mcfunction b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/7.mcfunction new file mode 100644 index 000000000..a4fbbbcc6 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/kame_hame_ha/7.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/kame_hame_ha/7 +particle end_rod ~ ~ ~ 0.01 0.01 0.01 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/lightning_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/lightning_laser/trail.mcfunction new file mode 100644 index 000000000..b6cca12e8 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/lightning_laser/trail.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/lightning_laser/trail +particle wax_off ^ ^ ^ 0 0 0 0 0 force +particle dust{color:[100000000,100000000,2],scale:2} ^ ^ ^ 0 0 0 0 0 force +particle scrape ^ ^ ^ 0 0 0 0 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/piglin_snipe/firework.mcfunction b/data/makeup/function/ai/skill/laser/loop/piglin_snipe/firework.mcfunction new file mode 100644 index 000000000..8e2db8b0f --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/piglin_snipe/firework.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/piglin_snipe/firework +summon minecraft:firework_rocket ~ ~ ~ {LifeTime:1,ShotAtAngle:1b,FireworksItem:{id:"firework_rocket",count:1,components:{"fireworks":{explosions:[{shape:"burst",has_trail:1b,colors:[I;2959103],fade_colors:[I;16726843]}]}}}} diff --git a/data/makeup/function/ai/skill/laser/loop/piglin_snipe/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/piglin_snipe/trail.mcfunction new file mode 100644 index 000000000..d90d4065d --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/piglin_snipe/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/piglin_snipe/trail +particle firework ^ ^ ^ 0 0 0 0 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/red_laser/spark.mcfunction b/data/makeup/function/ai/skill/laser/loop/red_laser/spark.mcfunction new file mode 100644 index 000000000..d13a18233 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/red_laser/spark.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/red_laser/spark +particle dust{color:[100000000,0,0],scale:0.3} ^ ^ ^ 0.05 0.05 0.05 1 7 force +particle dust{color:[100000000,0,0],scale:0.2} ^ ^ ^ 0.15 0.15 0.15 1 14 force +particle dust{color:[100000000,0,0],scale:0.1} ^ ^ ^ 0.35 0.35 0.35 1 14 force diff --git a/data/makeup/function/ai/skill/laser/loop/red_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/red_laser/trail.mcfunction new file mode 100644 index 000000000..48d72104f --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/red_laser/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/red_laser/trail +particle dust{color:[100000000,0,0],scale:0.3} ^ ^ ^ 0 0 0 1 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/security_laser/dual/.mcfunction b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/.mcfunction new file mode 100644 index 000000000..0e331ddc2 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/.mcfunction @@ -0,0 +1,5 @@ +#> makeup:ai/skill/laser/loop/security_laser/dual/ +#particle minecraft:flame ^ ^ ^ ^ ^ ^100000000000 0.000000000005 0 force +#particle minecraft:firework ^ ^ ^ ^ ^ ^100000000000 0.000000000005 0 force +particle minecraft:dust{color:[0.99,0.98,0.35],scale:0.2} ^ ^ ^ 0.1 0.05 0.1 0 2 force +particle minecraft:soul_fire_flame ^ ^ ^ 0 0 0 0 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral1.mcfunction b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral1.mcfunction new file mode 100644 index 000000000..64999fb67 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral1.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/security_laser/dual/spiral1 +# Collection--NURBSカーブ.001 +particle flame ^-0.0 ^-0.3 ^-0.0 0.0 0.0 0.0 0.0 1 normal +particle flame ^-0.26 ^-0.15 ^0.08 0.0 0.0 0.0 0.0 1 normal diff --git a/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral2.mcfunction b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral2.mcfunction new file mode 100644 index 000000000..36d043191 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral2.mcfunction @@ -0,0 +1,4 @@ + +#> makeup:ai/skill/laser/loop/security_laser/dual/spiral2 +particle flame ^-0.26 ^0.15 ^0.17 0.0 0.0 0.0 0.0 1 normal +particle flame ^0.0 ^0.3 ^0.25 0.0 0.0 0.0 0.0 1 normal diff --git a/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral3.mcfunction b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral3.mcfunction new file mode 100644 index 000000000..eed595b3a --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/security_laser/dual/spiral3.mcfunction @@ -0,0 +1,3 @@ +#> makeup:ai/skill/laser/loop/security_laser/dual/spiral3 +particle flame ^0.26 ^0.15 ^0.33 0.0 0.0 0.0 0.0 1 normal +particle flame ^0.26 ^-0.15 ^0.42 0.0 0.0 0.0 0.0 1 normal diff --git a/data/makeup/function/ai/skill/laser/loop/security_laser/single/.mcfunction b/data/makeup/function/ai/skill/laser/loop/security_laser/single/.mcfunction new file mode 100644 index 000000000..22a8ee248 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/security_laser/single/.mcfunction @@ -0,0 +1,5 @@ +#> makeup:ai/skill/laser/loop/security_laser/single/ +#particle minecraft:flame ^ ^ ^ ^ ^ ^100000000000 0.000000000005 0 force +#particle minecraft:firework ^ ^ ^ ^ ^ ^100000000000 0.000000000005 0 force +particle minecraft:dust{color:[0.99,0.98,0.35],scale:0.6} ^ ^ ^ 0.1 0.05 0.1 0 10 force +particle minecraft:soul_fire_flame ^ ^ ^ 0 0 0 0.02 1 force diff --git a/data/makeup/function/ai/skill/laser/loop/test.mcfunction b/data/makeup/function/ai/skill/laser/loop/test.mcfunction new file mode 100644 index 000000000..5109eb237 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/test.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/test +particle flame ^ ^ ^ 0 0 0 0 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/violet_laser/spark.mcfunction b/data/makeup/function/ai/skill/laser/loop/violet_laser/spark.mcfunction new file mode 100644 index 000000000..97bdda0fe --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/violet_laser/spark.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/violet_laser/spark +particle dust{color:[100000000,0,100000000],scale:0.3} ^ ^ ^ 0.05 0.05 0.05 1 7 force +particle dust{color:[100000000,0,100000000],scale:0.2} ^ ^ ^ 0.15 0.15 0.15 1 14 force +particle dust{color:[100000000,0,100000000],scale:0.1} ^ ^ ^ 0.35 0.35 0.35 1 14 force diff --git a/data/makeup/function/ai/skill/laser/loop/violet_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/violet_laser/trail.mcfunction new file mode 100644 index 000000000..606c1e7a3 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/violet_laser/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/violet_laser/trail +particle dust{color:[100000000,0,100000000],scale:0.3} ^ ^ ^ 0 0 0 1 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/white_laser/spark.mcfunction b/data/makeup/function/ai/skill/laser/loop/white_laser/spark.mcfunction new file mode 100644 index 000000000..46f0f2f13 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/white_laser/spark.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/white_laser/spark +particle dust{color:[100000000,100000000,100000000],scale:0.3} ^ ^ ^ 0.05 0.05 0.05 1 7 force +particle dust{color:[100000000,100000000,100000000],scale:0.2} ^ ^ ^ 0.15 0.15 0.15 1 14 force +particle dust{color:[100000000,100000000,100000000],scale:0.1} ^ ^ ^ 0.35 0.35 0.35 1 14 force diff --git a/data/makeup/function/ai/skill/laser/loop/white_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/white_laser/trail.mcfunction new file mode 100644 index 000000000..8b9778e68 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/white_laser/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/white_laser/trail +particle dust{color:[100000000,100000000,100000000],scale:0.3} ^ ^ ^ 0 0 0 1 0 force diff --git a/data/makeup/function/ai/skill/laser/loop/yellow_laser/spark.mcfunction b/data/makeup/function/ai/skill/laser/loop/yellow_laser/spark.mcfunction new file mode 100644 index 000000000..d1842b926 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/yellow_laser/spark.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/laser/loop/yellow_laser/spark +particle dust{color:[100000000,100000000,0],scale:0.3} ^ ^ ^ 0.05 0.05 0.05 1 7 force +particle dust{color:[100000000,100000000,0],scale:0.2} ^ ^ ^ 0.15 0.15 0.15 1 14 force +particle dust{color:[100000000,100000000,0],scale:0.1} ^ ^ ^ 0.35 0.35 0.35 1 14 force diff --git a/data/makeup/function/ai/skill/laser/loop/yellow_laser/trail.mcfunction b/data/makeup/function/ai/skill/laser/loop/yellow_laser/trail.mcfunction new file mode 100644 index 000000000..05281df71 --- /dev/null +++ b/data/makeup/function/ai/skill/laser/loop/yellow_laser/trail.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/laser/loop/yellow_laser/trail +particle dust{color:[100000000,100000000,0],scale:0.3} ^ ^ ^ 0 0 0 1 0 force diff --git a/data/makeup/function/ai/skill/reraise/.mcfunction b/data/makeup/function/ai/skill/reraise/.mcfunction new file mode 100644 index 000000000..8284f9509 --- /dev/null +++ b/data/makeup/function/ai/skill/reraise/.mcfunction @@ -0,0 +1 @@ +#> makeup:ai/skill/reraise/ diff --git a/data/makeup/function/ai/skill/reraise/death_cancel.mcfunction b/data/makeup/function/ai/skill/reraise/death_cancel.mcfunction new file mode 100644 index 000000000..5c301db6d --- /dev/null +++ b/data/makeup/function/ai/skill/reraise/death_cancel.mcfunction @@ -0,0 +1,4 @@ +#> makeup:ai/skill/reraise/death_cancel +### 演出 ### +playsound item.totem.use hostile @a ~ ~ ~ 1.0 1.0 +particle totem_of_undying ~ ~1 ~ 0.2 0.2 0.2 0.2 100 normal diff --git a/data/makeup/function/ai/skill/teleport.mcfunction b/data/makeup/function/ai/skill/teleport.mcfunction new file mode 100644 index 000000000..c31c95d8f --- /dev/null +++ b/data/makeup/function/ai/skill/teleport.mcfunction @@ -0,0 +1,2 @@ +#> makeup:ai/skill/reraise/death_cancel +tellraw @a[distance=..32] {"translate":"* %s はテレポートした!","with":[{"selector":"@s"}]} diff --git a/data/makeup/function/ai/skill/wind_with_smell.mcfunction b/data/makeup/function/ai/skill/wind_with_smell.mcfunction new file mode 100644 index 000000000..dec81d2ea --- /dev/null +++ b/data/makeup/function/ai/skill/wind_with_smell.mcfunction @@ -0,0 +1,906 @@ +# Sample_01--Circle +particle sneeze ^-0.0 ^0.0 ^0.0 ^5.21 ^0.0 ^1000000000.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^24541234.0 ^0.0 ^999698816.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^49067680.0 ^0.0 ^998795456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^73564576.0 ^0.0 ^997290432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^98017160.0 ^0.0 ^995184768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^122410688.0 ^0.0 ^992479552.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^146730464.0 ^0.0 ^989176576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^170961904.0 ^0.0 ^985277632.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^195090336.0 ^0.0 ^980785280.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^219101232.0 ^0.0 ^975702080.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^242980192.0 ^0.0 ^970031232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^266712784.0 ^0.0 ^963776128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^290284672.0 ^0.0 ^956940352.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^313681760.0 ^0.0 ^949528192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^336889856.0 ^0.0 ^941544128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^359895040.0 ^0.0 ^932992832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^382683456.0 ^0.0 ^923879488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^405241344.0 ^0.0 ^914209728.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^427555072.0 ^0.0 ^903989312.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^449611328.0 ^0.0 ^893224320.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^471396768.0 ^0.0 ^881921216.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^492898240.0 ^0.0 ^870086976.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^514102752.0 ^0.0 ^857728576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^534997568.0 ^0.0 ^844853504.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^555570304.0 ^0.0 ^831469568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^575808256.0 ^0.0 ^817584832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^595699328.0 ^0.0 ^803207488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^615231616.0 ^0.0 ^788346432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^634393344.0 ^0.0 ^773010432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^653172928.0 ^0.0 ^757208832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^671559040.0 ^0.0 ^740951104.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^689540480.0 ^0.0 ^724247040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^707106752.0 ^0.0 ^707106752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^724247040.0 ^0.0 ^689540480.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^740951104.0 ^0.0 ^671559040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^757208832.0 ^0.0 ^653172928.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^773010432.0 ^0.0 ^634393344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^788346432.0 ^0.0 ^615231616.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^803207488.0 ^0.0 ^595699328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^817584832.0 ^0.0 ^575808256.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^831469568.0 ^0.0 ^555570304.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^844853504.0 ^0.0 ^534997568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^857728576.0 ^0.0 ^514102752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^870086976.0 ^0.0 ^492898240.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^881921216.0 ^0.0 ^471396768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^893224320.0 ^0.0 ^449611328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^903989312.0 ^0.0 ^427555072.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^914209728.0 ^0.0 ^405241344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^923879488.0 ^0.0 ^382683456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^932992832.0 ^0.0 ^359895040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^941544128.0 ^0.0 ^336889856.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^949528192.0 ^0.0 ^313681760.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^956940352.0 ^0.0 ^290284672.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^963776128.0 ^0.0 ^266712784.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^970031232.0 ^0.0 ^242980192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^975702080.0 ^0.0 ^219101232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^980785280.0 ^0.0 ^195090336.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^985277632.0 ^0.0 ^170961904.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^989176576.0 ^0.0 ^146730464.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^992479552.0 ^0.0 ^122410672.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^995184768.0 ^0.0 ^98017136.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^997290432.0 ^0.0 ^73564560.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^998795456.0 ^0.0 ^49067668.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^999698816.0 ^0.0 ^24541220.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^1000000000.0 ^0.0 ^-6.98 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^999698816.0 ^0.0 ^-24541236.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^998795456.0 ^0.0 ^-49067684.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^997290432.0 ^0.0 ^-73564576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^995184768.0 ^0.0 ^-98017160.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^992479552.0 ^0.0 ^-122410688.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^989176576.0 ^0.0 ^-146730464.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^985277632.0 ^0.0 ^-170961904.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^980785280.0 ^0.0 ^-195090336.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^975702080.0 ^0.0 ^-219101232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^970031232.0 ^0.0 ^-242980192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^963776128.0 ^0.0 ^-266712784.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^956940352.0 ^0.0 ^-290284672.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^949528192.0 ^0.0 ^-313681760.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^941544128.0 ^0.0 ^-336889856.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^932992832.0 ^0.0 ^-359895040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^923879488.0 ^0.0 ^-382683456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^914209728.0 ^0.0 ^-405241344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^903989312.0 ^0.0 ^-427555072.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^893224320.0 ^0.0 ^-449611328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^881921216.0 ^0.0 ^-471396768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^870086976.0 ^0.0 ^-492898240.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^857728576.0 ^0.0 ^-514102752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^844853504.0 ^0.0 ^-534997568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^831469568.0 ^0.0 ^-555570304.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^817584832.0 ^0.0 ^-575808256.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^803207488.0 ^0.0 ^-595699328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^788346432.0 ^0.0 ^-615231616.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^773010432.0 ^0.0 ^-634393344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^757208832.0 ^0.0 ^-653172928.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^740951104.0 ^0.0 ^-671559040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^724247040.0 ^0.0 ^-689540480.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^707106752.0 ^0.0 ^-707106752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^689540480.0 ^0.0 ^-724247040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^671559040.0 ^0.0 ^-740951104.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^653172928.0 ^0.0 ^-757208832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^634393344.0 ^0.0 ^-773010432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^615231616.0 ^0.0 ^-788346432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^595699328.0 ^0.0 ^-803207488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^575808256.0 ^0.0 ^-817584832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^555570304.0 ^0.0 ^-831469568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^534997568.0 ^0.0 ^-844853504.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^514102752.0 ^0.0 ^-857728576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^492898240.0 ^0.0 ^-870086976.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^471396768.0 ^0.0 ^-881921216.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^449611328.0 ^0.0 ^-893224320.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^427555072.0 ^0.0 ^-903989312.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^405241344.0 ^0.0 ^-914209728.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^382683456.0 ^0.0 ^-923879488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^359895040.0 ^0.0 ^-932992832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^336889856.0 ^0.0 ^-941544128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^313681760.0 ^0.0 ^-949528192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^290284672.0 ^0.0 ^-956940352.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^266712784.0 ^0.0 ^-963776128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^242980192.0 ^0.0 ^-970031232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^219101232.0 ^0.0 ^-975702080.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^195090336.0 ^0.0 ^-980785280.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^170961904.0 ^0.0 ^-985277632.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^146730464.0 ^0.0 ^-989176576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^122410688.0 ^0.0 ^-992479552.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^98017160.0 ^0.0 ^-995184768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^73564576.0 ^0.0 ^-997290432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^49067680.0 ^0.0 ^-998795456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^24541234.0 ^0.0 ^-999698816.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^5.21 ^0.0 ^-1000000000.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-24541222.0 ^0.0 ^-999698816.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-49067672.0 ^0.0 ^-998795456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-73564560.0 ^0.0 ^-997290432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-98017136.0 ^0.0 ^-995184768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-122410672.0 ^0.0 ^-992479552.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-146730464.0 ^0.0 ^-989176576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-170961904.0 ^0.0 ^-985277632.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-195090336.0 ^0.0 ^-980785280.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-219101232.0 ^0.0 ^-975702080.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-242980192.0 ^0.0 ^-970031232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-266712784.0 ^0.0 ^-963776128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-290284672.0 ^0.0 ^-956940352.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-313681760.0 ^0.0 ^-949528192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-336889856.0 ^0.0 ^-941544128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-359895040.0 ^0.0 ^-932992832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-382683456.0 ^0.0 ^-923879488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-405241344.0 ^0.0 ^-914209728.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-427555072.0 ^0.0 ^-903989312.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-449611328.0 ^0.0 ^-893224320.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-471396768.0 ^0.0 ^-881921216.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-492898240.0 ^0.0 ^-870086976.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-514102752.0 ^0.0 ^-857728576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-534997568.0 ^0.0 ^-844853504.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-555570304.0 ^0.0 ^-831469568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-575808256.0 ^0.0 ^-817584832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-595699328.0 ^0.0 ^-803207488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-615231616.0 ^0.0 ^-788346432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-634393344.0 ^0.0 ^-773010432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-653172928.0 ^0.0 ^-757208832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-671559040.0 ^0.0 ^-740951104.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-689540480.0 ^0.0 ^-724247040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-707106752.0 ^0.0 ^-707106752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-724247040.0 ^0.0 ^-689540480.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-740951104.0 ^0.0 ^-671559040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-757208832.0 ^0.0 ^-653172928.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-773010432.0 ^0.0 ^-634393344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-788346432.0 ^0.0 ^-615231616.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-803207488.0 ^0.0 ^-595699328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-817584832.0 ^0.0 ^-575808256.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-831469568.0 ^0.0 ^-555570304.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-844853504.0 ^0.0 ^-534997568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-857728576.0 ^0.0 ^-514102752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-870086976.0 ^0.0 ^-492898240.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-881921216.0 ^0.0 ^-471396768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-893224320.0 ^0.0 ^-449611328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-903989312.0 ^0.0 ^-427555072.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-914209728.0 ^0.0 ^-405241344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-923879488.0 ^0.0 ^-382683456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-932992832.0 ^0.0 ^-359895040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-941544128.0 ^0.0 ^-336889856.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-949528192.0 ^0.0 ^-313681760.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-956940352.0 ^0.0 ^-290284672.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-963776128.0 ^0.0 ^-266712784.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-970031232.0 ^0.0 ^-242980192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-975702080.0 ^0.0 ^-219101232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-980785280.0 ^0.0 ^-195090336.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-985277632.0 ^0.0 ^-170961904.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-989176576.0 ^0.0 ^-146730464.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-992479552.0 ^0.0 ^-122410688.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-995184768.0 ^0.0 ^-98017160.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-997290432.0 ^0.0 ^-73564576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-998795456.0 ^0.0 ^-49067684.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-999698816.0 ^0.0 ^-24541236.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-1000000000.0 ^0.0 ^-6.98 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-999698816.0 ^0.0 ^24541220.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-998795456.0 ^0.0 ^49067668.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-997290432.0 ^0.0 ^73564560.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-995184768.0 ^0.0 ^98017136.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-992479552.0 ^0.0 ^122410672.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-989176576.0 ^0.0 ^146730464.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-985277632.0 ^0.0 ^170961904.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-980785280.0 ^0.0 ^195090336.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-975702080.0 ^0.0 ^219101232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-970031232.0 ^0.0 ^242980192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-963776128.0 ^0.0 ^266712784.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-956940352.0 ^0.0 ^290284672.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-949528192.0 ^0.0 ^313681760.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-941544128.0 ^0.0 ^336889856.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-932992832.0 ^0.0 ^359895040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-923879488.0 ^0.0 ^382683456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-914209728.0 ^0.0 ^405241344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-903989312.0 ^0.0 ^427555072.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-893224320.0 ^0.0 ^449611328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-881921216.0 ^0.0 ^471396768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-870086976.0 ^0.0 ^492898240.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-857728576.0 ^0.0 ^514102752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-844853504.0 ^0.0 ^534997568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-831469568.0 ^0.0 ^555570304.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-817584832.0 ^0.0 ^575808256.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-803207488.0 ^0.0 ^595699328.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-788346432.0 ^0.0 ^615231616.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-773010432.0 ^0.0 ^634393344.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-757208832.0 ^0.0 ^653172928.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-740951104.0 ^0.0 ^671559040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-724247040.0 ^0.0 ^689540480.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-707106752.0 ^0.0 ^707106752.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-689540480.0 ^0.0 ^724247040.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-671559040.0 ^0.0 ^740951104.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-653172928.0 ^0.0 ^757208832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-634393344.0 ^0.0 ^773010432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-615231616.0 ^0.0 ^788346432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-595699328.0 ^0.0 ^803207488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-575808256.0 ^0.0 ^817584832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-555570304.0 ^0.0 ^831469568.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-534997568.0 ^0.0 ^844853504.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-514102752.0 ^0.0 ^857728576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-492898240.0 ^0.0 ^870086976.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-471396768.0 ^0.0 ^881921216.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-449611328.0 ^0.0 ^893224320.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-427555072.0 ^0.0 ^903989312.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-405241344.0 ^0.0 ^914209728.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-382683456.0 ^0.0 ^923879488.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-359895040.0 ^0.0 ^932992832.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-336889856.0 ^0.0 ^941544128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-313681760.0 ^0.0 ^949528192.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-290284672.0 ^0.0 ^956940352.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-266712784.0 ^0.0 ^963776128.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-242980192.0 ^0.0 ^970031232.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-219101232.0 ^0.0 ^975702080.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-195090336.0 ^0.0 ^980785280.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-170961904.0 ^0.0 ^985277632.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-146730464.0 ^0.0 ^989176576.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-122410672.0 ^0.0 ^992479552.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-98017136.0 ^0.0 ^995184768.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-73564560.0 ^0.0 ^997290432.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-49067672.0 ^0.0 ^998795456.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^0.0 ^-24541222.0 ^0.0 ^999698816.0 0.00000000288 0 force @a[distance=..64,tag=ShowParticles] +# Sample_01--Icosphere +particle sneeze ^-0.0 ^0.0 ^-0.0 ^27.59 ^-1000000000.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-723607360.0 ^-447219616.0 ^-525725312.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^276388064.0 ^-447219904.0 ^-850649088.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^894426112.0 ^-447215584.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^276388032.0 ^-447219840.0 ^850649152.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-723607296.0 ^-447219552.0 ^525725376.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-276388032.0 ^447219872.0 ^-850649216.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^723607360.0 ^447219552.0 ^-525725312.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^723607296.0 ^447219488.0 ^525725376.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-276387968.0 ^447219776.0 ^850649152.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-894426240.0 ^447215584.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^27.59 ^1000000000.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^232821584.0 ^-657519296.0 ^-716563136.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^162455584.0 ^-850654400.0 ^-499995200.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^77606680.0 ^-967949696.0 ^-238852672.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-203180896.0 ^-967949632.0 ^-147617808.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-425322656.0 ^-850654208.0 ^-309011328.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-609546688.0 ^-657518848.0 ^-442856384.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-531940928.0 ^-502301760.0 ^-681712384.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-262868784.0 ^-525737696.0 ^-809011712.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^29639302.0 ^-502301920.0 ^-864184128.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-812729152.0 ^-502300608.0 ^295237760.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-850647872.0 ^-525735904.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-812729152.0 ^-502300608.0 ^-295237696.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-203180896.0 ^-967949632.0 ^147617904.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-425322656.0 ^-850654208.0 ^309011392.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-609546688.0 ^-657518848.0 ^442856448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^753441664.0 ^-657514752.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^525729760.0 ^-850651648.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^251147024.0 ^-967948992.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^483971488.0 ^-502301696.0 ^-716564480.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^688189376.0 ^-525736224.0 ^-499996864.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^831050624.0 ^-502298656.0 ^-238853328.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^232821536.0 ^-657519104.0 ^716563072.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^162455584.0 ^-850654400.0 ^499995264.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^77606680.0 ^-967949696.0 ^238852768.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^831050496.0 ^-502298592.0 ^238853440.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^688189312.0 ^-525736160.0 ^499996896.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^483971424.0 ^-502301632.0 ^716564544.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^29639298.0 ^-502301856.0 ^864184192.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-262868784.0 ^-525737632.0 ^809011776.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-531940832.0 ^-502301632.0 ^681712448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-956625728.0 ^251149392.0 ^-147618288.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-951057984.0 ^-33.71 ^-309012608.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-860697600.0 ^-251150880.0 ^-442857504.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-860697600.0 ^-251150880.0 ^442857568.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-951057984.0 ^1.33 ^309012672.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-956625728.0 ^251149392.0 ^147618400.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-155215072.0 ^251151504.0 ^-955422016.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^27.59 ^-33.71 ^-999999936.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^155215152.0 ^-251151568.0 ^-955422016.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-687158656.0 ^-251151984.0 ^-681715328.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-587785664.0 ^1.33 ^-809016768.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-436006848.0 ^251152032.0 ^-864187968.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^860697728.0 ^251150848.0 ^-442857536.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^951057984.0 ^-33.71 ^-309012608.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^956625728.0 ^-251149440.0 ^-147618288.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^436006848.0 ^-251152064.0 ^-864187840.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^587785664.0 ^1.33 ^-809016768.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^687158592.0 ^251151888.0 ^-681715328.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^687158592.0 ^251151888.0 ^681715392.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^587785536.0 ^-33.71 ^809016704.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^436006816.0 ^-251152032.0 ^864187904.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^956625728.0 ^-251149440.0 ^147618400.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^951057984.0 ^1.33 ^309012672.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^860697600.0 ^251150816.0 ^442857568.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-436006720.0 ^251151984.0 ^864187904.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-587785536.0 ^-33.71 ^809016704.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-687158528.0 ^-251151920.0 ^681715392.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^155215136.0 ^-251151536.0 ^955422016.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^27.59 ^1.33 ^1000000000.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-155215056.0 ^251151472.0 ^955422016.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-831050624.0 ^502298656.0 ^-238853344.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-688189312.0 ^525736160.0 ^-499996832.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-483971392.0 ^502301696.0 ^-716564480.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-29639246.0 ^502301920.0 ^-864184128.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^262868880.0 ^525737696.0 ^-809011712.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^531940928.0 ^502301760.0 ^-681712448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^812729152.0 ^502300608.0 ^-295237696.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^850647872.0 ^525735904.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^812729152.0 ^502300608.0 ^295237760.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^531940864.0 ^502301696.0 ^681712448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^262868816.0 ^525737568.0 ^809011648.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-29639242.0 ^502301856.0 ^864184192.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-483971360.0 ^502301632.0 ^716564544.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-688189312.0 ^525736160.0 ^499996864.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-831050624.0 ^502298656.0 ^238853440.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-77606608.0 ^967949696.0 ^-238852672.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-162455536.0 ^850654400.0 ^-499995232.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-232821520.0 ^657519296.0 ^-716563136.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-753441664.0 ^657514752.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-525729760.0 ^850651648.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-251146976.0 ^967948992.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^203180960.0 ^967949632.0 ^-147617808.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^425322720.0 ^850654208.0 ^-309011328.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^609546688.0 ^657518848.0 ^-442856384.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^203180960.0 ^967949632.0 ^147617904.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^425322720.0 ^850654208.0 ^309011392.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^609546688.0 ^657518848.0 ^442856448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-77606608.0 ^967949696.0 ^238852768.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-162455536.0 ^850654400.0 ^499995296.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-232821472.0 ^657519104.0 ^716563072.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-361800288.0 ^894429184.0 ^262862976.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-638193536.0 ^723609984.0 ^262864144.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-447209184.0 ^723611648.0 ^525728288.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^138197280.0 ^894429888.0 ^425319456.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^52789592.0 ^723612288.0 ^688184896.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^361803680.0 ^723612160.0 ^587778432.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^447209888.0 ^894428992.0 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^670816576.0 ^723610880.0 ^162457072.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^670816640.0 ^723610944.0 ^-162456992.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^138197312.0 ^894429952.0 ^-425319424.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^361803712.0 ^723612224.0 ^-587778304.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^52789600.0 ^723612352.0 ^-688184832.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-361800288.0 ^894429184.0 ^-262862928.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-447209216.0 ^723611712.0 ^-525728160.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-638193536.0 ^723609984.0 ^-262864048.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-861804096.0 ^276396160.0 ^425321952.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-809019200.0 ^-16.19 ^587782080.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-670820544.0 ^276397376.0 ^688189184.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^138198544.0 ^276397024.0 ^951055040.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^309016480.0 ^-508.16 ^951056576.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^447215008.0 ^276397184.0 ^850648704.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^947213248.0 ^276395872.0 ^162457696.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^1000000000.0 ^606.97 ^-318.1 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^947212928.0 ^276396544.0 ^-162457840.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^447215840.0 ^276396832.0 ^-850648384.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^309017248.0 ^-803.34 ^-951056448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^138199296.0 ^276396768.0 ^-951055168.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-670820416.0 ^276396160.0 ^-688189760.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-809018688.0 ^-1918.48 ^-587782848.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-861804096.0 ^276394400.0 ^-425323168.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-309017184.0 ^-16.19 ^951056512.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-447215488.0 ^-276397696.0 ^850648384.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-138199024.0 ^-276397536.0 ^951054848.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^809018304.0 ^-16.19 ^587783296.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^670818944.0 ^-276397280.0 ^688190656.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^861803136.0 ^-276396352.0 ^425323968.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^809018496.0 ^-16.19 ^-587783296.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^861803136.0 ^-276396320.0 ^-425323872.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^670819072.0 ^-276397312.0 ^-688190592.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-309017216.0 ^-16.19 ^-951056448.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-138199072.0 ^-276397600.0 ^-951054912.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-447215616.0 ^-276397760.0 ^-850648256.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-1000000000.0 ^-16.19 ^42.68 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-947213120.0 ^-276396032.0 ^-162457472.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-947213120.0 ^-276396032.0 ^162457600.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-361803456.0 ^-723611584.0 ^587779264.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-138196784.0 ^-894429120.0 ^425321376.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-52789068.0 ^-723610944.0 ^688186368.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^447210624.0 ^-723611456.0 ^525727168.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^361801248.0 ^-894428928.0 ^262862560.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^638194752.0 ^-723609472.0 ^262862864.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^638194560.0 ^-723609280.0 ^-262863664.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^361801344.0 ^-894428352.0 ^-262864320.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^447210560.0 ^-723610432.0 ^-525728576.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-670817024.0 ^-723610624.0 ^162456848.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-670817472.0 ^-723609920.0 ^-162457696.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-447210912.0 ^-894428480.0 ^-695.28 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-52790332.0 ^-723611840.0 ^-688185344.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-138198656.0 ^-894429120.0 ^-425320608.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-361804960.0 ^-723611072.0 ^-587779136.0 0.00000000283 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-70.31 ^-707106944.0 ^-707106688.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-139923856.0 ^308434176.0 ^-940898304.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^796935552.0 ^-29101674.0 ^-603362816.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^632454784.0 ^-763442304.0 ^130983904.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-406063936.0 ^-879750720.0 ^247286544.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-883411584.0 ^-217291008.0 ^-415172832.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^406063968.0 ^879750784.0 ^-247286560.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^883411584.0 ^217290944.0 ^415172896.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^139923760.0 ^-308434304.0 ^940898304.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-796935552.0 ^29101544.0 ^603362816.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-632454848.0 ^763442240.0 ^-130983920.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^48.97 ^707106816.0 ^707106816.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^671316224.0 ^-223065632.0 ^-706807104.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^468423360.0 ^-432733760.0 ^-770273344.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^223770432.0 ^-603820864.0 ^-765066752.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-39289100.0 ^-509044544.0 ^-859843072.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-82244624.0 ^-234336416.0 ^-968670336.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-117867928.0 ^61265396.0 ^-991137600.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^105904344.0 ^251645600.0 ^-962007616.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^386181184.0 ^164187440.0 ^-907692992.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^632028544.0 ^62091276.0 ^-772453632.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-783451008.0 ^-96434496.0 ^-613925824.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-601498944.0 ^53572424.0 ^-797075264.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-365921920.0 ^198803232.0 ^-909163584.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-248052288.0 ^-656662400.0 ^-712225152.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-519252704.0 ^-543347776.0 ^-659658880.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-744161408.0 ^-381590944.0 ^-548281024.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^532763712.0 ^-841654080.0 ^-88212264.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^371747008.0 ^-864366400.0 ^-338636640.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^177587680.0 ^-810016832.0 ^-558869632.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^848907008.0 ^-238884416.0 ^-471477472.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^840174528.0 ^-465847904.0 ^-277655424.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^756536320.0 ^-651277376.0 ^-59080152.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-342056896.0 ^-939628544.0 ^9756191.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-238676608.0 ^-932729024.0 ^-270277984.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-114018240.0 ^-842673536.0 ^-526213952.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^418746688.0 ^-890130752.0 ^179773312.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^133072184.0 ^-965844736.0 ^222341616.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-164468112.0 ^-955448896.0 ^245087184.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-590112320.0 ^-802092800.0 ^91730776.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-757933888.0 ^-644824064.0 ^-98681040.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-858182528.0 ^-430066752.0 ^-280294944.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-572054656.0 ^729711424.0 ^-374532544.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-453994656.0 ^630035200.0 ^-630035264.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-295457696.0 ^474187040.0 ^-829368128.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-921752832.0 ^31329524.0 ^-386510464.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-891004480.0 ^321022592.0 ^-321022592.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-780818496.0 ^582093120.0 ^-226914176.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^565831680.0 ^732909504.0 ^-377727776.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^707106688.0 ^499999904.0 ^-500000064.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^785338944.0 ^222512400.0 ^-577694464.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-3849116.5 ^506845664.0 ^-862028160.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^156433888.0 ^698401152.0 ^-698401280.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^302769696.0 ^827688640.0 ^-472506144.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^921752832.0 ^-31329594.0 ^386510464.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^891004480.0 ^-321022656.0 ^321022592.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^780818432.0 ^-582093184.0 ^226914160.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^919376448.0 ^36499136.0 ^-391681920.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^987688384.0 ^110615560.0 ^-110615672.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^967939968.0 ^174869584.0 ^180312720.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^3849031.75 ^-506845728.0 ^862028096.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-156433936.0 ^-698401216.0 ^698401216.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-302769728.0 ^-827688576.0 ^472506112.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^572054656.0 ^-729711488.0 ^374532512.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^453994592.0 ^-630035200.0 ^630035264.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^295457632.0 ^-474187104.0 ^829368128.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-919376448.0 ^-36499268.0 ^391681984.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-987688384.0 ^-110615632.0 ^110615696.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-967940032.0 ^-174869664.0 ^-180312656.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-565831680.0 ^-732909504.0 ^377727776.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-707106688.0 ^-500000064.0 ^500000192.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-785338944.0 ^-222512528.0 ^577694464.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-418746784.0 ^890130752.0 ^-179773264.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-133072216.0 ^965844736.0 ^-222341568.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^164468112.0 ^955448896.0 ^-245087152.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^590112448.0 ^802092864.0 ^-91730704.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^757934016.0 ^644824000.0 ^98681136.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^858182464.0 ^430066752.0 ^280295040.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^783451008.0 ^96434456.0 ^613925824.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^601498944.0 ^-53572468.0 ^797075264.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^365921856.0 ^-198803264.0 ^909163584.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-105904424.0 ^-251645648.0 ^962007616.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-386181216.0 ^-164187536.0 ^907692992.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-632028480.0 ^-62091356.0 ^772453696.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-848907008.0 ^238884320.0 ^471477568.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-840174528.0 ^465847904.0 ^277655488.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-756536320.0 ^651277376.0 ^59080200.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^114018224.0 ^842673472.0 ^526214048.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^238676624.0 ^932728960.0 ^270278016.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^342056896.0 ^939628608.0 ^-9756104.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-532763712.0 ^841653952.0 ^88212312.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-371747104.0 ^864366400.0 ^338636704.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-177587712.0 ^810016832.0 ^558869760.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^248052256.0 ^656662208.0 ^712225344.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^519252704.0 ^543347712.0 ^659658880.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^744161408.0 ^381590944.0 ^548281024.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^39289084.0 ^509044416.0 ^859843136.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^82244632.0 ^234336384.0 ^968670400.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^117867888.0 ^-61265432.0 ^991137600.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-223770512.0 ^603820672.0 ^765066880.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-468423456.0 ^432733760.0 ^770273408.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-671316160.0 ^223065504.0 ^706807168.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-441703552.0 ^681925632.0 ^582988288.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-637144000.0 ^699334336.0 ^324004928.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-687970496.0 ^472411200.0 ^550930240.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-203026000.0 ^350699136.0 ^914215936.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-449292288.0 ^141183968.0 ^882158528.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-159788176.0 ^36880112.0 ^986462144.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^316225216.0 ^408851936.0 ^856061760.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^359464576.0 ^95033392.0 ^928307008.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^589213568.0 ^257490368.0 ^765849856.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^398466560.0 ^776018560.0 ^488896256.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^671456000.0 ^624658496.0 ^398683616.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^523948064.0 ^829368960.0 ^193973504.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-69959264.0 ^944788544.0 ^320125248.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^55521248.0 ^998139392.0 ^25201964.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-265398048.0 ^962198336.0 ^61140736.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-910135552.0 ^413682656.0 ^-22799422.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-987687744.0 ^110618544.0 ^-110618488.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-960964928.0 ^186758112.0 ^204126896.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-574776320.0 ^-349184608.0 ^740069120.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-453990912.0 ^-630036928.0 ^630036288.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-285270592.0 ^-453489472.0 ^844374208.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^554905984.0 ^-359393984.0 ^750276800.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^707107136.0 ^-499999392.0 ^500000224.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^784655808.0 ^-196935632.0 ^587819328.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^917728640.0 ^397158368.0 ^-6274334.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^891006656.0 ^321019008.0 ^-321020320.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^770219200.0 ^601869952.0 ^-210986032.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^12281900.0 ^874946624.0 ^-484063552.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-156437376.0 ^698399360.0 ^-698402304.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-308638688.0 ^839003904.0 ^-448123328.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-891006528.0 ^-321019648.0 ^321019776.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-917728384.0 ^-397159136.0 ^6273858.5 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-770218752.0 ^-601870464.0 ^210985504.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^156436880.0 ^-698400832.0 ^698400832.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-12283651.0 ^-874947200.0 ^484062432.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^308637376.0 ^-839005312.0 ^448121792.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^987688000.0 ^-110617632.0 ^110617520.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^910136192.0 ^-413681344.0 ^22797814.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^960964928.0 ^-186756608.0 ^-204128288.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^453990240.0 ^630036800.0 ^-630036992.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^574775744.0 ^349184320.0 ^-740069696.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^285269824.0 ^453489184.0 ^-844374784.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-707106816.0 ^499999936.0 ^-499999968.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-554906112.0 ^359393696.0 ^-750276800.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-784655744.0 ^196936192.0 ^-587819200.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-671456448.0 ^-624658688.0 ^-398682656.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^-398467584.0 ^-776019200.0 ^-488894496.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-523948800.0 ^-829368896.0 ^-193971424.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-55519588.0 ^-998139520.0 ^-25201664.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^69960208.0 ^-944788736.0 ^-320124736.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^265399760.0 ^-962197952.0 ^-61140292.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^637144384.0 ^-699334464.0 ^-324003584.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^441705280.0 ^-681924928.0 ^-582987776.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^687971840.0 ^-472410912.0 ^-550929024.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-589213696.0 ^-257490016.0 ^-765849984.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-359464736.0 ^-95031992.0 ^-928307072.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^-316225472.0 ^-408850720.0 ^-856062144.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^449292032.0 ^-141183072.0 ^-882158720.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^0.0 ^-0.0 ^203025776.0 ^-350697408.0 ^-914216512.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^-0.0 ^159787792.0 ^-36878276.0 ^-986462336.0 0.00000000141 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^499999872.0 ^-146446752.0 ^-853553472.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^566374464.0 ^758506944.0 ^-322315232.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^990160576.0 ^-117364368.0 ^76208240.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^354593504.0 ^-921554624.0 ^-158115856.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-461988608.0 ^-542689024.0 ^-701466304.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-331094912.0 ^495644256.0 ^-802940224.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^461988640.0 ^542689088.0 ^701466304.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^331094848.0 ^-495644288.0 ^802940160.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-566374656.0 ^-758506944.0 ^322315136.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-990160576.0 ^117364264.0 ^-76208328.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-354593536.0 ^921554560.0 ^158115744.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-499999904.0 ^146446672.0 ^853553408.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^974480320.0 ^-139985792.0 ^-175476752.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^875890880.0 ^-155064032.0 ^-456914016.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^699213440.0 ^-156317712.0 ^-697613952.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^580219136.0 ^89617256.0 ^-809514944.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^626797632.0 ^359756544.0 ^-691158400.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^617494912.0 ^597823872.0 ^-511181664.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^755127808.0 ^605991936.0 ^-250111456.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^914907200.0 ^376853952.0 ^-144657904.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^993118912.0 ^114117680.0 ^-26307486.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-119872512.0 ^630498880.0 ^-766877888.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^138293264.0 ^737168576.0 ^-661405760.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^384129888.0 ^778117824.0 ^-496967744.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^328219744.0 ^15808275.0 ^-944469056.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^99282136.0 ^205250816.0 ^-973660736.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-138508400.0 ^376395584.0 ^-916046784.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^439096288.0 ^-817414912.0 ^-372863488.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^502317056.0 ^-627754624.0 ^-594644160.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^520753920.0 ^-382127424.0 ^-763409408.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^933652928.0 ^-357631584.0 ^19797874.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^790425152.0 ^-610663680.0 ^-48144712.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^576727936.0 ^-809250816.0 ^-111794592.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-248769504.0 ^-498267360.0 ^-830568000.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^22345494.0 ^-405061792.0 ^-914016256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^291466336.0 ^-275744096.0 ^-915976256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^168979664.0 ^-928677504.0 ^-330157504.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-63123040.0 ^-860662272.0 ^-505248416.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-289599424.0 ^-715913920.0 ^-635294784.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-482136000.0 ^-317974560.0 ^-816355968.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-466162336.0 ^-27652092.0 ^-884266944.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-408628384.0 ^265135584.0 ^-873341888.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-139669232.0 ^989277504.0 ^42690212.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^124479520.0 ^987517120.0 ^-96512920.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^377531680.0 ^897713728.0 ^-227112144.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-378473600.0 ^676284864.0 ^-631978304.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-403038144.0 ^833010816.0 ^-379016256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-391669568.0 ^915468288.0 ^-92264440.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^667197376.0 ^424193344.0 ^612297088.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^853553536.0 ^250000064.0 ^457106560.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^963810240.0 ^53517832.0 ^261162160.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^606824256.0 ^791332672.0 ^-74544832.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^604459776.0 ^764827840.0 ^222860384.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^548202880.0 ^670132544.0 ^500395904.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^378473600.0 ^-676284864.0 ^631978240.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^403038080.0 ^-833010816.0 ^379016192.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^391669536.0 ^-915468352.0 ^92264368.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^927058304.0 ^-238038432.0 ^289655936.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^776618304.0 ^-360319360.0 ^516753376.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^556936704.0 ^-450474912.0 ^697777856.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-606824320.0 ^-791332608.0 ^74544728.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-604459904.0 ^-764827712.0 ^-222860432.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-548202880.0 ^-670132480.0 ^-500395904.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^139669184.0 ^-989277504.0 ^-42690308.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-124479552.0 ^-987517120.0 ^96512872.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-377531680.0 ^-897713728.0 ^227112064.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-927058304.0 ^238038352.0 ^-289656000.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-776618304.0 ^360319232.0 ^-516753312.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-556936704.0 ^450474784.0 ^-697777920.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-667197248.0 ^-424193312.0 ^-612297088.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-853553472.0 ^-250000112.0 ^-457106528.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-963810176.0 ^-53517920.0 ^-261162256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-168979728.0 ^928677504.0 ^330157440.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^63122996.0 ^860662272.0 ^505248416.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^289599392.0 ^715913920.0 ^635294848.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^482136000.0 ^317974528.0 ^816356032.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^466162304.0 ^27652006.0 ^884267008.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^408628224.0 ^-265135648.0 ^873341888.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^119872456.0 ^-630498880.0 ^766877888.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-138293344.0 ^-737168576.0 ^661405760.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-384129984.0 ^-778117824.0 ^496967744.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-755127936.0 ^-605991936.0 ^250111408.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-914907200.0 ^-376853952.0 ^144657856.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-993118848.0 ^-114117744.0 ^26307440.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-933652864.0 ^357631456.0 ^-19797908.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-790425152.0 ^610663680.0 ^48144688.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-576728064.0 ^809250688.0 ^111794544.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-291466400.0 ^275744064.0 ^915976256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-22345508.0 ^405061728.0 ^914016256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^248769440.0 ^498267360.0 ^830568064.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-439096352.0 ^817414912.0 ^372863456.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-502317120.0 ^627754560.0 ^594644096.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-520754048.0 ^382127360.0 ^763409408.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-328219840.0 ^-15808355.0 ^944469056.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-99282176.0 ^-205250880.0 ^973660736.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^138508352.0 ^-376395584.0 ^916046784.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-580219264.0 ^-89617336.0 ^809514880.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-626797632.0 ^-359756576.0 ^691158400.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-617494912.0 ^-597823872.0 ^511181664.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-699213504.0 ^156317632.0 ^697613888.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-875890880.0 ^155063952.0 ^456913984.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-974480384.0 ^139985680.0 ^175476704.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-724566592.0 ^411551936.0 ^552836672.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-679634816.0 ^651073664.0 ^337934496.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-876035200.0 ^402565376.0 ^265525040.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-790009280.0 ^-107613136.0 ^603576704.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-941477824.0 ^-116600936.0 ^316265312.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-810521344.0 ^-387258784.0 ^439415200.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-381722048.0 ^-297041440.0 ^875245440.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-402232256.0 ^-576686912.0 ^711084736.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-124900720.0 ^-495458400.0 ^859605056.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-63943388.0 ^105046656.0 ^992409472.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^192879264.0 ^-93369464.0 ^976770048.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^233327392.0 ^227491680.0 ^945413120.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-275831360.0 ^542983488.0 ^793149440.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^21439060.0 ^665429568.0 ^746152704.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-230897728.0 ^782505664.0 ^578248256.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-627441472.0 ^758985344.0 ^-173949648.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-620181824.0 ^627372096.0 ^-470933952.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-823844288.0 ^510476832.0 ^-246361040.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-929736064.0 ^-329557184.0 ^-164264224.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-766523072.0 ^-533526112.0 ^-357480512.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-798779520.0 ^-600217344.0 ^-41113524.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-138147936.0 ^-906721280.0 ^398461568.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^146446672.0 ^-957106560.0 ^250000768.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^139184448.0 ^-825492096.0 ^546983104.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^653368896.0 ^-174893680.0 ^736560384.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^857032512.0 ^-57998392.0 ^511987744.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^693816896.0 ^145969760.0 ^705202688.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^350969312.0 ^854571520.0 ^382789728.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^383227040.0 ^921262784.0 ^66423036.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^98630544.0 ^971646464.0 ^214884304.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-857032064.0 ^57998200.0 ^-511988416.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-653368320.0 ^174893264.0 ^-736561088.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-693816320.0 ^-145970128.0 ^-705203264.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-383226432.0 ^-921262848.0 ^-66424944.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-350969760.0 ^-854570560.0 ^-382791584.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-98630392.0 ^-971646016.0 ^-214886560.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^620182528.0 ^-627371200.0 ^470934272.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^627443072.0 ^-758983872.0 ^173950144.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^823845376.0 ^-510475168.0 ^246361408.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^766523008.0 ^533526656.0 ^357479776.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^929736128.0 ^329557536.0 ^164263552.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^798779328.0 ^600217664.0 ^41112688.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-146446752.0 ^957106752.0 ^-250000144.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^138147872.0 ^906721216.0 ^-398461760.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-139184528.0 ^825492352.0 ^-546982592.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-192880352.0 ^93369112.0 ^-976769856.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^63941464.0 ^-105047520.0 ^-992409472.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-233329280.0 ^-227492336.0 ^-945412480.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-21438080.0 ^-665430656.0 ^-746151744.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^275831680.0 ^-542984192.0 ^-793148736.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^230898640.0 ^-782506496.0 ^-578246976.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^679634176.0 ^-651074560.0 ^-337933792.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^724567488.0 ^-411552480.0 ^-552835008.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^876035072.0 ^-402566464.0 ^-265523616.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^124900656.0 ^495458880.0 ^-859604736.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^402232224.0 ^576688128.0 ^-711083776.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^381722208.0 ^297042656.0 ^-875245056.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^941477824.0 ^116601792.0 ^-316264928.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^790009600.0 ^107614856.0 ^-603575872.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^810521216.0 ^387260416.0 ^-439414272.0 0.00000000071 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^957106688.0 ^73223328.0 ^-280330464.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^628398592.0 ^414315936.0 ^658374912.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^646261952.0 ^-616173504.0 ^450195264.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^362540128.0 ^-749876352.0 ^-553398656.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^169336224.0 ^197988256.0 ^-965466624.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^333644960.0 ^917490880.0 ^-216544272.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-169336224.0 ^-197988304.0 ^965466688.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-333644960.0 ^-917490880.0 ^216544160.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-628398592.0 ^-414315872.0 ^-658375040.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-646261888.0 ^616173440.0 ^-450195328.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-362540128.0 ^749876352.0 ^553398528.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-957106688.0 ^-73223328.0 ^280330368.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^813142464.0 ^-498486656.0 ^300516800.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^942435392.0 ^-319135200.0 ^99841416.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^987706176.0 ^-111333056.0 ^-109733752.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^982690432.0 ^178016848.0 ^-51279096.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^931935680.0 ^286566720.0 ^222205680.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^798094848.0 ^369568768.0 ^475881728.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^710811584.0 ^175992960.0 ^681009024.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^749225728.0 ^-118648592.0 ^651600512.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^720843456.0 ^-402712288.0 ^564098944.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^457501920.0 ^889205248.0 ^2454703.25 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^565472576.0 ^782813056.0 ^259700416.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^623030208.0 ^606631424.0 ^493793344.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^899926912.0 ^319302816.0 ^-296946720.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^758685120.0 ^582323520.0 ^-292055232.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^549802688.0 ^793429440.0 ^-261125840.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^574142208.0 ^-611116096.0 ^-544883264.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^775668736.0 ^-397725984.0 ^-490053184.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^908040640.0 ^-148877216.0 ^-391532736.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^646193152.0 ^-729609088.0 ^223841600.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^592958400.0 ^-802944640.0 ^-60664328.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^486858944.0 ^-804693312.0 ^-339760000.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^411393568.0 ^187340416.0 ^-891997120.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^662107584.0 ^159413392.0 ^-732257280.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^853790784.0 ^117274400.0 ^-507235648.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^352943232.0 ^-576085248.0 ^-737263040.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^312629760.0 ^-324394528.0 ^-892765824.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^244443456.0 ^-43780620.0 ^-968674624.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^236329168.0 ^424403936.0 ^-874088000.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^295644576.0 ^655661696.0 ^-694767744.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^328602144.0 ^828464256.0 ^-453506048.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-128947568.0 ^748014400.0 ^651035328.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^156265280.0 ^684296768.0 ^712263296.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^427547776.0 ^559569856.0 ^709989120.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^179254896.0 ^983431488.0 ^-27020408.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-16986024.0 ^980054848.0 ^198000272.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-211711376.0 ^889300864.0 ^405366880.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^38820384.0 ^-339797184.0 ^939697216.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^280330464.0 ^-478553248.0 ^832106688.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^496847328.0 ^-574643392.0 ^650328960.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^481800800.0 ^293417024.0 ^825696320.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^269831584.0 ^127155008.0 ^954475008.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^33804704.0 ^-50444020.0 ^998154624.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-179254848.0 ^-983431488.0 ^27020338.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^16986038.0 ^-980054848.0 ^-198000320.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^211711392.0 ^-889300736.0 ^-405366912.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^450711584.0 ^-776675776.0 ^440038560.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^183752368.0 ^-901470016.0 ^391901600.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-99589672.0 ^-945891008.0 ^308823456.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-481800800.0 ^-293416992.0 ^-825696384.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-269831584.0 ^-127154928.0 ^-954475008.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-33804676.0 ^50444024.0 ^-998154624.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^128947584.0 ^-748014336.0 ^-651035392.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-156265280.0 ^-684296768.0 ^-712263296.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-427547712.0 ^-559569856.0 ^-709989120.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-450711520.0 ^776675712.0 ^-440038656.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-183752368.0 ^901470016.0 ^-391901728.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^99589688.0 ^945891008.0 ^-308823616.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-38820364.0 ^339797184.0 ^-939697280.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-280330432.0 ^478553184.0 ^-832106752.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-496847264.0 ^574643328.0 ^-650329024.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-352943264.0 ^576085312.0 ^737262976.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-312629760.0 ^324394528.0 ^892765824.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-244443552.0 ^43780640.0 ^968674688.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-236329232.0 ^-424404000.0 ^874088000.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-295644640.0 ^-655661696.0 ^694767616.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-328602144.0 ^-828464256.0 ^453505984.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-457501920.0 ^-889205248.0 ^-2454752.75 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-565472576.0 ^-782813056.0 ^-259700480.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-623030144.0 ^-606631360.0 ^-493793344.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-710811584.0 ^-175992880.0 ^-681009088.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-749225728.0 ^118648592.0 ^-651600576.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-720843328.0 ^402712256.0 ^-564099008.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-646193088.0 ^729609024.0 ^-223841696.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-592958400.0 ^802944640.0 ^60664280.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-486858944.0 ^804693312.0 ^339759936.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-853790848.0 ^-117274424.0 ^507235584.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-662107648.0 ^-159413472.0 ^732257280.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-411393664.0 ^-187340416.0 ^891997056.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-574142208.0 ^611116096.0 ^544883200.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-775668736.0 ^397726080.0 ^490053088.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-908040640.0 ^148877216.0 ^391532672.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-899926912.0 ^-319302816.0 ^296946592.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-758685120.0 ^-582323520.0 ^292055168.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-549802752.0 ^-793429504.0 ^261125840.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-982690432.0 ^-178016848.0 ^51278988.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-931935680.0 ^-286566720.0 ^-222205760.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-798094848.0 ^-369568768.0 ^-475881824.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-987706176.0 ^111333040.0 ^109733632.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-942435392.0 ^319135200.0 ^-99841536.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-813142464.0 ^498486656.0 ^-300516928.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-903260352.0 ^376876128.0 ^205146320.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-719530112.0 ^631228672.0 ^289528416.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-807204992.0 ^589911680.0 ^-20598310.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-985414080.0 ^17122236.0 ^-169310032.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-889358848.0 ^230156864.0 ^-395055360.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-883838656.0 ^-88280328.0 ^-459386208.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-888810240.0 ^-456801792.0 ^36721912.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-787233920.0 ^-562205568.0 ^-253352880.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-696150656.0 ^-717694144.0 ^17010296.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-746954112.0 ^-389953760.0 ^538512320.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-554294464.0 ^-650846784.0 ^518802464.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-503520544.0 ^-428509280.0 ^750231168.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^-755883520.0 ^125288320.0 ^642606336.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-512449984.0 ^86733976.0 ^854325632.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-572152512.0 ^379639776.0 ^726990400.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-320667104.0 ^937379200.0 ^135988112.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-105534112.0 ^989177024.0 ^-101938728.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-408342432.0 ^896064384.0 ^-174140944.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-541270464.0 ^313968000.0 ^-780032192.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-289236832.0 ^184741792.0 ^-939261760.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-535750912.0 ^-4471267.5 ^-844364224.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-379440224.0 ^-771305664.0 ^-510991744.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-73223816.0 ^-875000384.0 ^-478552768.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-288357216.0 ^-926794880.0 ^-240627152.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-58825304.0 ^-818633152.0 ^571296192.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^243983536.0 ^-725521152.0 ^643499072.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-8050970.0 ^-596293568.0 ^802726016.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-22500400.0 ^237393888.0 ^971152768.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^224014304.0 ^426606240.0 ^876256064.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^-82203792.0 ^530300384.0 ^843815168.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-243982752.0 ^725521216.0 ^-643499328.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^58826120.0 ^818632832.0 ^-571296512.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^8051731.5 ^596293248.0 ^-802726272.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^-224012544.0 ^-426605664.0 ^-876256896.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^22501348.0 ^-237392096.0 ^-971153344.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^82205496.0 ^-530299136.0 ^-843815872.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^105534504.0 ^-989176832.0 ^101940032.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^320667936.0 ^-937379264.0 ^-135986032.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^408342848.0 ^-896063808.0 ^174142928.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^289237344.0 ^-184741040.0 ^939261760.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^541270976.0 ^-313967392.0 ^780032128.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^535751392.0 ^4472056.5 ^844363904.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^73223320.0 ^875000128.0 ^478553152.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^379440352.0 ^771305728.0 ^510991648.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^-0.0 ^-0.0 ^0.0 ^288356768.0 ^926794816.0 ^240627568.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^554293568.0 ^650847040.0 ^-518803296.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^746952832.0 ^389954144.0 ^-538513920.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^503518816.0 ^428509440.0 ^-750232320.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^512449856.0 ^-86735696.0 ^-854325504.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^755883264.0 ^-125289336.0 ^-642606528.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^572152256.0 ^-379641536.0 ^-726989824.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^719529152.0 ^-631229440.0 ^-289529088.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^903259904.0 ^-376877696.0 ^-205145472.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^807203904.0 ^-589913216.0 ^20598230.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^696150400.0 ^717694336.0 ^-17009874.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^787233280.0 ^562205824.0 ^253354080.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^888809984.0 ^456802304.0 ^-36720732.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^889358464.0 ^-230156464.0 ^395056224.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^0.0 ^0.0 ^985413760.0 ^-17121602.0 ^169311856.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] +particle sneeze ^0.0 ^-0.0 ^0.0 ^883837952.0 ^88281000.0 ^459387712.0 0.00000000035 0 force @a[distance=..64,tag=ShowParticles] From 213770de00070eeff26b237614c49aef06e683e4 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:11:39 +0900 Subject: [PATCH 10/27] =?UTF-8?q?GH-790=20Modify=20CallSkill=E6=BC=94?= =?UTF-8?q?=E5=87=BA=E3=83=91=E3=82=B9=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activate/decorate/initialize.mcfunction | 2 +- .../blink/activate/decorate/tick.mcfunction | 2 +- .../skill/blink/cast/success.mcfunction | 2 +- .../affect/huge_explosion_01/.mcfunction | 120 ++++++------- .../affect/huge_explosion_02/.mcfunction | 120 ++++++------- .../casting/bubble_launcher_01/.mcfunction | 160 +++++++++--------- .../casting/bubble_launcher_02/.mcfunction | 160 +++++++++--------- .../casting/bubble_launcher_03/.mcfunction | 160 +++++++++--------- .../execute/casting/cast/normal/.mcfunction | 6 +- .../execute/casting/charge/normal/.mcfunction | 2 +- .../casting/charge/normal/act.mcfunction | 32 ++-- .../execute/casting/circle_hearts/.mcfunction | 60 +++---- .../execute/casting/cross_ring/.mcfunction | 40 ++--- .../act/execute/casting/doom_bomb/.mcfunction | 50 +++--- .../act/execute/casting/doom_cast/.mcfunction | 30 ++-- .../casting/finishing_move/.mcfunction | 120 ++++++------- .../act/execute/casting/healing/.mcfunction | 62 +++---- .../laser_pointer/red_dust/loop.mcfunction | 2 +- .../casting/pillar_of_water/.mcfunction | 40 ++--- .../casting/sludge_garbager/.mcfunction | 120 ++++++------- .../execute/casting/water_bolt/.mcfunction | 60 +++---- .../enemy/abyss_mage/abyss_magic.mcfunction | 50 +++--- .../execute/enemy/aurora_eye/zone.mcfunction | 30 ++-- .../act/execute/enemy/crimson_eye/.mcfunction | 60 +++---- .../act/execute/enemy/lunatic_eye/.mcfunction | 110 ++++++------ .../append/casting/cast/normal/.mcfunction | 2 +- .../append/casting/water_bolt/.mcfunction | 2 +- data/ai/function/skill/heal/.mcfunction | 2 +- data/ai/function/skill/heal/act.mcfunction | 2 +- .../skill/icicle_magic/icicle/.mcfunction | 2 +- .../skill/icicle_magic/icicle/fall.mcfunction | 2 +- .../skill/laser/loop/blue_laser/.mcfunction | 2 +- .../laser/loop/blue_laser/damage.mcfunction | 2 +- .../laser/loop/blue_laser/end.mcfunction | 2 +- .../skill/laser/loop/frozenlaser/.mcfunction | 2 +- .../laser/loop/frozenlaser/damage.mcfunction | 2 +- .../skill/laser/loop/green_laser/.mcfunction | 2 +- .../laser/loop/green_laser/damage.mcfunction | 2 +- .../laser/loop/green_laser/end.mcfunction | 2 +- .../laser/loop/kame_hame_ha/1.mcfunction | 2 +- .../laser/loop/kame_hame_ha/2.mcfunction | 2 +- .../laser/loop/kame_hame_ha/3.mcfunction | 2 +- .../laser/loop/kame_hame_ha/4.mcfunction | 2 +- .../laser/loop/kame_hame_ha/5.mcfunction | 2 +- .../laser/loop/kame_hame_ha/6.mcfunction | 2 +- .../laser/loop/kame_hame_ha/7.mcfunction | 2 +- .../laser/loop/lightning_laser/.mcfunction | 2 +- .../skill/laser/loop/piglin_snipe/.mcfunction | 2 +- .../laser/loop/piglin_snipe/damage.mcfunction | 2 +- .../laser/loop/piglin_snipe/end.mcfunction | 2 +- .../skill/laser/loop/red_laser/.mcfunction | 2 +- .../laser/loop/red_laser/damage.mcfunction | 2 +- .../skill/laser/loop/red_laser/end.mcfunction | 2 +- .../loop/security_laser/dual/.mcfunction | 4 +- .../loop/security_laser/dual/1.mcfunction | 4 +- .../loop/security_laser/dual/2.mcfunction | 4 +- .../loop/security_laser/single/.mcfunction | 2 +- .../function/skill/laser/loop/test.mcfunction | 2 +- .../skill/laser/loop/violet_laser/.mcfunction | 2 +- .../laser/loop/violet_laser/damage.mcfunction | 2 +- .../laser/loop/violet_laser/end.mcfunction | 2 +- .../skill/laser/loop/white_laser/.mcfunction | 2 +- .../laser/loop/white_laser/damage.mcfunction | 2 +- .../laser/loop/white_laser/end.mcfunction | 2 +- .../skill/laser/loop/yellow_laser/.mcfunction | 2 +- .../laser/loop/yellow_laser/damage.mcfunction | 2 +- .../laser/loop/yellow_laser/end.mcfunction | 2 +- .../skill/reraise/death_cancel.mcfunction | 2 +- data/ai/function/skill/teleport/.mcfunction | 2 +- .../casting/cast/normal/particle/.mcfunction | 72 ++++---- 70 files changed, 883 insertions(+), 883 deletions(-) diff --git a/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction b/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction index db6c5bf21..3fe5f7a15 100644 --- a/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction +++ b/data/ai/function/skill/blink/activate/decorate/initialize.mcfunction @@ -2,4 +2,4 @@ scoreboard players set @s BlinkSubTimer 7 scoreboard players add @s NativeFlag 100 -function makeup:skill/enemy/blink/activate/0 +function makeup:ai/skill/blink/activate/0 diff --git a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction index 3555165f0..6ecf644e8 100644 --- a/data/ai/function/skill/blink/activate/decorate/tick.mcfunction +++ b/data/ai/function/skill/blink/activate/decorate/tick.mcfunction @@ -7,7 +7,7 @@ execute if score @s BlinkSubTimer matches 4 run tp @s ~-0.4 ~ ~ execute if score @s BlinkSubTimer matches 3 run tp @s ~ ~ ~0.4 execute if score @s BlinkSubTimer matches 2 run tp @s ~0.4 ~ ~ execute if score @s BlinkSubTimer matches 1 run tp @s ~-0.2 ~ ~-0.2 -execute if score @s BlinkSubTimer matches 1..6 anchored eyes run function makeup:skill/enemy/blink/activate/1 +execute if score @s BlinkSubTimer matches 1..6 anchored eyes run function makeup:ai/skill/blink/activate/1 execute if score @s BlinkSubTimer matches 1 run function ai:skill/blink/activate/decorate/finalize diff --git a/data/ai/function/skill/blink/cast/success.mcfunction b/data/ai/function/skill/blink/cast/success.mcfunction index a60b453b2..31ef87a3b 100644 --- a/data/ai/function/skill/blink/cast/success.mcfunction +++ b/data/ai/function/skill/blink/cast/success.mcfunction @@ -8,4 +8,4 @@ data modify storage mob_data: Blink.TriggerOn set from storage mob_data: Call.Tr data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink set from storage mob_data: Blink tag @s add CallOnDamage -function makeup:skill/enemy/blink/cast/0 +function makeup:ai/skill/blink/cast/0 diff --git a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction index 5896d5ad9..d4a48dd62 100644 --- a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_01/.mcfunction @@ -1,62 +1,62 @@ #> ai:skill/delay_action/act/execute/affect/huge_explosion_01/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_01/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/affect/huge_explosion_01/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction index 613f44025..cbf42cf45 100644 --- a/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/affect/huge_explosion_02/.mcfunction @@ -1,62 +1,62 @@ #> ai:skill/delay_action/act/execute/affect/huge_explosion_02/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/affect/huge_explosion_02/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/affect/huge_explosion_02/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction index ef7b862e7..dc062517f 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_01/.mcfunction @@ -1,82 +1,82 @@ #> ai:skill/delay_action/act/execute/casting/bubble_launcher_01/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_060 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_061 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_062 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_063 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_064 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_065 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_066 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_067 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_068 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_069 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_070 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_071 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_072 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_073 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_074 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_075 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_076 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_077 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_078 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_079 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_01/fc_080 +execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_061 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_062 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_063 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_064 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_065 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_066 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_067 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_068 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_069 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_070 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_071 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_072 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_073 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_074 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_075 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_076 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_077 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_078 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_079 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/bubble_launcher_01/fc_080 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction index da0ce41ab..53c7de934 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_02/.mcfunction @@ -1,82 +1,82 @@ #> ai:skill/delay_action/act/execute/casting/bubble_launcher_02/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_060 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_061 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_062 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_063 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_064 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_065 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_066 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_067 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_068 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_069 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_070 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_071 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_072 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_073 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_074 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_075 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_076 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_077 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_078 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_079 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_02/fc_080 +execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_061 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_062 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_063 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_064 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_065 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_066 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_067 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_068 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_069 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_070 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_071 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_072 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_073 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_074 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_075 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_076 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_077 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_078 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_079 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/bubble_launcher_02/fc_080 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction index 2635ea8a1..ead8cb2b3 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/bubble_launcher_03/.mcfunction @@ -1,82 +1,82 @@ #> ai:skill/delay_action/act/execute/casting/bubble_launcher_03/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_060 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_061 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_062 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_063 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_064 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_065 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_066 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_067 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_068 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_069 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_070 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_071 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_072 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_073 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_074 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_075 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_076 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_077 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_078 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_079 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/bubble_launcher_03/fc_080 +execute if data storage mob_data: ExecutingAction{Stage:80} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:79} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:78} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:77} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:76} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:75} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:74} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:73} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:72} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:71} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:70} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:69} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:68} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:67} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:66} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:65} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:64} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:63} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:62} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:61} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_061 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_062 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_063 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_064 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_065 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_066 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_067 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_068 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_069 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_070 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_071 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_072 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_073 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_074 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_075 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_076 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_077 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_078 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_079 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/bubble_launcher_03/fc_080 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction index 2c59217dd..90c981924 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/cast/normal/.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/delay_action/act/execute/casting/cast/normal/ ###詠唱演出 -execute if data storage mob_data: ExecutingAction{Stage:3} positioned ~ ~0.5 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ -execute if data storage mob_data: ExecutingAction{Stage:2} positioned ~ ~1.0 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ -execute if data storage mob_data: ExecutingAction{Stage:1} positioned ~ ~1.5 ~ run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/ +execute if data storage mob_data: ExecutingAction{Stage:3} positioned ~ ~0.5 ~ run function makeup:ai/skill/delay_action/casting/cast/normal/particle/ +execute if data storage mob_data: ExecutingAction{Stage:2} positioned ~ ~1.0 ~ run function makeup:ai/skill/delay_action/casting/cast/normal/particle/ +execute if data storage mob_data: ExecutingAction{Stage:1} positioned ~ ~1.5 ~ run function makeup:ai/skill/delay_action/casting/cast/normal/particle/ data modify storage mob_data: ExecutingAction.NextAction set value 5 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction index ba66834cc..bfa3ecb08 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/.mcfunction @@ -3,7 +3,7 @@ execute anchored eyes positioned ^ ^ ^ run function calc:geometry/tp_00000 ## 演出 -function makeup:skill/enemy/delay_action/casting/charge/normal/sound/ +function makeup:ai/skill/delay_action/casting/charge/normal/sound/ execute as 0-0-0-0-0 at @s run function ai:skill/delay_action/act/execute/casting/charge/normal/act diff --git a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction index 30793fae9..464b5249f 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/charge/normal/act.mcfunction @@ -1,35 +1,35 @@ #> ai:skill/delay_action/act/execute/casting/charge/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:set/random_rotation -function makeup:skill/enemy/delay_action/casting/charge/normal/particle/ +function makeup:ai/skill/delay_action/casting/charge/normal/particle/ function calc:geometry/return_marker diff --git a/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction index 30d106b4a..de5cfd637 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/circle_hearts/.mcfunction @@ -1,32 +1,32 @@ #> ai:skill/delay_action/act/execute/casting/circle_hearts/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/circle_hearts/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/circle_hearts/fc_030 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction index 481cc4b3e..9f515b9a5 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/cross_ring/.mcfunction @@ -1,22 +1,22 @@ #> ai:skill/delay_action/act/execute/casting/cross_ring/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_001 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_002 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_003 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_004 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_005 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_006 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_007 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_008 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_009 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_010 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_011 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_012 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_013 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_014 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_015 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_016 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_017 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_018 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_019 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/cross_ring/cross_ring_020 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_001 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_002 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_003 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_004 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_005 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_006 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_007 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_008 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_009 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_010 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_011 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_012 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_013 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_014 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_015 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_016 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_017 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_018 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_019 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/cross_ring/cross_ring_020 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction index 8af586b65..deb1bf377 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/doom_bomb/.mcfunction @@ -5,31 +5,31 @@ execute store result score _ Random run function calc:random execute store result entity 0-0-0-0-0 Rotation[0] float 0.01 run scoreboard players get _ Random execute store result score _ Random run function calc:random execute store result entity 0-0-0-0-0 Rotation[1] float 0.01 run scoreboard players get _ Random -execute if data storage mob_data: ExecutingAction{Stage:25} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_01 -execute if data storage mob_data: ExecutingAction{Stage:24} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_02 -execute if data storage mob_data: ExecutingAction{Stage:23} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_03 -execute if data storage mob_data: ExecutingAction{Stage:22} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_04 -execute if data storage mob_data: ExecutingAction{Stage:21} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_05 -execute if data storage mob_data: ExecutingAction{Stage:20} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_06 -execute if data storage mob_data: ExecutingAction{Stage:19} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_07 -execute if data storage mob_data: ExecutingAction{Stage:18} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_08 -execute if data storage mob_data: ExecutingAction{Stage:17} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_09 -execute if data storage mob_data: ExecutingAction{Stage:16} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_10 -execute if data storage mob_data: ExecutingAction{Stage:15} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_11 -execute if data storage mob_data: ExecutingAction{Stage:14} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_12 -execute if data storage mob_data: ExecutingAction{Stage:13} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_13 -execute if data storage mob_data: ExecutingAction{Stage:12} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_14 -execute if data storage mob_data: ExecutingAction{Stage:11} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_15 -execute if data storage mob_data: ExecutingAction{Stage:10} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_16 -execute if data storage mob_data: ExecutingAction{Stage:9} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_17 -execute if data storage mob_data: ExecutingAction{Stage:8} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_18 -execute if data storage mob_data: ExecutingAction{Stage:7} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_19 -execute if data storage mob_data: ExecutingAction{Stage:6} at 0-0-0-0-0 run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb_20 +execute if data storage mob_data: ExecutingAction{Stage:25} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_01 +execute if data storage mob_data: ExecutingAction{Stage:24} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_02 +execute if data storage mob_data: ExecutingAction{Stage:23} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_03 +execute if data storage mob_data: ExecutingAction{Stage:22} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_04 +execute if data storage mob_data: ExecutingAction{Stage:21} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_05 +execute if data storage mob_data: ExecutingAction{Stage:20} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_06 +execute if data storage mob_data: ExecutingAction{Stage:19} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_07 +execute if data storage mob_data: ExecutingAction{Stage:18} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_08 +execute if data storage mob_data: ExecutingAction{Stage:17} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_09 +execute if data storage mob_data: ExecutingAction{Stage:16} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_10 +execute if data storage mob_data: ExecutingAction{Stage:15} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_11 +execute if data storage mob_data: ExecutingAction{Stage:14} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_12 +execute if data storage mob_data: ExecutingAction{Stage:13} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_13 +execute if data storage mob_data: ExecutingAction{Stage:12} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_14 +execute if data storage mob_data: ExecutingAction{Stage:11} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_15 +execute if data storage mob_data: ExecutingAction{Stage:10} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_16 +execute if data storage mob_data: ExecutingAction{Stage:9} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_17 +execute if data storage mob_data: ExecutingAction{Stage:8} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_18 +execute if data storage mob_data: ExecutingAction{Stage:7} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_19 +execute if data storage mob_data: ExecutingAction{Stage:6} at 0-0-0-0-0 run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb_20 execute if data storage mob_data: ExecutingAction{Stage:6} run data modify storage mob_data: ExecutingAction.NextAction set value 10 execute as 0-0-0-0-0 run function calc:geometry/return_marker execute if data storage mob_data: ExecutingAction{Stage:5} run data modify storage mob_data: ExecutingAction.NextAction set value 1 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_01 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_02 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_03 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_04 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/doom_bomb/doom_bomb2_05 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb2_01 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb2_02 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb2_03 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb2_04 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/doom_bomb/doom_bomb2_05 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction index cf51f1912..1d8c46516 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/doom_cast/.mcfunction @@ -1,17 +1,17 @@ #> ai:skill/delay_action/act/execute/casting/doom_cast/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:15} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_01 -execute if data storage mob_data: ExecutingAction{Stage:14} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_02 -execute if data storage mob_data: ExecutingAction{Stage:13} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_03 -execute if data storage mob_data: ExecutingAction{Stage:12} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_04 -execute if data storage mob_data: ExecutingAction{Stage:11} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_05 -execute if data storage mob_data: ExecutingAction{Stage:10} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_06 -execute if data storage mob_data: ExecutingAction{Stage:9} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_07 -execute if data storage mob_data: ExecutingAction{Stage:8} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_08 -execute if data storage mob_data: ExecutingAction{Stage:7} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_09 -execute if data storage mob_data: ExecutingAction{Stage:6} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_10 -execute if data storage mob_data: ExecutingAction{Stage:5} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_11 -execute if data storage mob_data: ExecutingAction{Stage:4} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_12 -execute if data storage mob_data: ExecutingAction{Stage:3} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_13 -execute if data storage mob_data: ExecutingAction{Stage:2} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_14 -execute if data storage mob_data: ExecutingAction{Stage:1} anchored eyes run function makeup:skill/enemy/delay_action/casting/doom_cast/doom_cast_15 +execute if data storage mob_data: ExecutingAction{Stage:15} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_01 +execute if data storage mob_data: ExecutingAction{Stage:14} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_02 +execute if data storage mob_data: ExecutingAction{Stage:13} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_03 +execute if data storage mob_data: ExecutingAction{Stage:12} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_04 +execute if data storage mob_data: ExecutingAction{Stage:11} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_05 +execute if data storage mob_data: ExecutingAction{Stage:10} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_06 +execute if data storage mob_data: ExecutingAction{Stage:9} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_07 +execute if data storage mob_data: ExecutingAction{Stage:8} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_08 +execute if data storage mob_data: ExecutingAction{Stage:7} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_09 +execute if data storage mob_data: ExecutingAction{Stage:6} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_10 +execute if data storage mob_data: ExecutingAction{Stage:5} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_11 +execute if data storage mob_data: ExecutingAction{Stage:4} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_12 +execute if data storage mob_data: ExecutingAction{Stage:3} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_13 +execute if data storage mob_data: ExecutingAction{Stage:2} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_14 +execute if data storage mob_data: ExecutingAction{Stage:1} anchored eyes run function makeup:ai/skill/delay_action/casting/doom_cast/doom_cast_15 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction index 1343a366e..3d84a52cf 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/finishing_move/.mcfunction @@ -1,62 +1,62 @@ #> ai:skill/delay_action/act/execute/casting/finishing_move/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/finishing_move/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/finishing_move/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction index 4af10cb3b..c2d7b943a 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/healing/.mcfunction @@ -1,33 +1,33 @@ #> ai:skill/delay_action/act/execute/casting/healing/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:31} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_001 -execute if data storage mob_data: ExecutingAction{Stage:30} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_002 -execute if data storage mob_data: ExecutingAction{Stage:29} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_003 -execute if data storage mob_data: ExecutingAction{Stage:28} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_004 -execute if data storage mob_data: ExecutingAction{Stage:27} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_005 -execute if data storage mob_data: ExecutingAction{Stage:26} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_006 -execute if data storage mob_data: ExecutingAction{Stage:25} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_007 -execute if data storage mob_data: ExecutingAction{Stage:24} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_008 -execute if data storage mob_data: ExecutingAction{Stage:23} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_009 -execute if data storage mob_data: ExecutingAction{Stage:22} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_010 -execute if data storage mob_data: ExecutingAction{Stage:21} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_011 -execute if data storage mob_data: ExecutingAction{Stage:20} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_012 -execute if data storage mob_data: ExecutingAction{Stage:19} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_013 -execute if data storage mob_data: ExecutingAction{Stage:18} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_014 -execute if data storage mob_data: ExecutingAction{Stage:17} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_015 -execute if data storage mob_data: ExecutingAction{Stage:16} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_016 -execute if data storage mob_data: ExecutingAction{Stage:15} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_017 -execute if data storage mob_data: ExecutingAction{Stage:14} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_018 -execute if data storage mob_data: ExecutingAction{Stage:13} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_019 -execute if data storage mob_data: ExecutingAction{Stage:12} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_020 -execute if data storage mob_data: ExecutingAction{Stage:11} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_021 -execute if data storage mob_data: ExecutingAction{Stage:10} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_022 -execute if data storage mob_data: ExecutingAction{Stage:9} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_023 -execute if data storage mob_data: ExecutingAction{Stage:8} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_024 -execute if data storage mob_data: ExecutingAction{Stage:7} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_025 -execute if data storage mob_data: ExecutingAction{Stage:6} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_026 -execute if data storage mob_data: ExecutingAction{Stage:5} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_027 -execute if data storage mob_data: ExecutingAction{Stage:4} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_028 -execute if data storage mob_data: ExecutingAction{Stage:3} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_029 -execute if data storage mob_data: ExecutingAction{Stage:2} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_030 -execute if data storage mob_data: ExecutingAction{Stage:1} rotated ~ 0 run function makeup:skill/enemy/delay_action/casting/healing/healing_031 +execute if data storage mob_data: ExecutingAction{Stage:31} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_001 +execute if data storage mob_data: ExecutingAction{Stage:30} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_002 +execute if data storage mob_data: ExecutingAction{Stage:29} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_003 +execute if data storage mob_data: ExecutingAction{Stage:28} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_004 +execute if data storage mob_data: ExecutingAction{Stage:27} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_005 +execute if data storage mob_data: ExecutingAction{Stage:26} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_006 +execute if data storage mob_data: ExecutingAction{Stage:25} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_007 +execute if data storage mob_data: ExecutingAction{Stage:24} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_008 +execute if data storage mob_data: ExecutingAction{Stage:23} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_009 +execute if data storage mob_data: ExecutingAction{Stage:22} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_010 +execute if data storage mob_data: ExecutingAction{Stage:21} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_011 +execute if data storage mob_data: ExecutingAction{Stage:20} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_012 +execute if data storage mob_data: ExecutingAction{Stage:19} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_013 +execute if data storage mob_data: ExecutingAction{Stage:18} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_014 +execute if data storage mob_data: ExecutingAction{Stage:17} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_015 +execute if data storage mob_data: ExecutingAction{Stage:16} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_016 +execute if data storage mob_data: ExecutingAction{Stage:15} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_017 +execute if data storage mob_data: ExecutingAction{Stage:14} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_018 +execute if data storage mob_data: ExecutingAction{Stage:13} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_019 +execute if data storage mob_data: ExecutingAction{Stage:12} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_020 +execute if data storage mob_data: ExecutingAction{Stage:11} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_021 +execute if data storage mob_data: ExecutingAction{Stage:10} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_022 +execute if data storage mob_data: ExecutingAction{Stage:9} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_023 +execute if data storage mob_data: ExecutingAction{Stage:8} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_024 +execute if data storage mob_data: ExecutingAction{Stage:7} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_025 +execute if data storage mob_data: ExecutingAction{Stage:6} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_026 +execute if data storage mob_data: ExecutingAction{Stage:5} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_027 +execute if data storage mob_data: ExecutingAction{Stage:4} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_028 +execute if data storage mob_data: ExecutingAction{Stage:3} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_029 +execute if data storage mob_data: ExecutingAction{Stage:2} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_030 +execute if data storage mob_data: ExecutingAction{Stage:1} rotated ~ 0 run function makeup:ai/skill/delay_action/casting/healing/healing_031 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction index 3b86e02c2..3b946cd7d 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/delay_action/act/execute/casting/laser_pointer/red_dust/loop -function makeup:skill/enemy/delay_action/casting/laser_pointer/red_dust/particle/red_dust +function makeup:ai/skill/delay_action/casting/laser_pointer/red_dust/particle/red_dust execute store result storage mob_data: ExecutingAction.Loop int 1 run data get storage mob_data: ExecutingAction.Loop 0.999999999 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction index de4a1f619..62d995edd 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/pillar_of_water/.mcfunction @@ -1,22 +1,22 @@ #> ai:skill/delay_action/act/execute/casting/pillar_of_water/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/pillar_of_water/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/pillar_of_water/fc_020 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction index bb683faaa..584452a4f 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/sludge_garbager/.mcfunction @@ -1,62 +1,62 @@ #> ai:skill/delay_action/act/execute/casting/sludge_garbager/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_001 -execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_002 -execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_003 -execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_004 -execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_005 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_006 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_007 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_008 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_009 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_010 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_011 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_012 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_013 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_014 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_015 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_016 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_017 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_018 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_019 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_020 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_021 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_022 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_023 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_024 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_025 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_026 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_027 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_028 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_029 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_030 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_031 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_032 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_033 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_034 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_035 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_036 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_037 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_038 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_039 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_040 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_041 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_042 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_043 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_044 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_045 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_046 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_047 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_048 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_049 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_050 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_051 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_052 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_053 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_054 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_055 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_056 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_057 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_058 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_059 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/sludge_garbager/fc_060 +execute if data storage mob_data: ExecutingAction{Stage:60} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_001 +execute if data storage mob_data: ExecutingAction{Stage:59} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_002 +execute if data storage mob_data: ExecutingAction{Stage:58} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_003 +execute if data storage mob_data: ExecutingAction{Stage:57} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_004 +execute if data storage mob_data: ExecutingAction{Stage:56} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_005 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_006 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_007 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_008 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_009 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_010 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_011 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_012 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_013 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_014 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_015 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_016 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_017 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_018 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_019 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_020 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_021 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_022 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_023 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_024 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_025 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_026 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_027 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_028 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_029 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_031 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_032 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_033 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_034 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_035 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_036 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_037 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_038 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_039 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_040 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_041 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_042 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_043 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_044 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_045 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_046 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_047 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_048 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_049 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_050 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_051 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_052 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_053 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_054 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_055 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_056 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_057 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_058 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_059 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/sludge_garbager/fc_060 diff --git a/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction b/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction index e21b6720b..9fe41b878 100644 --- a/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/casting/water_bolt/.mcfunction @@ -1,32 +1,32 @@ #> ai:skill/delay_action/act/execute/casting/water_bolt/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_001 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_002 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_003 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_004 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_005 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_006 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_007 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_008 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_009 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_010 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_011 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_012 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_013 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_014 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_015 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_016 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_017 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_018 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_019 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_020 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_021 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_022 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_023 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_024 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_025 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_026 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_027 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_028 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_029 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/casting/water_bolt/water_bolt_030 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_001 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_002 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_003 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_004 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_005 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_006 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_007 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_008 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_009 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_010 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_011 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_012 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_013 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_014 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_015 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_016 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_017 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_018 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_019 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_020 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_021 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_022 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_023 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_024 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_025 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_026 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_027 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_028 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_029 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/casting/water_bolt/water_bolt_030 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction index 4db2c7060..61003bfde 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/abyss_mage/abyss_magic.mcfunction @@ -2,28 +2,28 @@ # @within function ai:skill/delay_action/act/execute/enemy/abyss_mage/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_1 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_2 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_3 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_4 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_5 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_6 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_7 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_8 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_9 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_10 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_11 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_12 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_13 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_14 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_15 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_16 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_17 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_18 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_19 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_20 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_21 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_22 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_23 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_24 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/abyss_mage/abyss_magic/fc_25 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_16 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_17 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_18 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_19 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_20 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_21 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_22 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_23 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_24 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/enemy/abyss_mage/abyss_magic/fc_25 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction index 8798dcde0..6b2d37f28 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/aurora_eye/zone.mcfunction @@ -2,18 +2,18 @@ # @within function ai:skill/delay_action/act/execute/enemy/aurora_eye/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_1 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_2 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_3 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_4 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_5 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_6 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_7 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_8 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_9 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_10 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_11 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_12 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_13 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_14 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/aurora_eye/aurora_zone/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/enemy/aurora_eye/aurora_zone/fc_15 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction index 9311e6505..9f30c93dd 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/crimson_eye/.mcfunction @@ -3,33 +3,33 @@ ###詠唱演出 Stage0で終了なので最大数から開始 function calc:set/random_rotation -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_1 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_2 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_3 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_4 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_5 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_6 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_7 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_8 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_9 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_10 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_11 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_12 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_13 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_14 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_15 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_16 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_17 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_18 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_19 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_20 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_21 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_22 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_23 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_24 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_25 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_26 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_27 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_28 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_29 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/crimson_eye/blood/fc_30 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_16 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_17 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_18 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_19 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_20 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_21 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_22 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_23 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_24 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_25 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_26 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_27 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_28 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_29 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/enemy/crimson_eye/blood/fc_30 diff --git a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction index 5d6133245..5449760a3 100644 --- a/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction +++ b/data/ai/function/skill/delay_action/act/execute/enemy/lunatic_eye/.mcfunction @@ -2,58 +2,58 @@ # @within function ai:skill/delay_action/act/execute/enemy/ ###詠唱演出 Stage0で終了なので最大数から開始 -execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_1 -execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_2 -execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_3 -execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_4 -execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_5 -execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_6 -execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_7 -execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_8 -execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_9 -execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_10 -execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_11 -execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_12 -execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_13 -execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_14 -execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_15 -execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_16 -execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_17 -execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_18 -execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_19 -execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_20 -execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_21 -execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_22 -execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_23 -execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_24 -execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_25 -execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_26 -execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_27 -execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_28 -execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_29 -execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_30 -execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_31 -execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_32 -execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_33 -execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_34 -execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_35 -execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_36 -execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_37 -execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_38 -execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_39 -execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_40 -execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_41 -execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_42 -execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_43 -execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_44 -execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_45 -execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_46 -execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_47 -execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_48 -execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_49 -execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_50 -execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_51 -execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_52 -execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_53 -execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_54 -execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:skill/enemy/delay_action/enemy/lunatic_eye/luna_laser/fc_55 +execute if data storage mob_data: ExecutingAction{Stage:55} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_1 +execute if data storage mob_data: ExecutingAction{Stage:54} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_2 +execute if data storage mob_data: ExecutingAction{Stage:53} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_3 +execute if data storage mob_data: ExecutingAction{Stage:52} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_4 +execute if data storage mob_data: ExecutingAction{Stage:51} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_5 +execute if data storage mob_data: ExecutingAction{Stage:50} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_6 +execute if data storage mob_data: ExecutingAction{Stage:49} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_7 +execute if data storage mob_data: ExecutingAction{Stage:48} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_8 +execute if data storage mob_data: ExecutingAction{Stage:47} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_9 +execute if data storage mob_data: ExecutingAction{Stage:46} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_10 +execute if data storage mob_data: ExecutingAction{Stage:45} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_11 +execute if data storage mob_data: ExecutingAction{Stage:44} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_12 +execute if data storage mob_data: ExecutingAction{Stage:43} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_13 +execute if data storage mob_data: ExecutingAction{Stage:42} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_14 +execute if data storage mob_data: ExecutingAction{Stage:41} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_15 +execute if data storage mob_data: ExecutingAction{Stage:40} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_16 +execute if data storage mob_data: ExecutingAction{Stage:39} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_17 +execute if data storage mob_data: ExecutingAction{Stage:38} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_18 +execute if data storage mob_data: ExecutingAction{Stage:37} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_19 +execute if data storage mob_data: ExecutingAction{Stage:36} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_20 +execute if data storage mob_data: ExecutingAction{Stage:35} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_21 +execute if data storage mob_data: ExecutingAction{Stage:34} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_22 +execute if data storage mob_data: ExecutingAction{Stage:33} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_23 +execute if data storage mob_data: ExecutingAction{Stage:32} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_24 +execute if data storage mob_data: ExecutingAction{Stage:31} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_25 +execute if data storage mob_data: ExecutingAction{Stage:30} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_26 +execute if data storage mob_data: ExecutingAction{Stage:29} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_27 +execute if data storage mob_data: ExecutingAction{Stage:28} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_28 +execute if data storage mob_data: ExecutingAction{Stage:27} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_29 +execute if data storage mob_data: ExecutingAction{Stage:26} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_30 +execute if data storage mob_data: ExecutingAction{Stage:25} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_31 +execute if data storage mob_data: ExecutingAction{Stage:24} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_32 +execute if data storage mob_data: ExecutingAction{Stage:23} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_33 +execute if data storage mob_data: ExecutingAction{Stage:22} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_34 +execute if data storage mob_data: ExecutingAction{Stage:21} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_35 +execute if data storage mob_data: ExecutingAction{Stage:20} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_36 +execute if data storage mob_data: ExecutingAction{Stage:19} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_37 +execute if data storage mob_data: ExecutingAction{Stage:18} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_38 +execute if data storage mob_data: ExecutingAction{Stage:17} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_39 +execute if data storage mob_data: ExecutingAction{Stage:16} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_40 +execute if data storage mob_data: ExecutingAction{Stage:15} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_41 +execute if data storage mob_data: ExecutingAction{Stage:14} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_42 +execute if data storage mob_data: ExecutingAction{Stage:13} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_43 +execute if data storage mob_data: ExecutingAction{Stage:12} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_44 +execute if data storage mob_data: ExecutingAction{Stage:11} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_45 +execute if data storage mob_data: ExecutingAction{Stage:10} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_46 +execute if data storage mob_data: ExecutingAction{Stage:9} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_47 +execute if data storage mob_data: ExecutingAction{Stage:8} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_48 +execute if data storage mob_data: ExecutingAction{Stage:7} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_49 +execute if data storage mob_data: ExecutingAction{Stage:6} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_50 +execute if data storage mob_data: ExecutingAction{Stage:5} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_51 +execute if data storage mob_data: ExecutingAction{Stage:4} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_52 +execute if data storage mob_data: ExecutingAction{Stage:3} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_53 +execute if data storage mob_data: ExecutingAction{Stage:2} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_54 +execute if data storage mob_data: ExecutingAction{Stage:1} run function makeup:ai/skill/delay_action/enemy/lunatic_eye/luna_laser/fc_55 diff --git a/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction b/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction index a2f1cf778..04e305000 100644 --- a/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/cast/normal/.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/delay_action/append/casting/cast/normal/ data modify storage mob_data: AddingAction set value {Stage:3,NextAction:5} -function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel +function makeup:ai/skill/delay_action/casting/cast/normal/sound/portal_travel diff --git a/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction b/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction index 235849826..9d2777b69 100644 --- a/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction +++ b/data/ai/function/skill/delay_action/append/casting/water_bolt/.mcfunction @@ -2,4 +2,4 @@ # 登録 Stageがフレーム数、NextActionがtick表示間隔 data modify storage mob_data: AddingAction set value {Stage:30,NextAction:1} # 演出 -function makeup:skill/enemy/delay_action/casting/cast/normal/sound/portal_travel +function makeup:ai/skill/delay_action/casting/cast/normal/sound/portal_travel diff --git a/data/ai/function/skill/heal/.mcfunction b/data/ai/function/skill/heal/.mcfunction index 0caabc190..8cbe3a79a 100644 --- a/data/ai/function/skill/heal/.mcfunction +++ b/data/ai/function/skill/heal/.mcfunction @@ -28,4 +28,4 @@ scoreboard players set 00000000-0000-0000-0000-000000000000 _ 0 execute as @e[tag=Enemy,distance=..32] if score @s HP < @s HPMax run function ai:skill/heal/search ###演出 -execute if score 00000000-0000-0000-0000-000000000000 _ matches 1 run function makeup:skill/enemy/heal/ +execute if score 00000000-0000-0000-0000-000000000000 _ matches 1 run function makeup:ai/skill/heal/ diff --git a/data/ai/function/skill/heal/act.mcfunction b/data/ai/function/skill/heal/act.mcfunction index b73e34618..468948b52 100644 --- a/data/ai/function/skill/heal/act.mcfunction +++ b/data/ai/function/skill/heal/act.mcfunction @@ -9,7 +9,7 @@ scoreboard players operation 00000000-0000-0000-0000-000000000000 StoredDamage = scoreboard players operation 00000000-0000-0000-0000-000000000000 StoredDamage *= _ _ execute anchored eyes positioned ^ ^ ^ as 0-0-0-0-0 run function enemy:show_damage/show ###演出 -execute at @s run function makeup:skill/enemy/heal/get_heal +execute at @s run function makeup:ai/skill/heal/get_heal ##スキル成功フラグ scoreboard players set 00000000-0000-0000-0000-000000000000 _ 1 diff --git a/data/ai/function/skill/icicle_magic/icicle/.mcfunction b/data/ai/function/skill/icicle_magic/icicle/.mcfunction index b622abee8..167825ed3 100644 --- a/data/ai/function/skill/icicle_magic/icicle/.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle/.mcfunction @@ -2,4 +2,4 @@ execute positioned as @s run teleport @s ~ ~-1 ~ ###ここらへんにダメージ判定 execute unless block ~ ~ ~ #block:no_collision run function ai:skill/icicle_magic/icicle/fall -function makeup:skill/enemy/icicle_magic/icicle +function makeup:ai/skill/icicle_magic/icicle diff --git a/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction b/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction index 34aa8b587..3a4b669ba 100644 --- a/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle/fall.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/icicle/fall kill @s -function makeup:skill/enemy/icicle_magic/icicle_fall +function makeup:ai/skill/icicle_magic/icicle_fall diff --git a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction index cd054d51f..2cc0207ef 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/.mcfunction @@ -2,7 +2,7 @@ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/blue_laser/damage #演出 -function makeup:skill/enemy/laser/loop/blue_laser/trail +function makeup:ai/skill/laser/loop/blue_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction index cca0f428d..152871299 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/blue_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/blue_laser/spark +function makeup:ai/skill/laser/loop/blue_laser/spark diff --git a/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction b/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction index cbb39eacc..20d8bc445 100644 --- a/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/blue_laser/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/blue_laser/end -function makeup:skill/enemy/laser/loop/blue_laser/spark +function makeup:ai/skill/laser/loop/blue_laser/spark diff --git a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction index 1ada02625..e96fe9262 100644 --- a/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction +++ b/data/ai/function/skill/laser/loop/frozenlaser/.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/frozenlaser/damage #演出 -function makeup:skill/enemy/laser/loop/frozenlazer/trail +function makeup:ai/skill/laser/loop/frozenlazer/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction b/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction index 6ab0e2d35..c59b9509c 100644 --- a/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/frozenlaser/damage.mcfunction @@ -9,4 +9,4 @@ effect give @a[distance=..2.5] invisibility 5 4 effect give @a[distance=..2.5] wither 10 1 #演出 -function makeup:skill/enemy/laser/loop/frozenlazer/ice_effect +function makeup:ai/skill/laser/loop/frozenlazer/ice_effect diff --git a/data/ai/function/skill/laser/loop/green_laser/.mcfunction b/data/ai/function/skill/laser/loop/green_laser/.mcfunction index 31f02e631..33b7c5216 100644 --- a/data/ai/function/skill/laser/loop/green_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/.mcfunction @@ -2,7 +2,7 @@ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/green_laser/damage #演出 -function makeup:skill/enemy/laser/loop/green_laser/trail +function makeup:ai/skill/laser/loop/green_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction index dd280e3e6..5aba77f40 100644 --- a/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/green_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/green_laser/spark +function makeup:ai/skill/laser/loop/green_laser/spark diff --git a/data/ai/function/skill/laser/loop/green_laser/end.mcfunction b/data/ai/function/skill/laser/loop/green_laser/end.mcfunction index 6095a515f..3417a9d84 100644 --- a/data/ai/function/skill/laser/loop/green_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/green_laser/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/green_laser/end -function makeup:skill/enemy/laser/loop/green_laser/spark +function makeup:ai/skill/laser/loop/green_laser/spark diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction index 30e8ccd67..05523b17f 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/1.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/1 +function makeup:ai/skill/laser/loop/kame_hame_ha/1 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction index cca000a7e..23fccf8e3 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/2.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-1 ~-1 ~-1 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/2 +function makeup:ai/skill/laser/loop/kame_hame_ha/2 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction index a694b790f..2c7a6031c 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/3.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-1.5 ~-1.5 ~-1.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/3 +function makeup:ai/skill/laser/loop/kame_hame_ha/3 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction index 94363fca9..f9f7fb1cc 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/4.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-2 ~-2 ~-2 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/4 +function makeup:ai/skill/laser/loop/kame_hame_ha/4 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction index 774b64141..536fb86fd 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/5.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-2.5 ~-2.5 ~-2.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/5 +function makeup:ai/skill/laser/loop/kame_hame_ha/5 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction index 9a6c8d3a7..a969cbe5f 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/6.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-3 ~-3 ~-3 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/6 +function makeup:ai/skill/laser/loop/kame_hame_ha/6 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction index 7c56f792e..0c1e9f80a 100644 --- a/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction +++ b/data/ai/function/skill/laser/loop/kame_hame_ha/7.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-3.5 ~-3.5 ~-3.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/kame_hame_ha/7 +function makeup:ai/skill/laser/loop/kame_hame_ha/7 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction index af7ec44c1..eb275a2af 100644 --- a/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/lightning_laser/.mcfunction @@ -4,7 +4,7 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectato execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/lightning_laser/trail +function makeup:ai/skill/laser/loop/lightning_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction index 8f35b43ec..dd4c54f4e 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/piglin_snipe/damage execute positioned ~-0.5 ~-0.5 ~-0.5 unless block ^ ^ ^ #block:no_collision run data modify storage mob_data: Call.Loop set value 0 #演出 -function makeup:skill/enemy/laser/loop/piglin_snipe/trail +function makeup:ai/skill/laser/loop/piglin_snipe/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction index 653bfdb6c..25ae884f2 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/piglin_snipe/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/piglin_snipe/firework +function makeup:ai/skill/laser/loop/piglin_snipe/firework diff --git a/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction b/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction index 29dd178f2..f53b5b67c 100644 --- a/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction +++ b/data/ai/function/skill/laser/loop/piglin_snipe/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/piglin_snipe/end -function makeup:skill/enemy/laser/loop/piglin_snipe/firework +function makeup:ai/skill/laser/loop/piglin_snipe/firework diff --git a/data/ai/function/skill/laser/loop/red_laser/.mcfunction b/data/ai/function/skill/laser/loop/red_laser/.mcfunction index 43e9f9462..e6162df43 100644 --- a/data/ai/function/skill/laser/loop/red_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/.mcfunction @@ -2,7 +2,7 @@ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/red_laser/damage #演出 -function makeup:skill/enemy/laser/loop/red_laser/trail +function makeup:ai/skill/laser/loop/red_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction index 09a085089..f21508b1f 100644 --- a/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/red_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/red_laser/spark +function makeup:ai/skill/laser/loop/red_laser/spark diff --git a/data/ai/function/skill/laser/loop/red_laser/end.mcfunction b/data/ai/function/skill/laser/loop/red_laser/end.mcfunction index fac4b7bc2..157715846 100644 --- a/data/ai/function/skill/laser/loop/red_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/red_laser/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/red_laser/end -function makeup:skill/enemy/laser/loop/red_laser/spark +function makeup:ai/skill/laser/loop/red_laser/spark diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction index 850a1fc9b..992578120 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/.mcfunction @@ -3,8 +3,8 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/dual/damage #演出 -function makeup:skill/enemy/laser/loop/security_laser/dual/ -execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/security_laser/dual/spiral1 +function makeup:ai/skill/laser/loop/security_laser/dual/ +execute positioned ^ ^ ^-0.25 run function makeup:ai/skill/laser/loop/security_laser/dual/spiral1 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction index 5c236eb94..398c7b856 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/1.mcfunction @@ -3,8 +3,8 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/dual/damage #演出 -function makeup:skill/enemy/laser/loop/security_laser/dual/ -execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/security_laser/dual/spiral2 +function makeup:ai/skill/laser/loop/security_laser/dual/ +execute positioned ^ ^ ^-0.25 run function makeup:ai/skill/laser/loop/security_laser/dual/spiral2 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction index cfd8eed7d..aabad5c17 100644 --- a/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/dual/2.mcfunction @@ -3,8 +3,8 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/dual/damage #演出 -function makeup:skill/enemy/laser/loop/security_laser/dual/ -execute positioned ^ ^ ^-0.25 run function makeup:skill/enemy/laser/loop/security_laser/dual/spiral3 +function makeup:ai/skill/laser/loop/security_laser/dual/ +execute positioned ^ ^ ^-0.25 run function makeup:ai/skill/laser/loop/security_laser/dual/spiral3 #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction index 9f3d0227a..b17972def 100644 --- a/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction +++ b/data/ai/function/skill/laser/loop/security_laser/single/.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @e[predicate=entity:friendly,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/security_laser/single/damage #演出 -function makeup:skill/enemy/laser/loop/security_laser/single/ +function makeup:ai/skill/laser/loop/security_laser/single/ #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/test.mcfunction b/data/ai/function/skill/laser/loop/test.mcfunction index 9f75b436d..eabd79e42 100644 --- a/data/ai/function/skill/laser/loop/test.mcfunction +++ b/data/ai/function/skill/laser/loop/test.mcfunction @@ -3,7 +3,7 @@ execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,nbt={DeathTime:0s},scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/main/damage #演出 -function makeup:skill/enemy/laser/loop/test +function makeup:ai/skill/laser/loop/test #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction index 3e6b1007f..fdbdb45d3 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/.mcfunction @@ -2,7 +2,7 @@ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/violet_laser/damage #演出 -function makeup:skill/enemy/laser/loop/violet_laser/trail +function makeup:ai/skill/laser/loop/violet_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction index 604c5b86b..f959dc49c 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/violet_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/violet_laser/spark +function makeup:ai/skill/laser/loop/violet_laser/spark diff --git a/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction b/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction index 3dfc2bff7..677ef6140 100644 --- a/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/violet_laser/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/violet_laser/end -function makeup:skill/enemy/laser/loop/violet_laser/spark +function makeup:ai/skill/laser/loop/violet_laser/spark diff --git a/data/ai/function/skill/laser/loop/white_laser/.mcfunction b/data/ai/function/skill/laser/loop/white_laser/.mcfunction index 8d0ab6b93..5ae75534b 100644 --- a/data/ai/function/skill/laser/loop/white_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/.mcfunction @@ -2,7 +2,7 @@ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/white_laser/damage #演出 -function makeup:skill/enemy/laser/loop/white_laser/trail +function makeup:ai/skill/laser/loop/white_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction index 72d5a2e54..de0682a65 100644 --- a/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/white_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/white_laser/spark +function makeup:ai/skill/laser/loop/white_laser/spark diff --git a/data/ai/function/skill/laser/loop/white_laser/end.mcfunction b/data/ai/function/skill/laser/loop/white_laser/end.mcfunction index 4d377e78d..486ef1401 100644 --- a/data/ai/function/skill/laser/loop/white_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/white_laser/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/white_laser/end -function makeup:skill/enemy/laser/loop/white_laser/spark +function makeup:ai/skill/laser/loop/white_laser/spark diff --git a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction index f95c3f02c..fe11d15d3 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/.mcfunction @@ -2,7 +2,7 @@ #ダメージ処理 execute positioned ~-0.5 ~-0.5 ~-0.5 as @a[gamemode=!creative,gamemode=!spectator,scores={ProjectileTime=0..},dx=0,dy=0,dz=0] run function ai:skill/laser/loop/yellow_laser/damage #演出 -function makeup:skill/enemy/laser/loop/yellow_laser/trail +function makeup:ai/skill/laser/loop/yellow_laser/trail #ループ処理 execute store result storage mob_data: Call.Loop int 0.99999 run data get storage mob_data: Call.Loop diff --git a/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction index 141aa0f02..ec9bb4831 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/damage.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/laser/loop/yellow_laser/damage data modify storage mob_data: Call.Loop set value 0 -function makeup:skill/enemy/laser/loop/yellow_laser/spark +function makeup:ai/skill/laser/loop/yellow_laser/spark diff --git a/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction b/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction index 36322edcb..199215825 100644 --- a/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction +++ b/data/ai/function/skill/laser/loop/yellow_laser/end.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/laser/loop/yellow_laser/end -function makeup:skill/enemy/laser/loop/yellow_laser/spark +function makeup:ai/skill/laser/loop/yellow_laser/spark diff --git a/data/ai/function/skill/reraise/death_cancel.mcfunction b/data/ai/function/skill/reraise/death_cancel.mcfunction index 5dce026e4..41c63d450 100644 --- a/data/ai/function/skill/reraise/death_cancel.mcfunction +++ b/data/ai/function/skill/reraise/death_cancel.mcfunction @@ -12,5 +12,5 @@ execute unless score @s _ matches 0 store result storage oh_my_dat: _[-4][-4][-4 execute if score @s _ matches 0 run function ai:skill/reraise/remove_raise ### 演出 ### -function makeup:skill/enemy/reraise/death_cancel +function makeup:ai/skill/reraise/death_cancel diff --git a/data/ai/function/skill/teleport/.mcfunction b/data/ai/function/skill/teleport/.mcfunction index 4c2bc0d95..c4057ab98 100644 --- a/data/ai/function/skill/teleport/.mcfunction +++ b/data/ai/function/skill/teleport/.mcfunction @@ -2,4 +2,4 @@ #実行位置にTPする ブロックにめり込む場合は後方に補正 function ai:skill/teleport/loop #演出 -execute if data storage mob_data: Call{Message:1b} run function makeup:skill/enemy/teleport +execute if data storage mob_data: Call{Message:1b} run function makeup:ai/skill/teleport diff --git a/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction index 534039bf5..7fe71cb63 100644 --- a/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction +++ b/data/makeup/function/ai/skill/delay_action/casting/cast/normal/particle/.mcfunction @@ -1,37 +1,37 @@ #> makeup:ai/skill/delay_action/casting/cast/normal/particle/ -execute rotated 0 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 10 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 20 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 30 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 40 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 50 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 60 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 70 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 80 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 90 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 100 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 110 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 120 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 130 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 140 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 150 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 160 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 170 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 180 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 190 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 200 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 210 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 220 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 230 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 240 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 250 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 260 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 270 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 280 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 290 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 300 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 310 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 320 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 330 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 340 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework -execute rotated 350 0 run function makeup:skill/enemy/delay_action/casting/cast/normal/particle/firework +execute rotated 0 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 10 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 20 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 30 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 40 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 50 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 60 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 70 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 80 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 90 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 100 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 110 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 120 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 130 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 140 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 150 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 160 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 170 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 180 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 190 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 200 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 210 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 220 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 230 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 240 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 250 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 260 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 270 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 280 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 290 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 300 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 310 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 320 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 330 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 340 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework +execute rotated 350 0 run function makeup:ai/skill/delay_action/casting/cast/normal/particle/firework From fdc4c1ae81000564aff9a81ce5c33a00460d9c60 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:23:26 +0900 Subject: [PATCH 11/27] =?UTF-8?q?GH-790=20Modify=20=E5=B9=BB=E5=BD=B1=20?= =?UTF-8?q?=E5=AF=BE=E8=B1=A1=E3=83=80=E3=83=A1=E3=83=BC=E3=82=B8=E3=82=BF?= =?UTF-8?q?=E3=82=A4=E3=83=97=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/blink/activate/.mcfunction | 2 ++ data/ai/function/skill/blink/cast/default.mcfunction | 2 +- data/enemy/function/damage/hit.mcfunction | 3 +++ data/entity/function/damage/apply/magic.mcfunction | 3 +++ data/entity/function/damage/apply/physical.mcfunction | 3 +++ data/entity/function/damage/apply/unreasonable.mcfunction | 3 +++ 6 files changed, 15 insertions(+), 1 deletion(-) diff --git a/data/ai/function/skill/blink/activate/.mcfunction b/data/ai/function/skill/blink/activate/.mcfunction index 70a863899..f47985772 100644 --- a/data/ai/function/skill/blink/activate/.mcfunction +++ b/data/ai/function/skill/blink/activate/.mcfunction @@ -4,5 +4,7 @@ scoreboard players set @s _ 0 data modify storage mob_data: Blink set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].Blink execute if entity @s[tag=ReceivedPhysicalDamage] if data storage mob_data: Blink{TriggerOn:[Physical]} run scoreboard players set @s _ 1 +execute if entity @s[tag=ReceivedMagicDamage] if data storage mob_data: Blink{TriggerOn:[Magic]} run scoreboard players set @s _ 1 +execute if entity @s[tag=ReceivedUnreasonableDamage] if data storage mob_data: Blink{TriggerOn:[Unreasonable]} run scoreboard players set @s _ 1 execute if score @s _ matches 1 run function ai:skill/blink/activate/roll diff --git a/data/ai/function/skill/blink/cast/default.mcfunction b/data/ai/function/skill/blink/cast/default.mcfunction index bcaeb5125..2a6c43b03 100644 --- a/data/ai/function/skill/blink/cast/default.mcfunction +++ b/data/ai/function/skill/blink/cast/default.mcfunction @@ -1,2 +1,2 @@ #> ai:skill/blink/cast/default -data modify storage mob_data: Blink.TriggerOn set value ["Physical","Fire","Ice","Lightning","Light","Dark"] +data modify storage mob_data: Blink.TriggerOn set value ["Physical","Magic","Unreasonable"] diff --git a/data/enemy/function/damage/hit.mcfunction b/data/enemy/function/damage/hit.mcfunction index 9e0fcbe0b..0e6f82c72 100644 --- a/data/enemy/function/damage/hit.mcfunction +++ b/data/enemy/function/damage/hit.mcfunction @@ -8,3 +8,6 @@ function enemy:show_damage/ #リセット tag @s remove HitDamageTaken +tag @s remove ReceivedPhysicalDamage +tag @s remove ReceivedMagicDamage +tag @s remove ReceivedUnreasonableDamage diff --git a/data/entity/function/damage/apply/magic.mcfunction b/data/entity/function/damage/apply/magic.mcfunction index 1104a3dd4..d2929d910 100644 --- a/data/entity/function/damage/apply/magic.mcfunction +++ b/data/entity/function/damage/apply/magic.mcfunction @@ -7,3 +7,6 @@ data modify storage entity:_ damage.value set from storage entity: damage.magic # core処理を実行 function entity:damage/apply/core/ + +# 被弾フラグ +tag @s add ReceivedMagicDamage diff --git a/data/entity/function/damage/apply/physical.mcfunction b/data/entity/function/damage/apply/physical.mcfunction index d38ea8fac..b63c717e2 100644 --- a/data/entity/function/damage/apply/physical.mcfunction +++ b/data/entity/function/damage/apply/physical.mcfunction @@ -7,3 +7,6 @@ data modify storage entity:_ damage.value set from storage entity: damage.physic # core処理を実行 function entity:damage/apply/core/ + +# 被弾フラグ +tag @s add ReceivedPhysicalDamage diff --git a/data/entity/function/damage/apply/unreasonable.mcfunction b/data/entity/function/damage/apply/unreasonable.mcfunction index e2b0c0acc..f68ba92d8 100644 --- a/data/entity/function/damage/apply/unreasonable.mcfunction +++ b/data/entity/function/damage/apply/unreasonable.mcfunction @@ -7,3 +7,6 @@ data modify storage entity:_ damage.value set from storage entity: damage.unreas # core処理を実行 function entity:damage/apply/core/ + +# 被弾フラグ +tag @s add ReceivedUnreasonableDamage From bfd2b8a088ff4fb3d3bb0a3e4b782e96e34a98fe Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:26:05 +0900 Subject: [PATCH 12/27] GH-790 Remove ChangeMove --- data/ai/function/skill/change_move/.mcfunction | 9 --------- .../ai/function/skill/change_move/front.mcfunction | 14 -------------- .../skill/change_move/horizontal.mcfunction | 14 -------------- .../ai/function/skill/change_move/range.mcfunction | 6 ------ data/ai/function/skill/change_move/side.mcfunction | 14 -------------- data/ai/function/skill/change_move/up.mcfunction | 14 -------------- .../function/skill/change_move/vertical.mcfunction | 14 -------------- 7 files changed, 85 deletions(-) delete mode 100644 data/ai/function/skill/change_move/.mcfunction delete mode 100644 data/ai/function/skill/change_move/front.mcfunction delete mode 100644 data/ai/function/skill/change_move/horizontal.mcfunction delete mode 100644 data/ai/function/skill/change_move/range.mcfunction delete mode 100644 data/ai/function/skill/change_move/side.mcfunction delete mode 100644 data/ai/function/skill/change_move/up.mcfunction delete mode 100644 data/ai/function/skill/change_move/vertical.mcfunction diff --git a/data/ai/function/skill/change_move/.mcfunction b/data/ai/function/skill/change_move/.mcfunction deleted file mode 100644 index e1e792b8a..000000000 --- a/data/ai/function/skill/change_move/.mcfunction +++ /dev/null @@ -1,9 +0,0 @@ -#> ai:skill/change_move/ -execute if data storage mob_data: Call.Front run function ai:skill/change_move/front -execute if data storage mob_data: Call.Side run function ai:skill/change_move/side -execute if data storage mob_data: Call.Up run function ai:skill/change_move/up -execute if data storage mob_data: Call.Horizontal run function ai:skill/change_move/horizontal -execute if data storage mob_data: Call.Vertical run function ai:skill/change_move/vertical - -#データを元に戻す -data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI diff --git a/data/ai/function/skill/change_move/front.mcfunction b/data/ai/function/skill/change_move/front.mcfunction deleted file mode 100644 index f2808f3dd..000000000 --- a/data/ai/function/skill/change_move/front.mcfunction +++ /dev/null @@ -1,14 +0,0 @@ -#> ai:skill/change_move/front -#Set, Add -execute store result score @s Calc run data get storage mob_data: Call.Front.Add 100 -execute store result score @s _ run data get storage mob_data: Call.Front.Range 100 -execute unless score @s _ matches 0 run function ai:skill/change_move/range -execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Front 100 -execute if data storage mob_data: Call.Front.Set store result score _ Calc run data get storage mob_data: Call.Front.Set 100 -scoreboard players operation _ Calc += @s Calc -#Limit -execute if data storage mob_data: Call.Front.Limit store result score @s _ run data get storage mob_data: Call.Front.Limit 100 -execute if score @s Calc matches 1.. if data storage mob_data: Call.Front.Limit run scoreboard players operation _ Calc < @s _ -execute if score @s Calc matches ..-1 if data storage mob_data: Call.Front.Limit run scoreboard players operation _ Calc > @s _ - -execute store result storage mob_data: AI.Turn[0].Move.Front double 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/horizontal.mcfunction b/data/ai/function/skill/change_move/horizontal.mcfunction deleted file mode 100644 index 14ea69c8a..000000000 --- a/data/ai/function/skill/change_move/horizontal.mcfunction +++ /dev/null @@ -1,14 +0,0 @@ -#> ai:skill/change_move/horizontal -#Set, Add -execute store result score @s Calc run data get storage mob_data: Call.Horizontal.Add 100 -execute store result score @s _ run data get storage mob_data: Call.Horizontal.Range 100 -execute unless score @s _ matches 0 run function ai:skill/change_move/range -execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Rotate[0] 100 -execute if data storage mob_data: Call.Horizontal.Set store result score _ Calc run data get storage mob_data: Call.Horizontal.Set 100 -scoreboard players operation _ Calc += @s Calc -#Limit -execute if data storage mob_data: Call.Horizontal.Limit store result score @s _ run data get storage mob_data: Call.Horizontal.Limit 100 -execute if score @s Calc matches 1.. if data storage mob_data: Call.Horizontal.Limit run scoreboard players operation _ Calc < @s _ -execute if score @s Calc matches ..-1 if data storage mob_data: Call.Horizontal.Limit run scoreboard players operation _ Calc > @s _ - -execute store result storage mob_data: AI.Turn[0].Rotate[0] float 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/range.mcfunction b/data/ai/function/skill/change_move/range.mcfunction deleted file mode 100644 index 5ec042d53..000000000 --- a/data/ai/function/skill/change_move/range.mcfunction +++ /dev/null @@ -1,6 +0,0 @@ -#> ai:skill/change_move/range -#RangeをAddに足す -execute store result score _ Calc run function calc:random -scoreboard players add @s _ 1 -scoreboard players operation _ Calc %= @s _ -scoreboard players operation @s Calc += _ Calc diff --git a/data/ai/function/skill/change_move/side.mcfunction b/data/ai/function/skill/change_move/side.mcfunction deleted file mode 100644 index 9f1594084..000000000 --- a/data/ai/function/skill/change_move/side.mcfunction +++ /dev/null @@ -1,14 +0,0 @@ -#> ai:skill/change_move/side -#Set, Add -execute store result score @s Calc run data get storage mob_data: Call.Side.Add 100 -execute store result score @s _ run data get storage mob_data: Call.Side.Range 100 -execute unless score @s _ matches 0 run function ai:skill/change_move/range -execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Side 100 -execute if data storage mob_data: Call.Side.Set store result score _ Calc run data get storage mob_data: Call.Side.Set 100 -scoreboard players operation _ Calc += @s Calc -#Limit -execute if data storage mob_data: Call.Side.Limit store result score @s _ run data get storage mob_data: Call.Side.Limit 100 -execute if score @s Calc matches 1.. if data storage mob_data: Call.Side.Limit run scoreboard players operation _ Calc < @s _ -execute if score @s Calc matches ..-1 if data storage mob_data: Call.Side.Limit run scoreboard players operation _ Calc > @s _ - -execute store result storage mob_data: AI.Turn[0].Move.Side double 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/up.mcfunction b/data/ai/function/skill/change_move/up.mcfunction deleted file mode 100644 index d9bf76042..000000000 --- a/data/ai/function/skill/change_move/up.mcfunction +++ /dev/null @@ -1,14 +0,0 @@ -#> ai:skill/change_move/up -#Set, Add -execute store result score @s Calc run data get storage mob_data: Call.Up.Add 100 -execute store result score @s _ run data get storage mob_data: Call.Up.Range 100 -execute unless score @s _ matches 0 run function ai:skill/change_move/range -execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Move.Up 100 -execute if data storage mob_data: Call.Up.Set store result score _ Calc run data get storage mob_data: Call.Up.Set 100 -scoreboard players operation _ Calc += @s Calc -#Limit -execute if data storage mob_data: Call.Up.Limit store result score @s _ run data get storage mob_data: Call.Up.Limit 100 -execute if score @s Calc matches 1.. if data storage mob_data: Call.Up.Limit run scoreboard players operation _ Calc < @s _ -execute if score @s Calc matches ..-1 if data storage mob_data: Call.Up.Limit run scoreboard players operation _ Calc > @s _ - -execute store result storage mob_data: AI.Turn[0].Move.Up double 0.01 run scoreboard players get _ Calc diff --git a/data/ai/function/skill/change_move/vertical.mcfunction b/data/ai/function/skill/change_move/vertical.mcfunction deleted file mode 100644 index 7f45f582c..000000000 --- a/data/ai/function/skill/change_move/vertical.mcfunction +++ /dev/null @@ -1,14 +0,0 @@ -#> ai:skill/change_move/vertical -#Set, Add -execute store result score @s Calc run data get storage mob_data: Call.Vertical.Add 100 -execute store result score @s _ run data get storage mob_data: Call.Vertical.Range 100 -execute unless score @s _ matches 0 run function ai:skill/change_move/range -execute store result score _ Calc run data get storage mob_data: AI.Turn[0].Rotate[1] 100 -execute if data storage mob_data: Call.Vertical.Set store result score _ Calc run data get storage mob_data: Call.Vertical.Set 100 -scoreboard players operation _ Calc += @s Calc -#Limit -execute if data storage mob_data: Call.Vertical.Limit store result score @s _ run data get storage mob_data: Call.Vertical.Limit 100 -execute if score @s Calc matches 1.. if data storage mob_data: Call.Vertical.Limit run scoreboard players operation _ Calc < @s _ -execute if score @s Calc matches ..-1 if data storage mob_data: Call.Vertical.Limit run scoreboard players operation _ Calc > @s _ - -execute store result storage mob_data: AI.Turn[0].Rotate[1] float 0.01 run scoreboard players get _ Calc From 2f58334c9f4350eadd1198500ac1234a6d9b4ef5 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:33:35 +0900 Subject: [PATCH 13/27] =?UTF-8?q?GH-790=20Add=20=E5=85=B1=E9=80=9ARange?= =?UTF-8?q?=E5=87=A6=E7=90=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/change_status/attack.mcfunction | 2 +- data/ai/function/skill/change_status/defense.mcfunction | 2 +- data/ai/function/skill/change_status/hp.mcfunction | 2 +- data/ai/function/skill/change_status/level/.mcfunction | 2 +- .../ai/function/skill/change_status/magic_attack.mcfunction | 2 +- .../function/skill/change_status/magic_defense.mcfunction | 2 +- data/ai/function/skill/change_status/mp.mcfunction | 2 +- data/ai/function/skill/common.range.mcfunction | 6 ++++++ data/ai/function/skill/smart_motion/gravity.mcfunction | 2 +- data/ai/function/skill/smart_motion/speed.mcfunction | 2 +- 10 files changed, 15 insertions(+), 9 deletions(-) create mode 100644 data/ai/function/skill/common.range.mcfunction diff --git a/data/ai/function/skill/change_status/attack.mcfunction b/data/ai/function/skill/change_status/attack.mcfunction index 59871ab32..5d275b75e 100644 --- a/data/ai/function/skill/change_status/attack.mcfunction +++ b/data/ai/function/skill/change_status/attack.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Attack.Add execute store result score @s _ run data get storage mob_data: Call.Attack.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."物理攻撃力" execute if data storage mob_data: Call.Attack.Set store result score _ Calc run data get storage mob_data: Call.Attack.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/defense.mcfunction b/data/ai/function/skill/change_status/defense.mcfunction index b6c4747a2..85e1f3214 100644 --- a/data/ai/function/skill/change_status/defense.mcfunction +++ b/data/ai/function/skill/change_status/defense.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Defense.Add execute store result score @s _ run data get storage mob_data: Call.Defense.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."物理防御力" execute if data storage mob_data: Call.Defense.Set store result score _ Calc run data get storage mob_data: Call.Defense.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/hp.mcfunction b/data/ai/function/skill/change_status/hp.mcfunction index 99eb61377..bb640b056 100644 --- a/data/ai/function/skill/change_status/hp.mcfunction +++ b/data/ai/function/skill/change_status/hp.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.HP.Add execute store result score @s _ run data get storage mob_data: Call.HP.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."最大HP" execute if data storage mob_data: Call.HP.Set store result score _ Calc run data get storage mob_data: Call.HP.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/level/.mcfunction b/data/ai/function/skill/change_status/level/.mcfunction index a9bb9ed3a..926d73597 100644 --- a/data/ai/function/skill/change_status/level/.mcfunction +++ b/data/ai/function/skill/change_status/level/.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Level.Add execute store result score @s _ run data get storage mob_data: Call.Level.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute if data storage mob_data: Call.Level.Set store result score @s Level run data get storage mob_data: Call.Level.Set scoreboard players operation @s Level += @s Calc #Limit diff --git a/data/ai/function/skill/change_status/magic_attack.mcfunction b/data/ai/function/skill/change_status/magic_attack.mcfunction index 1117eaa27..a417f4c4e 100644 --- a/data/ai/function/skill/change_status/magic_attack.mcfunction +++ b/data/ai/function/skill/change_status/magic_attack.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MagicAttack.Add execute store result score @s _ run data get storage mob_data: Call.MagicAttack.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法攻撃力" execute if data storage mob_data: Call.MagicAttack.Set store result score _ Calc run data get storage mob_data: Call.MagicAttack.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/magic_defense.mcfunction b/data/ai/function/skill/change_status/magic_defense.mcfunction index 8a377d095..b1a55a4f1 100644 --- a/data/ai/function/skill/change_status/magic_defense.mcfunction +++ b/data/ai/function/skill/change_status/magic_defense.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MagicDefence.Add execute store result score @s _ run data get storage mob_data: Call.MagicDefence.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法防御力" execute if data storage mob_data: Call.MagicDefence.Set store result score _ Calc run data get storage mob_data: Call.MagicDefence.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/change_status/mp.mcfunction b/data/ai/function/skill/change_status/mp.mcfunction index 6978f0b49..fa8df7b25 100644 --- a/data/ai/function/skill/change_status/mp.mcfunction +++ b/data/ai/function/skill/change_status/mp.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.MP.Add execute store result score @s _ run data get storage mob_data: Call.MP.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."最大MP" execute if data storage mob_data: Call.MP.Set store result score _ Calc run data get storage mob_data: Call.MP.Set scoreboard players operation _ Calc += @s Calc diff --git a/data/ai/function/skill/common.range.mcfunction b/data/ai/function/skill/common.range.mcfunction new file mode 100644 index 000000000..1bbc7d391 --- /dev/null +++ b/data/ai/function/skill/common.range.mcfunction @@ -0,0 +1,6 @@ +#> ai:skill/common.range +#RangeをAddに足す +execute store result score _ Calc run function calc:random +scoreboard players add @s _ 1 +scoreboard players operation _ Calc %= @s _ +scoreboard players operation @s Calc += _ Calc diff --git a/data/ai/function/skill/smart_motion/gravity.mcfunction b/data/ai/function/skill/smart_motion/gravity.mcfunction index 90f23b2f8..d0f5afe2d 100644 --- a/data/ai/function/skill/smart_motion/gravity.mcfunction +++ b/data/ai/function/skill/smart_motion/gravity.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Gravity.Add execute store result score @s _ run data get storage mob_data: Call.Gravity.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute if data storage mob_data: Call.Gravity.Set store result score @s sm.Gravity run data get storage mob_data: Call.Gravity.Set scoreboard players operation @s sm.Gravity += @s Calc #Limit diff --git a/data/ai/function/skill/smart_motion/speed.mcfunction b/data/ai/function/skill/smart_motion/speed.mcfunction index 29e313994..c12fe2d51 100644 --- a/data/ai/function/skill/smart_motion/speed.mcfunction +++ b/data/ai/function/skill/smart_motion/speed.mcfunction @@ -2,7 +2,7 @@ #Set, Add execute store result score @s Calc run data get storage mob_data: Call.Speed.Add execute store result score @s _ run data get storage mob_data: Call.Speed.Range -execute unless score @s _ matches 0 run function ai:skill/change_move/range +execute unless score @s _ matches 0 run function ai:skill/common.range execute if data storage mob_data: Call.Speed.Set store result score @s sm.Speed run data get storage mob_data: Call.Speed.Set scoreboard players operation @s sm.Speed += @s Calc #Limit From c4eaf6f476f23b9e169c08bb0856c6a477c51ddb Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:40:14 +0900 Subject: [PATCH 14/27] =?UTF-8?q?NO-ISSUE=20Fix=20=E7=90=86=E5=A4=96?= =?UTF-8?q?=E9=98=B2=E5=BE=A1=E5=8A=9B=E3=81=AE=E3=83=95=E3=82=A1=E3=82=A4?= =?UTF-8?q?=E3=83=AB=E5=90=8D=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/entity/function/spawn/apply_status/mob.mcfunction | 2 +- ...nable_defence.mcfunction => unreasonable_defense.mcfunction} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename data/entity/function/spawn/apply_status/status/{unreasonable_defence.mcfunction => unreasonable_defense.mcfunction} (86%) diff --git a/data/entity/function/spawn/apply_status/mob.mcfunction b/data/entity/function/spawn/apply_status/mob.mcfunction index 36172910d..6d88a5808 100644 --- a/data/entity/function/spawn/apply_status/mob.mcfunction +++ b/data/entity/function/spawn/apply_status/mob.mcfunction @@ -19,7 +19,7 @@ function entity:spawn/apply_status/status/hp function entity:spawn/apply_status/status/mp function entity:spawn/apply_status/status/defense function entity:spawn/apply_status/status/magic_defense -function entity:spawn/apply_status/status/unreasonable_defence +function entity:spawn/apply_status/status/unreasonable_defense scoreboard players operation @s HP = @s HPMax scoreboard players operation @s MP = @s MPMax diff --git a/data/entity/function/spawn/apply_status/status/unreasonable_defence.mcfunction b/data/entity/function/spawn/apply_status/status/unreasonable_defense.mcfunction similarity index 86% rename from data/entity/function/spawn/apply_status/status/unreasonable_defence.mcfunction rename to data/entity/function/spawn/apply_status/status/unreasonable_defense.mcfunction index f255703de..8f4815ef1 100644 --- a/data/entity/function/spawn/apply_status/status/unreasonable_defence.mcfunction +++ b/data/entity/function/spawn/apply_status/status/unreasonable_defense.mcfunction @@ -1,4 +1,4 @@ -#> entity:spawn/apply_status/status/unreasonable_defence +#> entity:spawn/apply_status/status/unreasonable_defense scoreboard players set _ _ 100 ### 理外防御力を計算する execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."理外防御力" 1 From e6614d504accfccad783903baa2a983d666b969c Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:46:43 +0900 Subject: [PATCH 15/27] =?UTF-8?q?GH-790=20Add=20ChangeStatus=20=E7=90=86?= =?UTF-8?q?=E5=A4=96=E5=B1=9E=E6=80=A7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/change_status/.mcfunction | 2 ++ .../skill/change_status/level/.mcfunction | 6 ++++-- .../change_status/unreasonable_attack.mcfunction | 15 +++++++++++++++ .../change_status/unreasonable_defense.mcfunction | 15 +++++++++++++++ 4 files changed, 36 insertions(+), 2 deletions(-) create mode 100644 data/ai/function/skill/change_status/unreasonable_attack.mcfunction create mode 100644 data/ai/function/skill/change_status/unreasonable_defense.mcfunction diff --git a/data/ai/function/skill/change_status/.mcfunction b/data/ai/function/skill/change_status/.mcfunction index 55c970f13..52bcd6c2e 100644 --- a/data/ai/function/skill/change_status/.mcfunction +++ b/data/ai/function/skill/change_status/.mcfunction @@ -8,6 +8,8 @@ execute if data storage mob_data: Call.Attack run function ai:skill/change_statu execute if data storage mob_data: Call.Defense run function ai:skill/change_status/defense execute if data storage mob_data: Call.MagicAttack run function ai:skill/change_status/magic_attack execute if data storage mob_data: Call.MagicDefence run function ai:skill/change_status/magic_defense +execute if data storage mob_data: Call.UnreasonableAttack run function ai:skill/change_status/unreasonable_attack +execute if data storage mob_data: Call.UnreasonableDefence run function ai:skill/change_status/unreasonable_defense #データを元に戻す data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス" set from storage tusb_mob: "遅延ステータス"."ステータス" diff --git a/data/ai/function/skill/change_status/level/.mcfunction b/data/ai/function/skill/change_status/level/.mcfunction index 926d73597..dcfd3a298 100644 --- a/data/ai/function/skill/change_status/level/.mcfunction +++ b/data/ai/function/skill/change_status/level/.mcfunction @@ -12,8 +12,10 @@ execute if score @s Calc matches ..-1 if data storage mob_data: Call.Level.Limit function entity:spawn/apply_status/status/attack function entity:spawn/apply_status/status/defense -function entity:spawn/apply_status/status/special_attack -function entity:spawn/apply_status/status/special_defense +function entity:spawn/apply_status/status/magic_attack +function entity:spawn/apply_status/status/magic_defense +function entity:spawn/apply_status/status/unreasonable_attack +function entity:spawn/apply_status/status/unreasonable_defense #現在HPの補正 scoreboard players set _ _ 1000 scoreboard players operation @s HP *= _ _ diff --git a/data/ai/function/skill/change_status/unreasonable_attack.mcfunction b/data/ai/function/skill/change_status/unreasonable_attack.mcfunction new file mode 100644 index 000000000..4fecaab87 --- /dev/null +++ b/data/ai/function/skill/change_status/unreasonable_attack.mcfunction @@ -0,0 +1,15 @@ +#> ai:skill/change_status/unreasonable_attack +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.MagicAttack.Add +execute store result score @s _ run data get storage mob_data: Call.MagicAttack.Range +execute unless score @s _ matches 0 run function ai:skill/common.range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."理外攻撃力" +execute if data storage mob_data: Call.MagicAttack.Set store result score _ Calc run data get storage mob_data: Call.MagicAttack.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.MagicAttack.Limit store result score @s _ run data get storage mob_data: Call.MagicAttack.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.MagicAttack.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.MagicAttack.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."魔法攻撃力" int 1 run scoreboard players get _ Calc +function entity:spawn/apply_status/status/unreasonable_attack diff --git a/data/ai/function/skill/change_status/unreasonable_defense.mcfunction b/data/ai/function/skill/change_status/unreasonable_defense.mcfunction new file mode 100644 index 000000000..d118b7a6f --- /dev/null +++ b/data/ai/function/skill/change_status/unreasonable_defense.mcfunction @@ -0,0 +1,15 @@ +#> ai:skill/change_status/unreasonable_defense +#Set, Add +execute store result score @s Calc run data get storage mob_data: Call.MagicDefence.Add +execute store result score @s _ run data get storage mob_data: Call.MagicDefence.Range +execute unless score @s _ matches 0 run function ai:skill/common.range +execute store result score _ Calc run data get storage tusb_mob: "遅延ステータス"."ステータス"."魔法防御力" +execute if data storage mob_data: Call.MagicDefence.Set store result score _ Calc run data get storage mob_data: Call.MagicDefence.Set +scoreboard players operation _ Calc += @s Calc +#Limit +execute if data storage mob_data: Call.MagicDefence.Limit store result score @s _ run data get storage mob_data: Call.MagicDefence.Limit +execute if score @s Calc matches 1.. if data storage mob_data: Call.MagicDefence.Limit run scoreboard players operation _ Calc < @s _ +execute if score @s Calc matches ..-1 if data storage mob_data: Call.MagicDefence.Limit run scoreboard players operation _ Calc > @s _ + +execute store result storage tusb_mob: "遅延ステータス"."ステータス"."魔法防御力" int 1 run scoreboard players get _ Calc +function entity:spawn/apply_status/status/unreasonable_defense From c5f9b682c5c86921b227ff3c81f5f4904d6bc10d Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 18:47:16 +0900 Subject: [PATCH 16/27] =?UTF-8?q?GH-790=20Fix=20ChangeStatus=20=E3=83=AC?= =?UTF-8?q?=E3=83=99=E3=83=AB=E5=A4=89=E6=9B=B4=E6=99=82=E5=90=8D=E5=89=8D?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E3=82=92=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ai/function/skill/change_status/level/rename.mcfunction | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/data/ai/function/skill/change_status/level/rename.mcfunction b/data/ai/function/skill/change_status/level/rename.mcfunction index f6b7c5819..f98018979 100644 --- a/data/ai/function/skill/change_status/level/rename.mcfunction +++ b/data/ai/function/skill/change_status/level/rename.mcfunction @@ -1,8 +1,8 @@ #> ai:skill/change_status/level/rename data modify entity @s CustomName set from storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName -execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName run data modify entity @s CustomName set value '' +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName run data modify entity @s CustomName set value '""' execute in area:control_area run loot replace block 2 2 2 container.0 loot entity:name_with_level -execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName in area:control_area run data modify entity @s CustomName set from block 2 2 2 Items[0].tag.display.Lore[0] -execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName in area:control_area run data modify entity @s CustomName set from block 2 2 2 Items[0].tag.display.Lore[1] +execute if data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName in area:control_area run data modify entity @s CustomName set from block 2 2 2 Items[0].components."minecraft:lore"[0] +execute unless data storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4]."ステータス".CustomName in area:control_area run data modify entity @s CustomName set from block 2 2 2 Items[0].components."minecraft:lore"[1] execute if entity @s[tag=LifeScouter] run data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].LifeScouter.OriginalName set from entity @s CustomName From 856e194e3cc699d8c180a2b59cd9f30862822cd1 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 21:46:57 +0900 Subject: [PATCH 17/27] =?UTF-8?q?GH-790=20Modify=20function=E5=91=BC?= =?UTF-8?q?=E3=81=B3=E5=87=BA=E3=81=97=E3=83=91=E3=82=B9=E3=82=92=E5=A4=89?= =?UTF-8?q?=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/function/.mcfunction | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/ai/function/skill/function/.mcfunction b/data/ai/function/skill/function/.mcfunction index f8fd48cd8..e328e9d7b 100644 --- a/data/ai/function/skill/function/.mcfunction +++ b/data/ai/function/skill/function/.mcfunction @@ -4,6 +4,6 @@ data modify storage mob_data: Tags set from entity @s Tags data modify entity @s Tags set from storage mob_data: Call.Tags #function呼び出し -function settings:enemy/ +function #entity:spawn_data #Tagsを復元 data modify entity @s Tags set from storage mob_data: Tags From 65bf487ec176530d42fc9730f0a556ea4874c21e Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 21:50:51 +0900 Subject: [PATCH 18/27] =?UTF-8?q?GH-790=20Fix=20icicle=5Fmagic=20=E3=82=B3?= =?UTF-8?q?=E3=83=B3=E3=83=9D=E3=83=BC=E3=83=8D=E3=83=B3=E3=83=88=E5=8C=96?= =?UTF-8?q?=E3=82=84AEC=E3=81=AEParticle?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/icicle_magic/.mcfunction | 2 +- .../icicle_magic/icicle_summoner/place_icicle/act.mcfunction | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/data/ai/function/skill/icicle_magic/.mcfunction b/data/ai/function/skill/icicle_magic/.mcfunction index d567c705a..a414e7e4f 100644 --- a/data/ai/function/skill/icicle_magic/.mcfunction +++ b/data/ai/function/skill/icicle_magic/.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/ -summon area_effect_cloud ~ ~ ~ {Tags:["IcicleSummoner"],Duration:4,Radius:0f,Particle:"minecraft:block minecraft:air"} +summon area_effect_cloud ~ ~ ~ {Tags:["IcicleSummoner"],Duration:4,Radius:0f,Particle:{type:"minecraft:block",block_state:{Name:"minecraft:air"}}} schedule function ai:skill/icicle_magic/schedule_loop/icicle_summoner 1t replace diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction index 9bea1e65e..b32cdcddc 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/icicle_summoner/place_icicle/act ###氷柱本体 -summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",Count:1b},{}]} +summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",count:1b},{}]} From 3054001acbb51b8a8300cc665661636605ca4acd Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 21:54:01 +0900 Subject: [PATCH 19/27] =?UTF-8?q?GH-790=20Fix=20icicle=5Fmagic=20=E3=82=A2?= =?UTF-8?q?=E3=82=A4=E3=83=86=E3=83=A0count=E3=81=AE=E5=80=A4=E4=BF=AE?= =?UTF-8?q?=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../icicle_magic/icicle_summoner/place_icicle/act.mcfunction | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction index b32cdcddc..322f853c6 100644 --- a/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction +++ b/data/ai/function/skill/icicle_magic/icicle_summoner/place_icicle/act.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/icicle_magic/icicle_summoner/place_icicle/act ###氷柱本体 -summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",count:1b},{}]} +summon armor_stand ~ ~ ~ {NoGravity:1b,Small:0b,Invisible:1b,ShowArms:1b,Tags:["Icicle"],Pose:{RightArm:[35f,-90f,0f]},DisabledSlots:4144959,HandItems:[{id:"minecraft:blue_ice",count:1},{}]} From a7278d4e10f41e9579101df92049b395c62dd49d Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 21:56:06 +0900 Subject: [PATCH 20/27] =?UTF-8?q?GH-790=20Fix=20Spawn=20=E3=82=A2=E3=82=A4?= =?UTF-8?q?=E3=83=86=E3=83=A0=E3=81=AE=E3=82=B3=E3=83=B3=E3=83=9D=E3=83=BC?= =?UTF-8?q?=E3=83=8D=E3=83=B3=E3=83=88=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/spawn/.mcfunction | 2 +- data/ai/function/skill/spawn/apply.mcfunction | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/ai/function/skill/spawn/.mcfunction b/data/ai/function/skill/spawn/.mcfunction index e76bda125..6e8a7b890 100644 --- a/data/ai/function/skill/spawn/.mcfunction +++ b/data/ai/function/skill/spawn/.mcfunction @@ -1,5 +1,5 @@ #> ai:skill/spawn/ -summon armor_stand ~ ~ ~ {Tags:[Spawn],DeathTime:19s,NoAI:1b,Silent:1b,Invisible:1b,DisabledSlots:2097151,ArmorItems:[{},{},{},{id:"minecraft:stick",Count:1b,tag:{CustomModelData:1}}]} +summon armor_stand ~ ~ ~ {Tags:[Spawn],DeathTime:19s,NoAI:1b,Silent:1b,Invisible:1b,DisabledSlots:2097151,ArmorItems:[{},{},{},{id:"minecraft:stick",count:1,components:{"minecraft:custom_data":{CustomModelData:1}}}]} execute if data storage mob_data: Call.CountRange run function ai:skill/spawn/count_range scoreboard players operation _ Level = @s Level execute if data storage mob_data: Call{IsChild:1b} run function ai:skill/spawn/child diff --git a/data/ai/function/skill/spawn/apply.mcfunction b/data/ai/function/skill/spawn/apply.mcfunction index e0e658113..d7b48ec82 100644 --- a/data/ai/function/skill/spawn/apply.mcfunction +++ b/data/ai/function/skill/spawn/apply.mcfunction @@ -1,6 +1,6 @@ #> ai:skill/spawn/apply -data modify entity @s ArmorItems[3].tag set from storage mob_data: Call -data modify entity @s ArmorItems[3].tag.CustomModelData set value 1 +data modify entity @s ArmorItems[3].components."minecraft:custom_data" set from storage mob_data: Call +data modify entity @s ArmorItems[3].components."minecraft:custom_model_data" set value 1 execute unless data storage mob_data: Call{NonParentLevel:true} run scoreboard players operation @s Level = _ Level #向きを合わせる tp @s ~ ~ ~ ~ ~ From 90ecf691c25636d26a3569a5342a188484af46c7 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 22:25:59 +0900 Subject: [PATCH 21/27] =?UTF-8?q?GH-790=20Modify=20Step=20power=E3=81=AENB?= =?UTF-8?q?T=E3=82=BF=E3=82=B0=E3=82=92=E5=A4=89=E6=9B=B4=20->=20accelerat?= =?UTF-8?q?ion=5Fpower?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/step/set_motion.mcfunction | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/ai/function/skill/step/set_motion.mcfunction b/data/ai/function/skill/step/set_motion.mcfunction index 4ed0a44e7..c581af30e 100644 --- a/data/ai/function/skill/step/set_motion.mcfunction +++ b/data/ai/function/skill/step/set_motion.mcfunction @@ -1,3 +1,3 @@ #> ai:skill/step/set_motion execute if entity @s[type=!#entity:use_power_projectile] run data modify entity @s Motion set from entity 0-0-0-0-0 Pos -execute if entity @s[type=#entity:use_power_projectile] run data modify entity @s power set from entity 0-0-0-0-0 Pos +execute if entity @s[type=#entity:use_power_projectile] run data modify entity @s acceleration_power set from entity 0-0-0-0-0 Pos From f0de731f4537b1deb945cc053be0572e8fbe2b56 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Wed, 30 Apr 2025 22:29:47 +0900 Subject: [PATCH 22/27] =?UTF-8?q?GH-790=20Modify=20ChangeAI=20CallPassenge?= =?UTF-8?q?r=E3=81=AE=E3=81=9F=E3=82=81=E3=81=AE=E5=89=8D=E5=87=A6?= =?UTF-8?q?=E7=90=86=E3=82=92=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/change_ai.mcfunction | 2 ++ 1 file changed, 2 insertions(+) diff --git a/data/ai/function/skill/change_ai.mcfunction b/data/ai/function/skill/change_ai.mcfunction index 0a79f5dc9..a18525bc9 100644 --- a/data/ai/function/skill/change_ai.mcfunction +++ b/data/ai/function/skill/change_ai.mcfunction @@ -23,3 +23,5 @@ execute if data storage mob_data: AI.Tick[0] run tag @s add CallOnTick execute if data storage mob_data: AI.Tick[0] run tag @s add HasAI #データを元に戻す data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI +#Tick用の前処理 +function ai:turn/preparation From 66293afb5d6cf6b6119f3e8d14c01689e71715c4 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Thu, 1 May 2025 18:39:45 +0900 Subject: [PATCH 23/27] =?UTF-8?q?GH-790=20Modify=20ChangeAI=20CallPassenge?= =?UTF-8?q?r=E3=81=AE=E3=81=9F=E3=82=81=E3=81=AE=E5=89=8D=E5=87=A6?= =?UTF-8?q?=E7=90=86=E3=82=92=E5=A4=89=E6=9B=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/change_ai.mcfunction | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/ai/function/skill/change_ai.mcfunction b/data/ai/function/skill/change_ai.mcfunction index a18525bc9..6bcc39295 100644 --- a/data/ai/function/skill/change_ai.mcfunction +++ b/data/ai/function/skill/change_ai.mcfunction @@ -14,6 +14,7 @@ tag @s remove CallOnDamage tag @s remove CallOnAttack tag @s remove CallOnBlock tag @s remove CallOnTick +tag @s remove HasCallOnPassenger execute if data storage mob_data: AI.Death[0] run tag @s add CallOnDeath execute if data storage mob_data: AI.Time[0] run tag @s add CallOnTime execute if data storage mob_data: AI.Damage[0] run tag @s add CallOnDamage @@ -21,7 +22,6 @@ execute if data storage mob_data: AI.Attack[0] run tag @s add CallOnAttack execute if data storage mob_data: AI.Block[0] run tag @s add CallOnBlock execute if data storage mob_data: AI.Tick[0] run tag @s add CallOnTick execute if data storage mob_data: AI.Tick[0] run tag @s add HasAI +execute if data storage mob_data: AI.Passenger[0] run tag @s add HasCallOnPassenger #データを元に戻す data modify storage oh_my_dat: _[-4][-4][-4][-4][-4][-4][-4][-4].AI set from storage mob_data: AI -#Tick用の前処理 -function ai:turn/preparation From 2604950c015e445d1486416cb2d4208de5087197 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Thu, 1 May 2025 18:46:44 +0900 Subject: [PATCH 24/27] =?UTF-8?q?GH-790=20Remove=20ChangeMove=20=E5=AE=9F?= =?UTF-8?q?=E8=A1=8C=E3=83=91=E3=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/call/call.mcfunction | 1 - 1 file changed, 1 deletion(-) diff --git a/data/ai/function/call/call.mcfunction b/data/ai/function/call/call.mcfunction index 3ec471e6c..3816be451 100644 --- a/data/ai/function/call/call.mcfunction +++ b/data/ai/function/call/call.mcfunction @@ -3,7 +3,6 @@ execute if data storage mob_data: Call{Name:"Kill"} run tag @s add Garbage execute if data storage mob_data: Call{Name:"Spawn"} run function ai:skill/spawn/ execute if data storage mob_data: Call{Name:"Step"} run function ai:skill/step/ execute if data storage mob_data: Call{Name:"ChangeTurn"} run function ai:skill/change_turn/ -execute if data storage mob_data: Call{Name:"ChangeMove"} run function ai:skill/change_move/ execute if data storage mob_data: Call{Name:"ChangeAI"} run function ai:skill/change_ai execute if data storage mob_data: Call{Name:"ChangeStatus"} run function ai:skill/change_status/ execute if data storage mob_data: Call{Name:"MergeNBT"} run function ai:skill/merge_nbt From da5cfec6c9970833af78f932cadce7cc168e25ac Mon Sep 17 00:00:00 2001 From: Ponpon Date: Sun, 4 May 2025 20:34:58 +0900 Subject: [PATCH 25/27] =?UTF-8?q?GH-790=20Modify=20ChangeTurn=E3=81=8C?= =?UTF-8?q?=E5=AE=9F=E8=A1=8C=E3=81=95=E3=82=8C=E3=81=9F=E3=81=A8=E3=81=8D?= =?UTF-8?q?=E3=81=ABTurn.Exit=E5=87=A6=E7=90=86=E3=81=8C=E5=AE=9F=E8=A1=8C?= =?UTF-8?q?=E3=81=95=E3=82=8C=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- data/ai/function/skill/change_turn/.mcfunction | 2 ++ data/ai/predicate/tick_act.json | 7 +++++++ 2 files changed, 9 insertions(+) diff --git a/data/ai/function/skill/change_turn/.mcfunction b/data/ai/function/skill/change_turn/.mcfunction index 55f036ec1..260120295 100644 --- a/data/ai/function/skill/change_turn/.mcfunction +++ b/data/ai/function/skill/change_turn/.mcfunction @@ -1,6 +1,8 @@ #> ai:skill/change_turn/ #AI.Turn[0].ExitにChangeTurnフラグを追加 data modify storage mob_data: AI.Turn[0].Exit.ChangeTurn set value 1b +# Mobにもフラグを追加 +tag @s add HasChangeTurn #Onceを進める execute if data storage mob_data: AI.Turn[0].Once store result storage mob_data: AI.Turn[0].Once int 0.99999 run data get storage mob_data: AI.Turn[0].Once #AI.ChangeTurnにターンを進める回数を保存する diff --git a/data/ai/predicate/tick_act.json b/data/ai/predicate/tick_act.json index 16401fe7f..4fa6ee9ed 100644 --- a/data/ai/predicate/tick_act.json +++ b/data/ai/predicate/tick_act.json @@ -8,6 +8,13 @@ "nbt": "{Tags:[HasExitCondition]}" } }, + { + "condition": "entity_properties", + "entity": "this", + "predicate": { + "nbt": "{Tags:[HasChangeTurn]}" + } + }, { "condition": "entity_properties", "entity": "this", From 1b8d1fc3f9a89011e114a107c2384d0edcb35115 Mon Sep 17 00:00:00 2001 From: Ponpon Date: Sun, 4 May 2025 20:50:40 +0900 Subject: [PATCH 26/27] =?UTF-8?q?GH-790=20Fix=20DelayAction=20ryomen?= =?UTF-8?q?=E3=81=AEdust=E6=BC=94=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../function/skill/delay_action/append/enemy/ryomen/.mcfunction | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction index 5e55c806e..d64e2066c 100644 --- a/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction +++ b/data/ai/function/skill/delay_action/append/enemy/ryomen/.mcfunction @@ -8,7 +8,7 @@ function ai:skill/change_status/ tag @s add RyomenRage # 演出 - particle dust 0.45 0 0 1 ~ ~1 ~ 0.25 0.5 0.25 1 50 force @a[distance=..32,tag=ShowParticles] + particle dust{color:[0.45,0.0,0.0],scale:1} ~ ~1 ~ 0.25 0.5 0.25 1 50 force @a[distance=..32,tag=ShowParticles] particle witch ~ ~ ~ 0.15 0 0.15 1 15 force @a[distance=..32,tag=ShowParticles] playsound entity.evoker.prepare_attack hostile @a[distance=..32] ~ ~ ~ 0.5 2 0 playsound entity.blaze.death hostile @a[distance=..32] ~ ~ ~ 0.5 0 0 From 9c5c2552ee3db937d886cb4dd5aae6fe6877de8d Mon Sep 17 00:00:00 2001 From: waxsd100 Date: Mon, 5 May 2025 06:06:02 +0900 Subject: [PATCH 27/27] NO-ISSUE Version up datapack-linter v2.0.9 -> v2.0.10 Signed-off-by: waxsd100 --- .github/workflows/lint-datapack.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-datapack.yml b/.github/workflows/lint-datapack.yml index 2e0a2dd05..619cb553d 100644 --- a/.github/workflows/lint-datapack.yml +++ b/.github/workflows/lint-datapack.yml @@ -173,6 +173,6 @@ jobs: fetch-depth: 0 - name: lint - uses: ChenCMD/datapack-linter@v2.0.9 + uses: ChenCMD/datapack-linter@v2.0.10 with: GITHUB_TOKEN: ${{ github.token }}