更新支持副本

This commit is contained in:
南沢响也
2025-04-05 04:45:30 +08:00
parent a16bb914b2
commit 15b6a4d2a7
4 changed files with 89 additions and 39 deletions

View File

@@ -16,6 +16,7 @@ using ECommons.DalamudServices;
using ECommons.GameFunctions;
using ECommons.MathHelpers;
using System.Threading.Tasks;
using KodakkuAssist.Extensions;
namespace the_Whorleater_Extreme;
@@ -30,17 +31,40 @@ public class the_Whorleater_Extreme
LV50
""";
[UserSetting("TTS开关")]
public bool isTTS { get; set; } = true;
// 阶段
// P1被光明所污染的人们你们竟敢侵入我的领域
// P2蓝色清净的大海之水将会扫去一切污秽
// P3竟然对我卖弄小伎俩
[UserSetting("弹窗文本提示开关")]
public bool isText { get; set; } = true;
#region &
uint Dive = 0;
uint Phase = 0;
public void Init(ScriptAccessory accessory) {
Dive = 0;
Phase = 0;
}
[ScriptMethod(name: "阶段转换P1", eventType: EventTypeEnum.Chat, userControl: false,eventCondition: ["Type:NPCDialogueAnnouncements",
"Message:regex:^(被光明所污染的人们.*|You trespass upon my domain.*|我が海域を侵すか.*)$"])]
public void 1(Event @event, ScriptAccessory accessory)
{
Phase = 1;
}
[ScriptMethod(name: "阶段转换P2", eventType: EventTypeEnum.Chat, userControl: false,eventCondition: ["Type:NPCDialogueAnnouncements",
"Message:regex:^(蓝色清净的大海之水将会扫去一切污秽.*|Drink deep of the sea's bitter draught.*|清浄なる青き水を以て、穢れ清めん.*)$"])]
public void 2(Event @event, ScriptAccessory accessory)
{
Phase = 2;
}
[ScriptMethod(name: "阶段转换P3", eventType: EventTypeEnum.Chat, userControl: false,eventCondition: ["Type:NPCDialogueAnnouncements",
"Message:regex:^(竟然对我卖弄小伎俩.*|You challenge me with trickery.*|ぬぅ、小細工を弄したか.*)$"])]
public void 3(Event @event, ScriptAccessory accessory)
{
Phase = 3;
}
[ScriptMethod(name: "下潜记录", eventType: EventTypeEnum.Targetable, eventCondition: ["SourceName:regex:^(利维亚桑|Leviathan|リヴァイアサン)$", "Targetable:False"],userControl: false)]
@@ -54,39 +78,35 @@ public class the_Whorleater_Extreme
{
Dive = 0;
}
#endregion
[ScriptMethod(name: "开场提示", eventType: EventTypeEnum.Countdown, eventCondition: ["Type:Stop","SourceId:E0000000"])]
public async void (Event @event, ScriptAccessory accessory)
{
await Task.Delay(3000);
accessory.Method.TextInfo("难度★★TH不会建议退小抄已发至聊天框 \nTMT拉头ST拉尾、小怪ST拉晕波齿鱼人60%血以下免晕)\nD出黄球打黄球小怪优先波齿鱼人注意避开T的平A \nHST交给小仙女和再生奶群抬错开ST尽量避免水镜debuff"
, duration: 15000, true);
if (isText)accessory.Method.TextInfo("难度★★TH不会建议退小抄已发至聊天框 \nTMT拉头ST拉尾、小怪ST拉晕波齿鱼人60%血以下免晕)\nD出黄球打黄球小怪优先波齿鱼人注意避开T的平A \nHST交给小仙女和再生奶群抬错开ST尽量避免水镜debuff"
, duration: 10000, true);
accessory.Method.SendChat("/e ————小抄————\nTMT拉头ST拉尾、小怪ST拉晕波齿鱼人60%血以下免晕)\n蓝球ST拉着溜等一次拍击后拉离人群开大减炸掉 \nD出黄球打黄球小怪优先波齿鱼人注意避开T的平A \nHST交给小仙女和再生奶群抬错开ST尽量避免水镜debuff");
}
[ScriptMethod(name: "猛撞销毁", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:2090"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("猛撞"); // 销毁水柱击退
}
[ScriptMethod(name: "水神的面纱 提示", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:2165"])]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.TextInfo("法系打头部,物理打尾巴\n龙骑舞者赤魔DK额外注意自己的技能\n尾巴有身位", duration: 5000, true);
if (isText)accessory.Method.TextInfo("法系打头部,物理打尾巴\n龙骑舞者赤魔DK额外注意自己的技能\n尾巴有身位", duration: 5000, true);
}
[ScriptMethod(name: "波齿鱼人 击杀提示", eventType: EventTypeEnum.AddCombatant, eventCondition: ["DataId:2807"])]
public void 齿(Event @event, ScriptAccessory accessory)
{
accessory.Method.TextInfo("优先击杀 < 波齿鱼人 >", duration: 2500, true);
if (isText)accessory.Method.TextInfo("优先击杀 < 波齿鱼人 >", duration: 2500, true);
}
[ScriptMethod(name: "波齿鱼人_恐慌风暴", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:1865"])]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.EdgeTTS("不要踩进恐慌圈");
if (isTTS)accessory.Method.EdgeTTS("不要踩进恐慌圈");
var dp = accessory.Data.GetDefaultDrawProperties();
dp.Name = "恐慌风暴";
@@ -101,7 +121,7 @@ public class the_Whorleater_Extreme
[ScriptMethod(name: "波齿鱼人_恐慌洗礼", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:1866"])]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.TextInfo("眩晕 < 波齿鱼人 >", duration: 3200, true);
if (isText)accessory.Method.TextInfo("眩晕 < 波齿鱼人 >", duration: 3200, true);
var dp = accessory.Data.GetDefaultDrawProperties();
dp.Name = "恐慌洗礼";
@@ -112,16 +132,11 @@ public class the_Whorleater_Extreme
accessory.Method.SendDraw(DrawModeEnum.Default, DrawTypeEnum.Circle, dp);
}
[ScriptMethod(name: "恐慌洗礼销毁", eventType: EventTypeEnum.CancelAction, eventCondition: ["ActionId:1866"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("恐慌洗礼");
}
[ScriptMethod(name: "下潜提示", eventType: EventTypeEnum.Targetable, eventCondition: ["SourceName:regex:^(利维亚桑|Leviathan|リヴァイアサン)$", "Targetable:False"])]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.TextInfo("中间集合,躲开南北俯冲,远离东西水柱击退", duration: 5000, true);
if (isText && Phase == 1)accessory.Method.TextInfo("去水柱对侧击退", duration: 5000, true);
if (isText && Phase != 1)accessory.Method.TextInfo("中间集合,躲开南北俯冲,远离侧面水柱击退", duration: 5000, true);
}
[ScriptMethod(name: "旋转下潜 俯冲", eventType: EventTypeEnum.AddCombatant, eventCondition: ["DataId:2804"])]
@@ -138,18 +153,21 @@ public class the_Whorleater_Extreme
accessory.Method.SendDraw(DrawModeEnum.Default, DrawTypeEnum.Rect, dp);
}
[ScriptMethod(name: "旋转下潜销毁", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:2186"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
[ScriptMethod(name: "巨浪(击退)", eventType: EventTypeEnum.Chat,eventCondition: ["Type:NPCDialogueAnnouncements",
"Message:regex:^(竟然对我卖弄小伎俩.*|You challenge me with trickery.*|ぬぅ、小細工を弄したか.*)$"])]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("旋转下潜");
}
// 巨浪击退距离 25m 场地长 40m
[ScriptMethod(name: "巨浪销毁", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:2094"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("巨浪");
// 击退距离为25m 实际Scale宽=36m即为安全
foreach (var item in accessory.Data.Objects.GetByDataId(2802))
{
var dp = accessory.Data.GetDefaultDrawProperties();
dp.Name = "巨浪";
dp.Scale = new (40f, 30f);
dp.Owner = item.EntityId;
dp.Color = accessory.Data.DefaultDangerColor;
dp.DestoryAt = 3000;
accessory.Method.SendDraw(DrawModeEnum.Default, DrawTypeEnum.Rect, dp);
}
}
[ScriptMethod(name: "巨浪泡沫 提示", eventType: EventTypeEnum.AddCombatant, eventCondition: ["DataId:2810"])]
@@ -159,8 +177,29 @@ public class the_Whorleater_Extreme
accessory.Method.EdgeTTS("ST拉蓝球约半分钟后爆炸");
}
}
#region
// 巨浪击退距离 25m 场地长 40m
[ScriptMethod(name: "猛撞销毁", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:2090"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("巨浪"); // 销毁水柱击退
}
[ScriptMethod(name: "恐慌洗礼销毁", eventType: EventTypeEnum.CancelAction, eventCondition: ["ActionId:1866"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("恐慌洗礼");
}
[ScriptMethod(name: "旋转下潜销毁", eventType: EventTypeEnum.ActionEffect, eventCondition: ["ActionId:2186"],userControl: false)]
public void (Event @event, ScriptAccessory accessory)
{
accessory.Method.RemoveDraw("旋转下潜");
}
#endregion
}
public static class EventExtensions
{
@@ -275,8 +314,6 @@ public static class EventExtensions
return JsonConvert.DeserializeObject<uint>(@event["Param"]);
}
}
public static class Extensions
{
public static void TTS(this ScriptAccessory accessory, string text, bool isTTS, bool isDRTTS)

View File

@@ -220,6 +220,19 @@
364
]
},
{
"Name": "利维亚桑歼殛战",
"Guid": "07f20e0e-9463-4a10-9dd1-956fde6a9c46",
"Version": "0.0.0.2",
"Author": "Tetora",
"Repo": "https://github.com/Hibiya615/TetoraKAScript/tree/main",
"DownloadUrl": "https://raw.githubusercontent.com/Hibiya615/TetoraKAScript/refs/heads/main/02-A-Realm-Reborn/Trials-Extreme/Leviathan(Extreme).cs",
"Note": "v0.0.0.2:\r\nLV50 利维亚桑歼殛战 初版绘制",
"UpdateInfo": "",
"TerritoryIds": [
359
]
},
{
"Name": "O4N",
"Guid": "f24f9cef-717e-4a2a-9616-d470443d6d8a",

View File

@@ -29,7 +29,7 @@
**讨伐歼殛战**
- `LV50 莫古力贤王歼殛战`
- `LV50 莫古力贤王歼殛战` `LV50 利维亚桑歼殛战`
**大型任务 - Raid**

View File

@@ -1 +1 @@
17378256062330333
17437957392858991