|
@@ -143,10 +143,6 @@ namespace ET
|
|
|
}
|
|
|
|
|
|
|
|
|
- if(bu.ZUnit.Info.Properties is XmdsUnitProperties prop && prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialBoss)
|
|
|
- {
|
|
|
- EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"发现怪兽:'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>',你过来啊!"));
|
|
|
- }
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -200,11 +196,6 @@ namespace ET
|
|
|
{
|
|
|
EventSystem.Instance.Publish(PlayEffectEvent.Static.Clone(launcheffect, unit.Id, CommonLang.Geometry.Vector3.Zero));
|
|
|
}
|
|
|
-
|
|
|
- if (bunit.ZUnit.Info.Properties is XmdsUnitProperties prop)
|
|
|
- {
|
|
|
- EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>'受到了怪物的猛烈攻击"));
|
|
|
- }
|
|
|
}
|
|
|
});
|
|
|
eventHandler.AddListener<ShowTipsEventB2C>((ev) =>
|
|
@@ -219,7 +210,7 @@ namespace ET
|
|
|
if(unit != null && unit is BattleUnit bunit)
|
|
|
{
|
|
|
EventSystem.Instance.Publish(PlayAnimatorEvent.Clone(
|
|
|
- e.ObjectID, AnimatorEventType.Dead));
|
|
|
+ e.ObjectID, PlayAnimatorEvent.AniType.Dead));
|
|
|
|
|
|
var launcheffect = bunit.ZUnit.Info.DeadEffect;
|
|
|
if (launcheffect != null)
|
|
@@ -242,18 +233,6 @@ namespace ET
|
|
|
vecTemp.Set(unit.ZoneObject.X, unit.ZoneObject.Y, unit.ZoneObject.Z);
|
|
|
EventSystem.Instance.Publish(PlayEffectEvent.Static.Clone(launcheffect, unit.Id, vecTemp));
|
|
|
}
|
|
|
-
|
|
|
- if (bunit.ZUnit.Info.Properties is XmdsUnitProperties prop)
|
|
|
- {
|
|
|
- if (prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialElite)
|
|
|
- {
|
|
|
- EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#ff7d00>{prop.ServerData.BaseInfo.name}</font>'失去了所有能量"));
|
|
|
- }
|
|
|
- else if(prop.GameStatusType == XmdsUnitProperties.StatusType.SpecialBoss)
|
|
|
- {
|
|
|
- EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>',被打的倒地不起"));
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
});
|
|
|
eventHandler.AddListener<UnitRebirthEvent>((ev) =>
|
|
@@ -327,14 +306,6 @@ namespace ET
|
|
|
vecTemp.Set(unit.ZoneObject.X, unit.ZoneObject.Y, unit.ZoneObject.Z);
|
|
|
}
|
|
|
EventSystem.Instance.Publish(PlayEffectEvent.Static.Clone(e.effect, e.ObjectID, vecTemp));
|
|
|
-
|
|
|
- if(e.effect.Name == "chuanyunjian01")
|
|
|
- {
|
|
|
- if (unit is BattleUnit bu && bu.ZUnit.Info.Properties is XmdsUnitProperties prop)
|
|
|
- {
|
|
|
- EventSystem.Instance.Publish(BattleMsgEvent.Static.Clone($"'<font color=#fe3824>{prop.ServerData.BaseInfo.name}</font>'快要支撑不住了,宝宝们快来注入能量"));
|
|
|
- }
|
|
|
- }
|
|
|
});
|
|
|
eventHandler.AddListener<XmdsUnitPropEventB2C>((ev) =>
|
|
|
{
|
|
@@ -368,10 +339,24 @@ namespace ET
|
|
|
eventHandler.AddListener<ClientMsgEvent>((ev) =>
|
|
|
{
|
|
|
var e = ev as ClientMsgEvent;
|
|
|
- Log.Debug($">>>Battle client event: {e.Message}");
|
|
|
-
|
|
|
+ var msg = e.Message;
|
|
|
+ Log.Debug($">>>Battle event message: {msg}");
|
|
|
+
|
|
|
+ if (msg.StartsWith("item:"))
|
|
|
{
|
|
|
- }*/
|
|
|
+ EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Gift, System.Convert.ToInt32(msg[5..])));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ else if(msg.StartsWith("bosscome:"))
|
|
|
+ {
|
|
|
+ EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Monster, System.Convert.ToInt32(msg[9..])));
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ else if(msg.StartsWith("towerhp"))
|
|
|
+ {
|
|
|
+ EventSystem.Instance.Publish(ShowUIAnimation.Clone(ShowUIAnimation.AniType.Tower, 0));
|
|
|
+ return;
|
|
|
+ }
|
|
|
});
|
|
|
|
|
|
AddEffectEvent
|