From 819cbe81fe7193e000bf758271994d4b77819f9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=97=E6=B2=A2=E5=93=8D=E4=B9=9F?= <72963826+Hibiya615@users.noreply.github.com> Date: Tue, 4 Mar 2025 01:34:30 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E9=83=A8=E5=88=86=E7=BB=98?= =?UTF-8?q?=E5=88=B6=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Fate/Mica_the_MagicalMu.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Fate/Mica_the_MagicalMu.cs b/Fate/Mica_the_MagicalMu.cs index 7cbd8bf..1c13928 100644 --- a/Fate/Mica_the_MagicalMu.cs +++ b/Fate/Mica_the_MagicalMu.cs @@ -72,7 +72,7 @@ public class Mica_the_Magical_Mu var dp = accessory.Data.GetDefaultDrawProperties(); dp.Name = "卡牌戏法Danger"; dp.Owner = @event.SourceId(); - dp.Color = accessory.Data.DefaultDangerColor; + dp.Color = new Vector4(1f, 0f, 0f, 0.5f); dp.Scale = new(14f, 20f); dp.DestoryAt = 1200; accessory.Method.SendDraw(DrawModeEnum.Default, DrawTypeEnum.Straight, dp); @@ -86,16 +86,17 @@ public class Mica_the_Magical_Mu dp.Owner = @event.SourceId(); dp.Color = accessory.Data.DefaultDangerColor; dp.Delay = 1700; - dp.DestoryAt = 8500; switch (@event.ActionId()) { case 38996: + dp.DestoryAt = 10200; dp.Scale = new(10, 20f); break; case 38997: case 38998: case 38999: + dp.DestoryAt = 8500; dp.Scale = new(10, 52f); break; } @@ -107,7 +108,7 @@ public class Mica_the_Magical_Mu { var dp = accessory.Data.GetDefaultDrawProperties(); dp.Name = "魔术爆发"; - dp.Color = accessory.Data.DefaultDangerColor; + dp.Color = new Vector4(1f, 1f, 0f, 1.6f); dp.Owner = @event.SourceId(); dp.Scale = new Vector2(10f); dp.Delay = 4600; @@ -120,7 +121,7 @@ public class Mica_the_Magical_Mu { var dp = accessory.Data.GetDefaultDrawProperties(); dp.Name = "魔术环"; - dp.Color = accessory.Data.DefaultDangerColor; + dp.Color = new Vector4(1f, 1f, 0f, 1.2f); dp.Owner = @event.SourceId(); dp.Scale = new Vector2(30f); dp.InnerScale = new Vector2(10f); @@ -136,7 +137,7 @@ public class Mica_the_Magical_Mu var dp = accessory.Data.GetDefaultDrawProperties(); dp.Name = "双重魔术雷"; - dp.Color = new Vector4(1f, 0f, 0f, 1f); + dp.Color = new Vector4(1f, 1f, 0f, 1.2f); dp.Owner = @event.SourceId(); dp.Scale = new Vector2(40); dp.Radian = 60f.DegToRad();