public virtual void UseItem(PlayerLootBoxItem User) => Debug.Log($"{User.name} used {name}");
    private void PickUpRandomItem(PlayerLootBoxItem Player)
    {
        var item = PotentialPickups.RandomElement();

        Player.CurrentItem = item;
    }