module Base
{
	xuiSkin default
	{
		entity ES_Floor_Hay
		{
			LuaWindowClass	= ISEntityWindow,
			DisplayName	= NBEntityName_HayFloor,
			Icon		= Build_vegetation_farm_01_13,
		}
	}

    entity Floor_Hay
    {
        component UiConfig
                {
                    xuiSkin         = default,
                    entityStyle     = ES_Floor_Hay,
                    uiEnabled       = false,
                }

        component SpriteConfig
        {
		    isThumpable     = false,
		    OnIsValid = BuildRecipeCode.floor.OnIsValid,
		    OnCreate = NB_BuildRecipeCode.Floors.OnCreate,
			
            face W
            {
                layer
                {
                    row = vegetation_farm_01_12,
                }
            }
            face N
            {
                layer
                {
                    row = vegetation_farm_01_13,
                }
            }
        }
		
        component CraftRecipe
        {
            timedAction   = EmptyBag,
            time          = 100,
            category      = Floors,
            ToolTip       = Tooltip_craft_sandFloorDesc,
            inputs
            {
                item 5 [Base.HayTuft],
            }
        }
    }
}