This commit is contained in:
yixu
2025-09-08 15:36:26 +08:00
commit 9a5cf53e3c
36 changed files with 7750 additions and 0 deletions

17
src/globalstore.js Normal file
View File

@@ -0,0 +1,17 @@
import { reactive } from "vue"
export const globalStore = reactive({
invitees: 0,
followed_official: false,
cap_scan: 0,
game_chances_view_recipes: 0,
POINT_1_ICESIP: 100,
POINT_1_ICON: 100,
MAX_CAP_SCAN: 5,
CONSUME_POINT_1_PER_DRAW: 1000,
MAX_INVITE_DAILY: 5,
MAX_VIEW_RECIPES_DAILY: 3,
updateViewRecipesCount () {
this.game_chances_view_recipes = this.game_chances_view_recipes >= this.MAX_VIEW_RECIPES_DAILY ? this.MAX_VIEW_RECIPES_DAILY : this.game_chances_view_recipes + 1
}
})