Skip to content
Snippets Groups Projects
Commit d65e5f67 authored by syuilo's avatar syuilo
Browse files

単なるラッキーの獲得確立を調整

parent e67d7bc0
No related branches found
No related tags found
No related merge requests found
...@@ -1148,7 +1148,7 @@ _achievements: ...@@ -1148,7 +1148,7 @@ _achievements:
description: "ここをクリックした" description: "ここをクリックした"
_justPlainLucky: _justPlainLucky:
title: "単なるラッキー" title: "単なるラッキー"
description: "10秒ごとに0.01%の確率で獲得" description: "10秒ごとに0.005%の確率で獲得"
_setNameToSyuilo: _setNameToSyuilo:
title: "神様コンプレックス" title: "神様コンプレックス"
description: "名前を syuilo に設定した" description: "名前を syuilo に設定した"
......
...@@ -438,7 +438,7 @@ if ($i) { ...@@ -438,7 +438,7 @@ if ($i) {
} }
window.setInterval(() => { window.setInterval(() => {
if (Math.floor(Math.random() * 10000) === 0) { if (Math.floor(Math.random() * 20000) === 0) {
claimAchievement('justPlainLucky'); claimAchievement('justPlainLucky');
} }
}, 1000 * 10); }, 1000 * 10);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment