module GidOrganized
{
	imports
	{
		Base,
	}

	item OS9pkBandages
	{
		Weight			= 0.45,
		Type			= Normal,
		DisplayName		= 9 x Bandages,
		DisplayCategory = FirstAid,
		Icon			= OS9pkBandages,
		WorldStaticModel= PackOfBandages,
	}
	
	recipe Pack 9
	{
		Bandage=9,

		Result:OS9pkBandages,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:60.0,
		Category:Storage,
	}

	recipe Unpack 9
	{
		OS9pkBandages,

		Result:Bandage=9,
		Time:60.0,
		Category:Storage,
	}

	model PackOfBandages
	{
		mesh = WorldItems/pack_of_bandages,
		texture = WorldItems/PackOfBandages,
		scale = 1.0,
	}
}