r2mods/ilspy_dump/ror2_csproj/EntityStates.Merc/PrepAssaulter2.cs

72 lines
1.8 KiB
C#

using RoR2;
using UnityEngine;
using UnityEngine.Networking;
namespace EntityStates.Merc;
public class PrepAssaulter2 : BaseState
{
public static float baseDuration;
public static float smallHopVelocity;
public static string enterSoundString;
private float duration;
private static int AssaulterPrepStateHash = Animator.StringToHash("AssaulterPrep");
private static int AssaulterPrepParamHash = Animator.StringToHash("AssaulterPrep.playbackRate");
public int dashIndex { private get; set; }
public override void OnEnter()
{
base.OnEnter();
duration = baseDuration / attackSpeedStat;
PlayAnimation("FullBody, Override", AssaulterPrepStateHash, AssaulterPrepParamHash, baseDuration);
FindModelChild("PreDashEffect").gameObject.SetActive(value: true);
Util.PlaySound(enterSoundString, base.gameObject);
Ray aimRay = GetAimRay();
base.characterDirection.forward = aimRay.direction;
base.characterDirection.moveVector = aimRay.direction;
SmallHop(base.characterMotor, smallHopVelocity);
if (NetworkServer.active)
{
base.characterBody.AddBuff(RoR2Content.Buffs.HiddenInvincibility);
}
}
public override void OnExit()
{
if (NetworkServer.active)
{
base.characterBody.RemoveBuff(RoR2Content.Buffs.HiddenInvincibility);
base.characterBody.AddTimedBuff(RoR2Content.Buffs.HiddenInvincibility, 0.2f);
}
FindModelChild("PreDashEffect").gameObject.SetActive(value: false);
base.OnExit();
}
public override void FixedUpdate()
{
base.FixedUpdate();
if (base.fixedAge > duration)
{
outer.SetNextState(new Assaulter2());
}
}
public override void OnSerialize(NetworkWriter writer)
{
base.OnSerialize(writer);
writer.Write((byte)dashIndex);
}
public override void OnDeserialize(NetworkReader reader)
{
base.OnDeserialize(reader);
dashIndex = reader.ReadByte();
}
}