new-horizons/NewHorizons/OtherMods/AchievementsPlus/NH/EatenOutsideBrambleAchievement.cs
2023-03-25 13:51:15 -04:00

19 lines
610 B
C#

namespace NewHorizons.OtherMods.AchievementsPlus.NH
{
public static class EatenOutsideBrambleAchievement
{
public static readonly string UNIQUE_ID = "NH_EATEN_OUTSIDE_BRAMBLE";
public static void Init()
{
AchievementHandler.Register(UNIQUE_ID, false, Main.Instance);
GlobalMessenger<DeathType>.AddListener("PlayerDeath", OnPlayerDeath);
}
public static void OnPlayerDeath(DeathType death)
{
if (death == DeathType.Digestion && !PlayerState.InBrambleDimension()) AchievementHandler.Earn(UNIQUE_ID);
}
}
}