module Base
{
	template vehicle M10XXToolboxes
	{
		part M10XXToolboxLeft
		{
			category = Other,
			area = ToolboxLeft,
			itemType = Base.P19ASmallTrunk,
			mechanicRequireKey = false,
			repairMechanic = true,

			container
			{
                test = M10XX.ContainerAccess.Toolbox,
                capacity = 10,
				conditionAffectsCapacity = false,
			}

            lua
            	{
					create = Vehicles.Create.Default,
				}
		}

        part M10XXToolboxRight
		{
			category = Other,
			area = ToolboxRight,
			itemType = Base.P19ASmallTrunk,
			mechanicRequireKey = false,
			repairMechanic = true,

			container
			{
                test = M10XX.ContainerAccess.Toolbox,
                capacity = 10,
				conditionAffectsCapacity = false,
			}

            lua
            	{
					create = Vehicles.Create.Default,
				}
		}
	}
}