module Packing
{
	imports
	{
		Base,
	}
	
	item 10pkSheetRope
	{
		Weight			= 4,
		Type			= Normal,
		DisplayName		= 10 x Sheet Rope,
		DisplayCategory = Material,
		Icon			= PSheetRope,
		WorldStaticModel= BundleOfSheetRope,
	}
	
	item 5pkSheetRope
	{
		Weight			= 2.8,
		Type			= Normal,
		DisplayName		= 5 x Sheet Rope,
		DisplayCategory = Material,
		Icon			= PSheetRope,
		WorldStaticModel= BundleOfSheetRope,
	}

	recipe Pack 10
	{
		destroy SheetRope=10,
		
		Result:10pkSheetRope,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:150.0,
		Category:Storage,
	}
	
	recipe Unpack 10
	{
		destroy 10pkSheetRope,
		
		Result:SheetRope=10,
		Time:100.0,
		Category:Storage,
	}
	
	recipe Pack 5
	{
		destroy SheetRope=5,
		
		Result:5pkSheetRope,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:100.0,
		Category:Storage,
	}
	
	recipe Unpack 5
	{
		destroy 5pkSheetRope,
		
		Result:SheetRope=5,
		Time:75.0,
		Category:Storage,
	}

	recipe Put Together
	{
		5pkSheetRope=2,
		
		Result:10pkSheetRope=1,
		Time:40.0,
	}

	recipe Split in Two
	{
		10pkSheetRope=1,
		
		Result:5pkSheetRope=2,
		Time:40.0,
	}

	model BundleOfSheetRope
	{
		mesh = WorldItems/pack_of_sheet_rope,
		texture = WorldItems/BundleOfSheetRope,
		scale = 1.0,
	}
}