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

			container
			{
                test = DAMN.ContainerAccess.Roofrack,
                capacity = 10,
			}

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

        part M10XXToolboxRight
		{
			category = Other,
			area = ToolboxRight,
			itemType = damnCraft.Trunk,
			mechanicRequireKey = false,
            durability = 5,
			repairMechanic = true,

			container
			{
                test = DAMN.ContainerAccess.Roofrack,
                capacity = 10,
			}

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