module Packing
{
	imports
	{
		Base,
	}
	
	item 10pkGarbage
	{
		Weight			= 0.5,
		Type			= Normal,
		DisplayName		= 10 x Garbage Bag,
		DisplayCategory = Container,
		Icon			= PGarbage,
		WorldStaticModel= PackOfGarbageBags,
	}
	
	item 5pkGarbage
	{
		Weight			= 0.35,
		Type			= Normal,
		DisplayName		= 5 x Garbage Bag,
		DisplayCategory = Container,
		Icon			= PGarbage,
		WorldStaticModel= PackOfGarbageBags,
	}

	recipe Pack 10
	{
		destroy Garbagebag=10,
		
		Result:10pkGarbage,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:75.0,
		Category:Storage,
	}
	
	recipe Unpack 10
	{
		destroy 10pkGarbage,
		
		Result:Garbagebag=10,
		Time:50.0,
		Category:Storage,
	}
	
	recipe Pack 5
	{
		destroy Garbagebag=5,
		
		Result:5pkGarbage,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:50.0,
		Category:Storage,
	}
	
	recipe Unpack 5
	{
		destroy 5pkGarbage,
		
		Result:Garbagebag=5,
		Time:25.0,
		Category:Storage,
	}

	recipe Put Together
	{
		5pkGarbage=2,
		
		Result:10pkGarbage=1,
		Time:30.0,
	}

	recipe Split in Two
	{
		10pkGarbage=1,
		
		Result:5pkGarbage=2,
		Time:30.0,
	}

	model PackOfGarbageBags
	{
		mesh = WorldItems/pack_of_adhesive_bandages,
		texture = WorldItems/PackOfGarbageBags,
		scale = 1.5,
	}
}