// Real League of Legends client UI assets sourced from Community Dragon
// (https://raw.communitydragon.org). Used here under Riot's "Legal Jibber Jabber"
// policy for non-commercial fan/portfolio use.
//
// If any path 404s, swap CDRAGON_BASE to a pinned patch (e.g. "/15.4/" instead of "/latest/")
// or look up the new path at https://raw.communitydragon.org/latest/

const CDRAGON_BASE = "https://raw.communitydragon.org/latest";
const STATIC = `${CDRAGON_BASE}/plugins/rcp-fe-lol-static-assets/global/default`;
const LOOT   = `${CDRAGON_BASE}/plugins/rcp-fe-lol-loot/global/default`;

const LOL = {
  // Branding
  logo: `${STATIC}/images/lol_icon.png`,

  // PLAY button frame (unused in the reverted logo+text version)
  play: `${STATIC}/play-button-lobby-hover.png`,

  // Currency icons
  currency: {
    rp: `${STATIC}/currency/icons/rp.svg`,                       // Riot Points
    be: `${LOOT}/assets/loot_item_icons/currency_champion.png`,  // Blue Essence
  },
};

window.LOL = LOL;
