module GidOrganized
{
	imports
	{
		Base,
	}

	item OS50pkSleepingPills
	{
		Weight				= 0.5,
		Type				= Normal,
		UseWhileEquipped	= FALSE,
		DisplayName			= 5 x Sleeping Pills,
		DisplayCategory 	= FirstAid,
		Icon				= OS50pkSleepingPills,
		WorldStaticModel    = BottleOfSleepingPills,
	}
	
	recipe Pack 5
	{
		destroy PillsSleepingTablets=5,

		Result:OS50pkSleepingPills,
		OnCreate:Recipe.OnCreate.SaveUses,
		OnTest:Recipe.OnTest.IsFavorite,
		Time:120.0,
		Category:Storage,
	}
	
	recipe Unpack 5
	{
		OS50pkSleepingPills,

		Result:PillsSleepingTablets,
		OnCreate:Recipe.OnCreate.LoadUses,
		RemoveResultItem:true,
		Time:120.0,
		Category:Storage,
	}

	model BottleOfSleepingPills
	{
		mesh = WorldItems/bottle_of_antibiotics,
		texture = WorldItems/BottleOfSleepingPills,
		scale = 1.0,
	}
}