If I wanted to alter the card to use the BoM icons (and I’m not 100% sure I do, I like the animated ones), is this the only bit I have to edit (after moving the BoM icons to /weather_icons?
bom-weather-card.js
// #####
// ##### weatherIcons: returns icon names based on current conditions text
// #####
get weatherIcons() {
return {
'sunny': 'day',
'clear': 'day',
'mostly-sunny': 'day',
'partly-cloudy': 'cloudy-day-3',
'cloudy': 'cloudy',
'hazy': 'cloudy-day-1',
'hazey': 'cloudy-day-1',
'light-rain': 'rainy-1',
'windy': 'cloudy',
'fog': 'cloudy',
'foggy': 'cloudy',
'showers': 'rainy-3',
'shower': 'rainy-3',
'rain': 'rainy-5',
'rainy': 'rainy-5',
'dust': 'cloudy-day-1',
'dusty': 'cloudy-day-1',
'snow': 'snowy-6',
'snowy': 'snowy-6',
'storm': 'scattered-thunderstorms',
'stormy': 'scattered-thunderstorms',
'light-showers': 'rainy-5',
'light-shower': 'rainy-5',
'heavy-showers': 'rainy-7',
'heavy-shower': 'rainy-7',
'tropical-cyclone': 'tornado',
'clear-day': 'day',
'clear-night': 'night',
'sleet': 'rainy-6',
'wind': 'cloudy',
'partly-cloudy-day': 'cloudy-day-3',
'partly-cloudy-night': 'cloudy-night-3',
'hail': 'rainy-7',
'lightning': 'thunder',
'thunderstorm': 'thunder',
'windy-variant': html`cloudy-${this.dayOrNight}-3`,
'exceptional': '!!',
}
}
Is the fact that they are PNG files instead of SVG files going to be a problem?