module Base
{
/* BathTowel (Base Override)*/ 
	item BathTowel
	{
		DisplayCategory = Household,
		ItemType = base:clothing,
		ClothingItem = BTO_BathTowel_Colored,
		BodyLocation = base:torsoextra,
		BloodLocation = Apron,
		FabricType = Cotton,

		Weight = 0.3,
		Icon = BathTowel,
		IconsForTexture = BTO_White;BTO_Black;BTO_Blue;BTO_Brown;BTO_Chocolate;BTO_Cyan;BTO_DarkGray;BTO_DarkGreen;BTO_DarkRed;BTO_DarkViolet;BTO_Gold;BTO_Green;BTO_HotPink;BTO_Khaki;BTO_Lavender;BTO_LightGray;BTO_LimeGreen;BTO_Magenta;BTO_Navy;BTO_Olive;BTO_Orange;BTO_Pink;BTO_Purple;BTO_Red;BTO_RoyalBlue;BTO_Salmon;BTO_SkyBlue;BTO_Tan;BTO_Teal;BTO_Tomato;BTO_Yellow;BTO_YellowGreen;BTO_Wheat;BTO_Lime,
		Tooltip = Tooltip_BathTowelsOverhaulTowel,

		/* Absorbency = 50, is ModData - This assigned by onCreate. */
		/* Insulation = 0.10,  - This assigned by onCreate. */

		OnCreate = BTO_Create.CreateBathTowel,
		StaticModel = BTO_BathTowel_Hand, /* This assigned by onCreate. */
		WorldStaticModel = BTO_BathTowel_Ground,
		Tags = base:isfirefuel;base:isfiretinder;bto:wipeable;bto:ripclothingtowel,
	}

/* HandTowel */ 
	item HandTowel
	{
		DisplayCategory = Household,
		ItemType = base:clothing,
		ClothingItem = BTO_BathTowel_Colored,
		BodyLocation = base:torsoextra,
		BloodLocation = Hand_R,
		FabricType = Cotton,

		Weight = 0.15,
		Icon = HandTowel,
		IconColorMask = HandTowel_Mask,
		Tooltip = Tooltip_BathTowelsOverhaulTowel,

		Absorbency = 30, /* is ModData */

		OnCreate = BTO_Create.CreateHandTowel,
		StaticModel = BTO_SmallTowel_Hand,
		WorldStaticModel = BTO_SmallTowel_Ground,
		Tags = base:isfirefuel;base:isfiretinder;bto:wipeable;bto:ripclothingtowel,

		ColorBlue = 200,
		ColorGreen = 200,
		ColorRed = 200,
	}

/* DishCloth (Base Override)*/ 
	item DishCloth
	{
		DisplayCategory = Household,
		ItemType = base:normal,
		Weight = 0.1,
		Icon = Dishtowel,
		Tooltip = Tooltip_BathTowelsOverhaulTowel_DustCloth,

		StaticModel = DishCloth_Hand,
		WorldStaticModel = DishTowel,
		Tags = base:isfirefuel;base:isfiretinder,
	}

/* DustCloth */ 
	item DustCloth
	{
		DisplayCategory = Household,
		ItemType = base:normal,
		Weight = 0.1,
		Icon = DustCloth,
		Tooltip = Tooltip_BathTowelsOverhaulTowel_DustCloth,

		StaticModel = BTO_DustCloth_Hand,
		WorldStaticModel = BTO_DustCloth_Ground,
		Tags = base:isfirefuel;base:isfiretinder,
	}

/* BathTowel_Crafted (for Handmade)*/ 
	item BathTowel_Crafted
	{
		DisplayCategory = Household,
		ItemType = base:clothing,
		ClothingItem = BTO_BathTowel_Crafted,
		BodyLocation = base:torsoextra,
		BloodLocation = Apron,
		FabricType = Cotton,

		Weight = 0.3,
		Icon = Bathtowel_Crafted,
		IconColorMask = Bathtowel_Crafted_Mask,

		Tooltip = Tooltip_BathTowelsOverhaulTowel,

		/* Absorbency = 20, is ModData - This reassigned by recipe onCreate. */

		StaticModel = BTO_BathTowel_Hand, /* - This reassigned by recipe onCreate. */
		WorldStaticModel = BTO_BathTowel_Ground,
		Tags = base:isfirefuel;base:isfiretinder;bto:wipeable;bto:ripclothingtowel,
	}
}