function ADVR.onLoad() achievement.predecessors = {achievements.GOOD_LUCK} achievement.psvrID = 36 achievement.category = "exploration" achievement.showProgressBar = true end --TOOLTIP: Unlocks Arena Mode function ADVR.onVersionUpgrade(oldVersion, newVersion) if bestiary.GetUniqueEnemiesKilledAmount() >= 35 then achievement.Unlock() end end function ADVR.onPlayerDeathOrRunComplete() if bestiary.GetUniqueEnemiesKilledAmount() >= 35 then achievement.Unlock() end end function GetProgressInfo() local killed = bestiary.GetUniqueEnemiesKilledAmount() return killed, 35 end