From a033528456d780bfb2eb40b76b6f19abf87e0898 Mon Sep 17 00:00:00 2001 From: Lapis-LJA <87566955+Lapis-LJA@users.noreply.github.com> Date: Sat, 3 Jan 2026 23:28:42 +0900 Subject: [PATCH 1/3] =?UTF-8?q?=E3=82=A8=E3=83=95=E3=82=A7=E3=82=AF?= =?UTF-8?q?=E3=83=88=E3=81=AE=E8=AA=AC=E6=98=8E=E3=82=92=E8=AA=BF=E6=95=B4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../effect/0270.honey_regeneration/register.mcfunction | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction b/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction index af4337b138..e6aabea106 100644 --- a/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction +++ b/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction @@ -11,7 +11,7 @@ # 名前 (TextComponentString) data modify storage asset:effect Name set value '{"text":"ハニーリジェネレーション"}' # 説明文 (TextComponentString[]) - data modify storage asset:effect Description set value ['{"text":"HPを継続的に回復する"}'] + data modify storage asset:effect Description set value ['{"text":"体力を継続的に回復する"}'] # 効果時間 (int) (default = API || error) data modify storage asset:effect Duration set value 200 # スタック (int) (default = API || 1) From 33898e42bfed9bf0f18bb62c2e34720740d84c78 Mon Sep 17 00:00:00 2001 From: Lapis-LJA <87566955+Lapis-LJA@users.noreply.github.com> Date: Sat, 3 Jan 2026 23:30:07 +0900 Subject: [PATCH 2/3] =?UTF-8?q?=E5=8A=B9=E6=9E=9C=E6=99=82=E9=96=93?= =?UTF-8?q?=E3=81=A8=E5=9B=9E=E5=BE=A9=E9=87=8F=E3=82=92=E7=A5=9E=E5=99=A8?= =?UTF-8?q?=E5=81=B4=E3=81=A7=E5=AE=9A=E7=BE=A9=E3=81=99=E3=82=8B=E3=82=88?= =?UTF-8?q?=E3=81=86=E3=81=AB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../artifact/1116.honey_tart/trigger/3.main.mcfunction | 2 ++ .../effect/0270.honey_regeneration/register.mcfunction | 6 +++--- .../effect/0270.honey_regeneration/tick/heal.mcfunction | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Asset/data/asset/functions/artifact/1116.honey_tart/trigger/3.main.mcfunction b/Asset/data/asset/functions/artifact/1116.honey_tart/trigger/3.main.mcfunction index 60b49d9545..e47146e343 100644 --- a/Asset/data/asset/functions/artifact/1116.honey_tart/trigger/3.main.mcfunction +++ b/Asset/data/asset/functions/artifact/1116.honey_tart/trigger/3.main.mcfunction @@ -15,5 +15,7 @@ # エフェクトを付与 data modify storage api: Argument.ID set value 270 + data modify storage api: Argument.Duration set value 200 + data modify storage api: Argument.FieldOverride.Heal set value 1.5 function api:entity/mob/effect/give function api:entity/mob/effect/reset diff --git a/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction b/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction index e6aabea106..f7ac89ecc8 100644 --- a/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction +++ b/Asset/data/asset/functions/effect/0270.honey_regeneration/register.mcfunction @@ -13,7 +13,7 @@ # 説明文 (TextComponentString[]) data modify storage asset:effect Description set value ['{"text":"体力を継続的に回復する"}'] # 効果時間 (int) (default = API || error) - data modify storage asset:effect Duration set value 200 + # data modify storage asset:effect Duration set value 200 # スタック (int) (default = API || 1) # data modify storage asset:effect Stack set value # 効果時間の操作方法 (default = API || "replace") @@ -21,7 +21,7 @@ # スタックの操作方法 (default = API || "replace") # data modify storage asset:effect StackOperation set value # 最大効果時間 (int) (default = 2147483647) - data modify storage asset:effect MaxDuration set value 200 + # data modify storage asset:effect MaxDuration set value 200 # 最大スタック (int) (default = 2147483647) data modify storage asset:effect MaxStack set value 1 # 悪い効果か否か (boolean) @@ -36,4 +36,4 @@ data modify storage asset:effect StackVisible set value false # フィールド - # data modify storage asset:effect Field set value {} + data modify storage asset:effect Field.Heal set value 1f diff --git a/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/heal.mcfunction b/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/heal.mcfunction index bf9c98a4ba..f68458c566 100644 --- a/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/heal.mcfunction +++ b/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/heal.mcfunction @@ -5,7 +5,7 @@ # @within function asset:effect/0270.honey_regeneration/tick/ # 回復 - data modify storage api: Argument.Heal set value 1.5f + data modify storage api: Argument.Heal set from storage asset:context this.Heal function api:heal/modifier data modify storage api: Argument.ApplyTrigger set value false function api:heal/ From 0fc54bd7732bcb540e6fb2885c03a617f4eaaee1 Mon Sep 17 00:00:00 2001 From: Lapis-LJA <87566955+Lapis-LJA@users.noreply.github.com> Date: Sat, 3 Jan 2026 23:30:31 +0900 Subject: [PATCH 3/3] =?UTF-8?q?=E6=BC=94=E5=87=BA=E3=82=92=E7=84=A1?= =?UTF-8?q?=E5=8A=B9=E5=8C=96?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../functions/effect/0270.honey_regeneration/tick/.mcfunction | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/.mcfunction b/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/.mcfunction index 67db7e2781..d971a741d3 100644 --- a/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/.mcfunction +++ b/Asset/data/asset/functions/effect/0270.honey_regeneration/tick/.mcfunction @@ -9,7 +9,7 @@ #declare score_holder $Interval # 演出 - execute if predicate lib:random_pass_per/40 run particle dust 1.000 0.741 0.141 1 ~ ~1.2 ~ 0.5 0.4 0.5 0 1 normal + # execute if predicate lib:random_pass_per/40 run particle dust 1.000 0.741 0.141 1 ~ ~1.2 ~ 0.5 0.4 0.5 0 1 normal # スコアへDurationを代入する execute store result score $Interval Temporary run data get storage asset:context Duration