private void _MakeData()
    {
        if (type == ServiceLocator.ThingType.ArTank ||
            type == ServiceLocator.ThingType.Battery ||
            type == ServiceLocator.ThingType.N2Tank ||
            type == ServiceLocator.ThingType.O2Tank)
        {
            _myData = ScriptableObject.Instantiate(Resources.Load <Item_Base>("SO_Item/" + type.ToString()));
        }
        else if (type == ServiceLocator.ThingType.ArCharger ||
                 type == ServiceLocator.ThingType.BatteryCharger ||
                 type == ServiceLocator.ThingType.N2Charger ||
                 type == ServiceLocator.ThingType.O2Charger ||
                 type == ServiceLocator.ThingType.Welder ||
                 type == ServiceLocator.ThingType.Locker ||
                 type == ServiceLocator.ThingType.Wrench ||
                 type == ServiceLocator.ThingType.PryBar)
        {
            _myData = ScriptableObject.Instantiate(Resources.Load <Equipment_Base>("SO_Equipment/" + type.ToString()));
        }

        Debug.Log(_myData.type.ToString());
    }