2048-Numberwang

什麼時候是Numberwang?

  • July 23, 2021

我在玩2048 Numberwang。有時遊戲會宣稱:在此處輸入圖像描述

是否可以確切地知道什麼時候是 Numberwang?

“那是數王!” 如果您在該回合的分數大於 8,則在分數更新期間顯示**10%**的隨機消息:

相關程式碼在html_actuator.js

function HTMLActuator() {
   ...
   this.thatsNumberwang  = document.querySelector(".thats-numberwang");
   ...
}
...
HTMLActuator.prototype.updateScore = function (score) {
   ...
   if (Math.random() > 0.9 && score > 8) {
       this.showMessage()
   }
   ...
};
...
HTMLActuator.prototype.showMessage = function (message) {
   message = message || "That's Numberwang!";
   var announce = document.createElement("p");
   announce.classList.add("show-numberwang");
   announce.textContent = message;
   this.thatsNumberwang.appendChild(announce);
};

引用自:https://gaming.stackexchange.com/questions/161098