private bool TryBurnFuel()
    {
        if (IsFueled)
        {
            burningSheet = itemSlot.ItemObject.GetComponent <SolidPlasma>();
            burningSheet.StartBurningPlasma(PlasmaConsumptionRate, FuelExhaustedEvent);
            return(true);
        }

        return(false);
    }