mirror of
https://github.com/Hibiya615/TetoraKAScript.git
synced 2025-12-17 23:34:44 +08:00
补充一条龙卷销毁逻辑
This commit is contained in:
@@ -18,13 +18,13 @@ using ECommons.MathHelpers;
|
||||
namespace TheHead_theTail_theWholeDamnedThing;
|
||||
|
||||
[ScriptType(guid: "f11c3069-d163-41dd-904e-b016cfcf089c", name: "灾厄的古塔尼亚之深海讨伐战", territorys: [818],
|
||||
version: "0.0.0.11", author: "Tetora", note: noteStr)]
|
||||
version: "0.0.0.12", author: "Tetora", note: noteStr)]
|
||||
|
||||
public class Archaeotania
|
||||
{
|
||||
const string noteStr =
|
||||
"""
|
||||
v0.0.0.11:
|
||||
v0.0.0.12:
|
||||
LV80 特殊Fate 绘制
|
||||
灾厄的古塔尼亚之深海讨伐战
|
||||
""";
|
||||
@@ -93,7 +93,7 @@ public class Archaeotania
|
||||
dp.Color = new Vector4(1f, 0f, 0f, 1.2f);
|
||||
dp.Owner = @event.SourceId();
|
||||
dp.Scale = new Vector2(5f);
|
||||
dp.DestoryAt = 60000;
|
||||
dp.DestoryAt = 42000; // 第一次上天阶段约为41.6s,之后战斗途中出现约为30s
|
||||
accessory.Method.SendDraw(DrawModeEnum.Default, DrawTypeEnum.Circle, dp);
|
||||
}
|
||||
|
||||
@@ -103,6 +103,13 @@ public class Archaeotania
|
||||
accessory.Method.RemoveDraw("龙卷");
|
||||
}
|
||||
|
||||
[ScriptMethod(name: "龙卷销毁备用", eventType: EventTypeEnum.StartCasting, eventCondition: ["ActionId:16442"], userControl: false)]
|
||||
public void 龙卷销毁备用(Event @event, ScriptAccessory accessory)
|
||||
{
|
||||
// 在第一次上天时,当BOSS读条距离衰减 “空降” 时,销毁龙卷
|
||||
accessory.Method.RemoveDraw("龙卷");
|
||||
}
|
||||
|
||||
[ScriptMethod(name: "海呱死亡销毁", eventType: EventTypeEnum.Death, eventCondition: ["TargetDataId:10157"],userControl: false)]
|
||||
public void 海呱死亡销毁(Event @event, ScriptAccessory accessory)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user