function ADVR.onLoad() achievement.psvrID = 31 achievement.hideDescription = false achievement.unlocksItem = relics.FUNGAL_GROWTH achievement.priority = -1000 achievement.predecessors = {achievements.THE_HUNTER} achievement.category = "combat" end function ADVR.onPrimaryHitEntity(infos) if infos.entity ~= nil and infos.entity.IsBoss() then if infos.entity.MaxHealth <= infos.damage then achievement.Unlock() end end return infos.damage end function ADVR.onSecondaryHitEntity(infos) if infos.entity ~= nil and infos.entity.IsBoss() then if infos.entity.MaxHealth <= infos.damage then achievement.Unlock() end end return infos.damage end