r6s-stats-api
Version:
An api for fetching player statistics from Rainbow Six Siege
87 lines (78 loc) • 2.98 kB
JavaScript
module.exports = function (img) {
switch (img) {
case 'COPPER V':
return 'https://imgur.com/5tMUlN8.png';
case 'COPPER IV':
return 'https://imgur.com/4FOsKqM.png';
case 'COPPER III':
return 'https://imgur.com/w4Zdkc4.png';
case 'COPPER II':
return 'https://imgur.com/doJaPHP.png';
case 'COPPER I':
return 'https://imgur.com/zeNn2EQ.png';
case 'BRONZE V':
return 'https://imgur.com/kOlkE7n.png';
case 'BRONZE IV':
return 'https://imgur.com/yqPsmmv.png';
case 'BRONZE III':
return 'https://imgur.com/1rG4FpF.png';
case 'BRONZE II':
return 'https://imgur.com/9nl8uJx.png';
case 'BRONZE I':
return 'https://imgur.com/ehnXLcR.png';
case 'SILVER V':
return 'https://imgur.com/NpBtpuL.png';
case 'SILVER IV':
return 'https://imgur.com/dXqDtfu.png';
case 'SILVER III':
return 'https://imgur.com/qEOIIhw.png';
case 'SILVER II':
return 'https://imgur.com/T1gj0oX.png';
case 'SILVER I':
return 'https://imgur.com/57Xg7xm.png';
case 'GOLD V':
return 'https://i.imgur.com/7pThZFx.png';
case 'GOLD IV':
return 'https://imgur.com/0nc7epN.png';
case 'GOLD III':
return 'https://imgur.com/hQzavB2.png';
case 'GOLD II':
return 'https://imgur.com/JN4MRjp.png';
case 'GOLD I':
return 'https://imgur.com/C7Wr3Ty.png';
case 'PLATINUM V':
return 'https://i.imgur.com/YvAyy0s.png';
case 'PLATINUM IV':
return 'https://i.imgur.com/FYoAbTw.png';
case 'PLATINUM III':
return 'https://imgur.com/5xKwhhB.png';
case 'PLATINUM II':
return 'https://imgur.com/YrDuNNC.png';
case 'PLATINUM I':
return 'https://imgur.com/jHKSXxD.png';
case 'EMERALD V':
return 'https://i.imgur.com/PeFVREp.png';
case 'EMERALD IV':
return 'https://i.imgur.com/1cQEwv5.png';
case 'EMERALD III':
return 'https://i.imgur.com/wGANDF6.png';
case 'EMERALD II':
return 'https://i.imgur.com/4lcrJKS.png';
case 'EMERALD I':
return 'https://i.imgur.com/iL7fj41.png';
case 'DIAMOND V':
return 'https://i.imgur.com/J4k8G8m.png';
case 'DIAMOND IV':
return 'https://i.imgur.com/NpmJe5S.png';
case 'DIAMOND III':
return 'https://imgur.com/u7bnEA1.png';
case 'DIAMOND II':
return 'https://imgur.com/jo5YKVm.png';
case 'DIAMOND I':
return 'https://imgur.com/h94nQF3.png';
case 'CHAMPION':
return 'https://imgur.com/Q5Qpcmt.png';
default://UNRANKED
return 'https://imgur.com/PvLQN8r.png';
}
}