From 150678157f793ce7d08b68cc96a0975e5768d968 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: Wed, 19 Mar 2025 04:16:36 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A2=9E=E5=8A=A0=E9=98=B2=E5=87=BB=E9=80=80?= =?UTF-8?q?=E9=94=80=E6=AF=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Fate/Formidable.cs | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Fate/Formidable.cs b/Fate/Formidable.cs index d3bdaca..cbccfa2 100644 --- a/Fate/Formidable.cs +++ b/Fate/Formidable.cs @@ -20,13 +20,13 @@ using FFXIVClientStructs.FFXIV.Client.Game.Character; namespace A_Finale_Most_Formidable; [ScriptType(guid: "5f55a121-1fcc-48ce-a0e8-b6fbd4ce8489", name: "激斗畏惧装甲之秘密武器", territorys: [814], - version: "0.0.0.2", author: "Tetora", note: noteStr)] + version: "0.0.0.21", author: "Tetora", note: noteStr)] public class Formidable { const string noteStr = """ - v0.0.0.2: + v0.0.0.21: LV80 特殊Fate 绘制 激斗畏惧装甲之秘密武器 """; @@ -238,6 +238,12 @@ public class Formidable accessory.Method.SendDraw(DrawModeEnum.Default, DrawTypeEnum.Displacement, dp); } + [ScriptMethod(name: "防击退销毁", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:regex:^(7548|7559)$"],userControl: false)] + public void 防击退销毁(Event @event, ScriptAccessory accessory) + { + if ( @event.TargetId() != accessory.Data.Me) return; + accessory.Method.RemoveDraw("蒸汽喷发"); + } [ScriptMethod(name: "运动体探知干扰器 提示", eventType: EventTypeEnum.StatusAdd, eventCondition: ["StatusID:1269"])] public async void 运动体探知干扰器(Event @event, ScriptAccessory accessory)