module Base
{
	template vehicle BUSHStoragepmv
	{
		part TruckBed
		{
			area = RearDoor,
			category = bodywork,
			itemType = nil,
			mechanicRequireKey = false,
			repairMechanic = true,
            durability = 5,
			container
			{
				conditionAffectsCapacity = False,
				test = BUSH.ContainerAccess.Trunk,
			}

            lua
			{
				create = DAMN.Create.Blank,
			}
		}

		part BUSHFloor
		{
			area = RearDoor,
			category = bodywork,
			itemType = damnCraft.Trunk,
			mechanicRequireKey = false,
			repairMechanic = true,
            durability = 5,
			container
			{
				conditionAffectsCapacity = False,
				test = BUSH.ContainerAccess.Trunk,
				capacity = 50,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}

		part BUSHAmmoCabinet
		{
			area = RearDoor,
			category = bodywork,
			itemType = damnCraft.Trunk,
			mechanicRequireKey = false,
			repairMechanic = true,
            durability = 5,
			container
			{
				conditionAffectsCapacity = False,
				test = BUSH.ContainerAccess.Trunk,
				capacity = 60,
			}
			lua
			{
				create = Vehicles.Create.Default,
			}
		}
		
	}
}