module Base
{
/* BathTowel (Base Override)*/ 
	item BathTowel
	{
		DisplayCategory = Household,
		Type = Clothing,
		DisplayName = Bash Towel,
		ClothingItem = BTO_BathTowel_Colored,
		BodyLocation = TorsoExtra,
		BloodLocation = UpperBody,
		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 = BathTowelsOverhaul_OnCreate.CreateBathTowel,
		StaticModel = BTO_BathTowel_Hand, /* This assigned by onCreate. */
		WorldStaticModel = BTO_BathTowel_Ground,
		/* Tags = IsFireFuel;IsFireTinder;Wipeable;RipClothingTowel, */
	}

/* HandTowel */ 
	item HandTowel
	{
		DisplayCategory = Household,
		Type = Clothing,
		DisplayName = Hand Towel,
		ClothingItem = BTO_BathTowel_Colored,
		BodyLocation = TorsoExtra,
		BloodLocation = UpperBody,
		FabricType = Cotton,

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

		Absorbency = 30, /* is ModData */

		OnCreate = BathTowelsOverhaul_OnCreate.CreateHandTowel,
		StaticModel = BTO_SmallTowel_Hand,
		WorldStaticModel = BTO_SmallTowel_Ground,
		Tags = IsFireFuel;IsFireTinder;Wipeable;RipClothingTowel,

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

/* DishCloth (Base Override)*/ 
	item DishCloth
	{
		DisplayCategory = Household,
		Type = Normal,
		DisplayName = Dish Towel,
		Weight = 0.1,
		Icon = Dishtowel,
		Tooltip = Tooltip_BathTowelsOverhaulTowel_DustCloth,

		StaticModel = DishCloth_Hand,
		WorldStaticModel = DishTowel,
		Tags = IsFireFuel;IsFireTinder,
	}

/* DustCloth */ 
	item DustCloth
	{
		DisplayCategory = Household,
		Type = Normal,
		DisplayName = Dust Cloth,
		Weight = 0.1,
		Icon = DustCloth,
		Tooltip = Tooltip_BathTowelsOverhaulTowel_DustCloth,

		StaticModel = BTO_DustCloth_Hand,
		WorldStaticModel = BTO_DustCloth_Ground,
		Tags = IsFireFuel;IsFireTinder,
	}

/* BathTowel_Crafted (for Handmade)*/ 
	item BathTowel_Crafted
	{
		DisplayCategory = Household,
		Type = Clothing,
		DisplayName = Crafted Bath Towel,
		ClothingItem = BTO_BathTowel_Crafted,
		BodyLocation = TorsoExtra,
		BloodLocation = UpperBody,
		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 = IsFireFuel;IsFireTinder;Wipeable;RipClothingTowel,
	}
}