Merge pull request #99 from bui/over1500-combo

add over1500 combo sound
This commit is contained in:
Bui 2018-12-30 16:51:42 +00:00 committed by GitHub
commit 1b95cea23a
2 changed files with 5 additions and 3 deletions

View File

@ -63,6 +63,7 @@ var assets = {
"combo-1200-meka.wav",
"combo-1300-meka.wav",
"combo-1400-meka.wav",
"combo-over1500-meka.wav",
"fullcombo-meka.wav",
"song-select.wav",
@ -94,7 +95,8 @@ var assets = {
"combo-1200.wav",
"combo-1300.wav",
"combo-1400.wav",
"combo-over1500.wav",
"fullcombo.wav",
"gamefullcombo.wav",
"gameclear.wav",

View File

@ -413,8 +413,8 @@ class Game{
if(this.combo > this.globalScore.maxCombo){
this.globalScore.maxCombo = this.combo
}
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0 && this.combo <= 1400){
this.controller.playSoundMeka("combo-" + this.combo)
if(this.combo === 50 || this.combo > 0 && this.combo % 100 === 0 && this.combo < 1500 || this.combo % 500 === 0){
this.controller.playSoundMeka("combo-" + (this.combo <= 1400 ? this.combo : "over1500"))
}
this.view.updateCombo(this.combo)
}