koishi-plugin-ggcevo-game 1.2.10 → 1.2.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +0 -4
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -784,19 +784,15 @@ ${itemDetails.join("\n")}`;
|
|
|
784
784
|
switch (newMonthlyDays) {
|
|
785
785
|
case 7:
|
|
786
786
|
tickets = 4;
|
|
787
|
-
points = getRandomInt(20, 30);
|
|
788
787
|
break;
|
|
789
788
|
case 14:
|
|
790
789
|
tickets = 5;
|
|
791
|
-
points = getRandomInt(30, 50);
|
|
792
790
|
break;
|
|
793
791
|
case 21:
|
|
794
792
|
tickets = 6;
|
|
795
|
-
points = getRandomInt(50, 70);
|
|
796
793
|
break;
|
|
797
794
|
case 28:
|
|
798
795
|
tickets = 7;
|
|
799
|
-
points = getRandomInt(70, 100);
|
|
800
796
|
break;
|
|
801
797
|
}
|
|
802
798
|
await ctx.database.set("ggcevo_sign", { handle }, {
|