koishi-plugin-ggcevo-game 1.0.10 → 1.0.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 +9 -9
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -455,16 +455,16 @@ ${itemDetails.join("\n")}`;
|
|
|
455
455
|
let points = 10;
|
|
456
456
|
if (monthlyDays === 7) {
|
|
457
457
|
tickets = 4;
|
|
458
|
-
points =
|
|
458
|
+
points = 20;
|
|
459
459
|
} else if (monthlyDays === 14) {
|
|
460
460
|
tickets = 5;
|
|
461
|
-
points =
|
|
461
|
+
points = 30;
|
|
462
462
|
} else if (monthlyDays === 21) {
|
|
463
463
|
tickets = 6;
|
|
464
|
-
points =
|
|
464
|
+
points = 40;
|
|
465
465
|
} else if (monthlyDays === 28) {
|
|
466
466
|
tickets = 7;
|
|
467
|
-
points =
|
|
467
|
+
points = 50;
|
|
468
468
|
}
|
|
469
469
|
await ctx.database.upsert("ggcevo_sign", [{
|
|
470
470
|
handle,
|
|
@@ -513,19 +513,19 @@ ${itemDetails.join("\n")}`;
|
|
|
513
513
|
switch (newMonthlyDays) {
|
|
514
514
|
case 7:
|
|
515
515
|
tickets = 4;
|
|
516
|
-
points =
|
|
516
|
+
points = 10;
|
|
517
517
|
break;
|
|
518
518
|
case 14:
|
|
519
519
|
tickets = 5;
|
|
520
|
-
points =
|
|
520
|
+
points = 10;
|
|
521
521
|
break;
|
|
522
522
|
case 21:
|
|
523
523
|
tickets = 6;
|
|
524
|
-
points =
|
|
524
|
+
points = 10;
|
|
525
525
|
break;
|
|
526
526
|
case 28:
|
|
527
527
|
tickets = 7;
|
|
528
|
-
points =
|
|
528
|
+
points = 10;
|
|
529
529
|
break;
|
|
530
530
|
}
|
|
531
531
|
await ctx.database.set("ggcevo_sign", { handle }, {
|
|
@@ -1049,7 +1049,7 @@ ID:${activity.id}
|
|
|
1049
1049
|
"合成人": { quality: "t2", type: "皮肤", cost: 4, isLimited: false },
|
|
1050
1050
|
"阿斯塔特": { quality: "t1", type: "皮肤", cost: 5, isLimited: false },
|
|
1051
1051
|
"皇家指挥官": { quality: "t1", type: "皮肤", cost: 5, isLimited: false },
|
|
1052
|
-
"个性开场白": { quality: "t1", type: "
|
|
1052
|
+
"个性开场白": { quality: "t1", type: "入场特效", cost: 5, quantity: 5, isLimited: false },
|
|
1053
1053
|
"史蒂夫": { quality: "t0", type: "皮肤", cost: 6, quantity: 1, isLimited: true },
|
|
1054
1054
|
"ep4": { quality: "t0", type: "物品", cost: 6, quantity: 3, isLimited: false },
|
|
1055
1055
|
"小狗": { quality: "t3", type: "宠物", cost: 3, quantity: 5, isLimited: false },
|
package/package.json
CHANGED