更新版本号

This commit is contained in:
南沢响也
2025-05-16 16:33:43 +08:00
parent 89c658314b
commit b9d1f185bd
2 changed files with 7 additions and 7 deletions

View File

@@ -22,13 +22,13 @@ using KodakkuAssist.Extensions;
namespace Battle_in_the_Big_Keep;
[ScriptType(guid: "90783a42-7947-4392-9c3e-f3162d52c248", name: "无限城的死斗", territorys: [396],
version: "0.0.0.1", author: "Tetora", note: noteStr)]
version: "0.0.0.2", author: "Tetora", note: noteStr)]
public class Battle_in_the_Big_Keep
{
const string noteStr =
"""
v0.0.0.1:
v0.0.0.2:
LV50
TTS请在
""";
@@ -178,9 +178,9 @@ public class Battle_in_the_Big_Keep
[ScriptMethod(name: "攻击龙头提示", eventType: EventTypeEnum.AddCombatant, eventCondition: ["DataId:3626"])]
public void (Event @event, ScriptAccessory accessory)
{
if (isText)accessory.Method.TextInfo("踩风圈", duration: 2500, false);
if (isTTS)accessory.Method.TTS("踩风圈");
if (isEdgeTTS)accessory.Method.EdgeTTS("踩风圈");
if (isText)accessory.Method.TextInfo("攻击龙头", duration: 2500, false);
if (isTTS)accessory.Method.TTS("攻击龙头");
if (isEdgeTTS)accessory.Method.EdgeTTS("攻击龙头");
}
[ScriptMethod(name: "电击_放电钢铁", eventType: EventTypeEnum.AddCombatant, eventCondition: ["DataId:3650"])]