Last active
August 27, 2024 18:48
-
-
Save butchi/8ab1f1dc181197f4d588600af4baacec to your computer and use it in GitHub Desktop.
素数大富豪Lite Type-2 MOD簡易版
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
document.getElementById('field').style.background = '#66f' | |
document.getElementById('composite-number-toggle').style.visibility = 'hidden'; | |
timer = setInterval(_ => { | |
const discardBtnElm = document.getElementById('discard-button'); | |
const cardArr = [...document.getElementById('discard-frame').querySelectorAll('.card')]; | |
if (cardArr.length === 0) { | |
} else if (cardArr.length < 3) { | |
discardBtnElm.style.visibility = 'visible'; | |
} else { | |
discardBtnElm.style.visibility = 'hidden'; | |
} | |
}, 99); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
素数大富豪オンラインの3枚出し以上と合成数出しを禁止するMOD