embed
.AddField("🌠" + Format.Bold(GetText(strs.location)),
$"[{data.Name + ", " +
data.Sys.Country}](https://openweathermap.org/city/{data.Id})",
true)
.AddField("📠" + Format.Bold(GetText(strs.latlong)),
$"{data.Coord.Lat}, {data.Coord.Lon}", true)
.AddField("☠" + Format.Bold(GetText(strs.condition)),
string.Join(", ", data.Weather.Select(w => w.Main)),
true)
.AddField("😓 " + Format.Bold(GetText(strs.humidity)),
$"{data.Main.Humidity}%", true)
.AddField("💨 " + Format.Bold(GetText(strs.wind_speed)),
data.Wind.Speed + " m/s", true)
.AddField("🌡 " + Format.Bold(GetText(strs.temperature)),
$"{data.Main.Temp:F1}°C /
{f(data.Main.Temp):F1}°F",
true)
.AddField("🔆 " + Format.Bold(GetText(strs.min_max)),
$"{data.Main.TempMin:F1}°C -
{data.Main.TempMax:F1}°C\n{f(data.Main.TempMin):F1}°F -
{f(data.Main.TempMax):F1}°F",
true)
.AddField("🌄 " + Format.Bold(GetText(strs.sunrise)),
$"{sunrise:HH:mm} {timezone}", true)
.AddField("🌇 " + Format.Bold(GetText(strs.sunset)),
$"{sunset:HH:mm} {timezone}", true)
.WithOkColor()
.WithFooter("Powered by openweathermap.org",
$"http://openweathermap.org/img/w/{data.Weather[0].Icon}.png");