module Base
{
	xuiSkin default
	{
		entity ES_Floor_SpringGrassEdge
		{
			LuaWindowClass	= ISEntityWindow,
			DisplayName	= NBEntityName_SpringGrassEdgeFloor,
			Icon		= Build_blends_natural_01_25,
		}
	}

    entity Floor_SpringGrassEdge
    {
        component UiConfig
                {
                    xuiSkin         = default,
                    entityStyle     = ES_Floor_SpringGrassEdge,
                    uiEnabled       = false,
                }

        component SpriteConfig
        {
		    isThumpable     = false,
		    OnIsValid       = BuildRecipeCode.floor.OnIsValid,
		    OnCreate        = NB_BuildRecipeCode.PartFloors.OnCreate,
			
            face W
            {
                layer
                {
                    row = blends_natural_01_25,
                }
            }
            face N
            {
                layer
                {
                    row = blends_natural_01_24,
                }
            }
            face E
            {
                layer
                {
                    row = blends_natural_01_26,
                }
            }
            face S
            {
                layer
                {
                    row = blends_natural_01_27,
                }
            }
        }
		
        component CraftRecipe
        {
            OnAddToMenu   = ignoreFromBuildMenu,
            timedAction   = EmptyBag,
            time          = 50,
            category      = Floors,
            ToolTip       = Tooltip_craft_dirtFloorDesc,
            inputs
            {
                item 1 [Base.GrassTuft],
            }
        }
    }
}