module Base
{
	template vehicle B700TrunkCompartment
	{
		part B700Trunk
		{
			category = bodywork,
			area = TruckBed,
			itemType = Base.87fordB700Trunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = B700.ContainerAccess.Trunk,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part B700TrunkLeft
		{
			category = bodywork,
			area = StorageLeft,
			itemType = Base.87fordB700SmallTrunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = B700.ContainerAccess.TrunkLeft,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part B700TrunkRight
		{
			category = bodywork,
			area = StorageRight,
			itemType = Base.87fordB700SmallTrunk,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = B700.ContainerAccess.TrunkRight,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part TruckBed
		{
			category = nodisplay,
			area = TruckBed,
			itemType = nil,
			mechanicRequireKey = true,
			repairMechanic = true,
			container
			{
				conditionAffectsCapacity = false,
				test = B700.ContainerAccess.Trunk,
			}
			lua
			{
				create = DAMN.Create.Blank,
			}
		}
	}
}

