狗屎Minimax坏我代码

This commit is contained in:
SoulliesOfficial
2026-04-18 13:57:19 -04:00
parent 41140a2017
commit 7379583165
473 changed files with 34480 additions and 8069 deletions

View File

@@ -21,6 +21,7 @@ namespace Cielonos.MainGame.Characters
onDashEnd = new OrderedDictionary<string, PrioritizedAction>();
onDodgeStart = new OrderedDictionary<string, PrioritizedAction>();
onDodgeEnd = new OrderedDictionary<string, PrioritizedAction>();
onGetHit = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase>>();
onGetBreakthrough = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase>>();
@@ -31,6 +32,8 @@ namespace Cielonos.MainGame.Characters
onBlockSuccess = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase, BlockSource>>();
onNormalBlockSuccess = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase, BlockSource>>();
onPerfectBlockSuccess = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase, BlockSource>>();
onNormalDodgeSuccess = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase, DodgeSource>>();
onPerfectDodgeSuccess = new OrderedDictionary<string, PrioritizedAction<AttackAreaBase, DodgeSource>>();
}
}
@@ -159,6 +162,16 @@ namespace Cielonos.MainGame.Characters
/// 完美格挡成功时,参数为攻击区域和格挡来源
/// </summary>
public OrderedDictionary<string, PrioritizedAction<AttackAreaBase, BlockSource>> onPerfectBlockSuccess;
/// <summary>
/// 普通闪避成功时,参数为闪避来源
/// </summary>
public OrderedDictionary<string, PrioritizedAction<AttackAreaBase, DodgeSource>> onNormalDodgeSuccess;
/// <summary>
/// 完美闪避成功时,参数为闪避来源
/// </summary>
public OrderedDictionary<string, PrioritizedAction<AttackAreaBase, DodgeSource>> onPerfectDodgeSuccess;
}
#endregion