-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
37 lines (30 loc) · 896 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Comentário teste
class Shenlong {
constructor() {
this.dragonBalls = []
this.isVisible = false
}
getAmountOfDragonBalls() {
return this.dragonBalls.length
}
getVisibility() {
return this.isVisible
}
getDragonBallsList() {
return this.dragonBalls
}
changeDragonBallsList(balls) {
this.dragonBalls.push(...balls)
}
clearDragonBallList() {
this.dragonBalls = []
}
invokeShenlong(magicWords) {
const magic = 'Apareça Shenlong e realize o meu desejo'
if (this.dragonBalls < 7) return 'Você precisa ter as 7 esferas para invocar o Shenlong'
if (!magicWords || magicWords !== magic) return 'Você precisa dizer as palavras mágicas'
this.isVisible = true
return 'Você tem direito a 3 pedidos'
}
}
module.exports.Shenlong = new Shenlong