UNPKG
cr.js
Version:
latest (0.2.2)
0.2.2
0.2.1
0.2.0
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
An simple clash royale api
github.com/madebyKAI/cr.js
madebyKAI/cr.js
cr.js
/
src
/
Variable
/
Arena.js
10 lines
(9 loc)
•
239 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
class
Arena
{
constructor
(
data
) {
this
.name =
data
.name;
this
.number =
data
.arenaID;
this
.limit =
data
.trophyLimit
this
.imageUrl = `http:
//api.cr-api.com${data.imageURL}`
} } module.exports = Arena;