123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- using System;
- using GameWorld;
- using UnityEngine;
- public class GiantRobotHurt : EnemyBaseHurt
- {
- protected override void Init()
- {
- this.defaultAnimName = "NoStiff";
- this.defaultAirAnimName = "NoStiff";
- this.hurtData = SingletonMono<EnemyDataPreload>.Instance.hurt[EnemyType.巨型机器人];
- }
- protected override void PhysicAndEffect(Vector2 speed, Vector2 airSpeed, string normalAtkType, string airAtkType)
- {
- if (this.action.IsInWeakSta())
- {
- return;
- }
- base.PhysicAndEffect(speed, airSpeed, normalAtkType, airAtkType);
- }
- protected override void HitIntoWeakState(Vector2 speed, Vector2 airSpeed, string normalAtkType, string airAtkType)
- {
- normalAtkType = "ReadyToWeakMod";
- airAtkType = "ReadyToWeakMod";
- base.ChaseEnd();
- this.action.EnterWeakState();
- this.eAttr.stiffTime = 1f;
- base.PlayHurtAnim(normalAtkType, airAtkType, speed, airSpeed);
- if (!base.IsInvoking("ExitWeak"))
- {
- base.Invoke("ExitWeak", 5f);
- }
- }
- protected override void FlashAttackHurt()
- {
- this.ExecuteDieEffect();
- R.Effect.Generate(214, null, default(Vector3), default(Vector3), default(Vector3), true);
- SingletonMono<WorldTime>.Instance.TimeSlowByFrameOn60Fps(30, 0.5f);
- R.Camera.Controller.CameraShake(0.5f, 0.2f, CameraController.ShakeTypeEnum.Rect, false);
- R.Camera.Controller.OpenMotionBlur(0.0833333358f, 1f, base.transform.position);
- this.SetHitSpeed(Vector2.zero);
- base.GenerateCritHurtNum(base.flashAttackDamage);
- base.FlashAttackHurt();
- }
- protected override void PlayHurtAudio()
- {
- base.PlayHurtAudio();
- if (base.PlaySpHurtAudio())
- {
- R.Audio.PlayEffect(401, new Vector3?(base.transform.position));
- }
- }
- public override void QTEHurt()
- {
- base.QTEHurt();
- R.Player.Action.QTEHPRecover(false);
- base.QTEZPositionRecover();
- base.QTEHpMinus();
- }
- public override void EnemyDie()
- {
- }
- protected override void ExecuteDie()
- {
- if (this.deadFlag)
- {
- return;
- }
- R.Trophy.AwardTrophy(30);
- R.Audio.PlayEffect(412, new Vector3?(base.transform.position));
- R.Player.Action.QTEHPRecover(this.eAttr.rankType == EnemyAttribute.RankType.BOSS);
- R.Audio.PlayEffect(UnityEngine.Random.Range(105, 108), new Vector3?(base.transform.position));
- this.deadFlag = true;
- this.eAttr.currentHp = 0;
- this.eAttr.inWeakState = false;
- this.eAttr.isFlyingUp = false;
- this.eAttr.checkHitGround = false;
- this.eAttr.stiffTime = 0f;
- this.eAttr.timeController.SetGravity(1f);
- EventManager.PostEvent<EnemyAttribute>("EnemyKilled", this.eAttr);
- this.action.WeakEffectDisappear("Null");
- R.Effect.Generate(91, null, base.transform.position + new Vector3(-1f, 5.2f, LayerManager.ZNum.Fx), Vector3.zero, default(Vector3), true);
- R.Effect.Generate(49, base.transform, default(Vector3), default(Vector3), default(Vector3), true);
- R.Effect.Generate(14, null, base.transform.position + new Vector3(-1f, 5.2f, LayerManager.ZNum.Fx), default(Vector3), default(Vector3), true);
- base.AddCoinAndExp();
- R.Effect.Generate(213, null, default(Vector3), default(Vector3), default(Vector3), true);
- R.Effect.Generate(214, null, default(Vector3), default(Vector3), default(Vector3), true);
- SingletonMono<WorldTime>.Instance.TimeSlowByFrameOn60Fps(45, 0.2f);
- R.Camera.Controller.CameraShake(0.9166667f, 0.3f, CameraController.ShakeTypeEnum.Rect, false);
- this.action.hurtBox.gameObject.SetActive(false);
- this.eAttr.inWeakState = false;
- }
- }
|