r2mods/ilspy_dump/ror2_csproj/RoR2.Achievements.Treebot/TreebotBigHealAchievement.cs

75 lines
1.8 KiB
C#

using Assets.RoR2.Scripts.Platform;
namespace RoR2.Achievements.Treebot;
[RegisterAchievement("TreebotBigHeal", "Skills.Treebot.SpecialAlt1", "RescueTreebot", 3u, typeof(TreebotBigHealServerAchievement))]
public class TreebotBigHealAchievement : BaseAchievement
{
private class TreebotBigHealServerAchievement : BaseServerAchievement
{
public override void OnInstall()
{
base.OnInstall();
HealthComponent.onCharacterHealServer += OnCharacterHealServer;
}
public override void OnUninstall()
{
HealthComponent.onCharacterHealServer -= OnCharacterHealServer;
base.OnInstall();
}
private void OnCharacterHealServer(HealthComponent healthComponent, float amount, ProcChainMask procChainMask)
{
if (amount >= requirement)
{
HealthComponent component = GetCurrentBody().GetComponent<HealthComponent>();
if ((object)healthComponent == component)
{
Grant();
ServerTryToCompleteActivity();
}
}
}
}
private static readonly float requirement = 1000f;
protected override BodyIndex LookUpRequiredBodyIndex()
{
return BodyCatalog.FindBodyIndex("TreebotBody");
}
public override void OnInstall()
{
base.OnInstall();
}
public override void OnUninstall()
{
base.OnUninstall();
}
protected override void OnBodyRequirementMet()
{
base.OnBodyRequirementMet();
SetServerTracked(shouldTrack: true);
}
protected override void OnBodyRequirementBroken()
{
SetServerTracked(shouldTrack: false);
base.OnBodyRequirementBroken();
}
public override void TryToCompleteActivity()
{
if (base.localUser.id == LocalUserManager.GetFirstLocalUser().id && shouldGrant)
{
BaseActivitySelector baseActivitySelector = new BaseActivitySelector();
baseActivitySelector.activityAchievementID = "TreebotBigHeal";
PlatformSystems.activityManager.TryToCompleteActivity(baseActivitySelector);
}
}
}