// Token: 0x0600003F RID: 63 RVA: 0x000048B4 File Offset: 0x00002AB4
 internal static bool IsFluffyStuffed(TerrainDef terrain, out string camoType)
 {
     camoType = "notDefined";
     if (terrain.defName.Contains("_") && CamoGearUtility.GetFSValue(terrain.defName, out string text))
     {
         if (text.StartsWith("Wood") || text.StartsWith("Plywood"))
         {
             camoType = "Woodland";
             return(true);
         }
         if (text.StartsWith("Stone") || text.StartsWith("Flagstones") || text.StartsWith("Smooth"))
         {
             camoType = "Stone";
             return(true);
         }
         if (text.StartsWith("FloorsMetal"))
         {
             camoType = "Urban";
             return(true);
         }
     }
     return(false);
 }