import { i18n, Player, Points, BaseAttribute } from '@/config'; const { t } = i18n; export default { sysInfo: [ { type: 'win', msg: t('welcome.0') }, { type: 'win', msg: t('welcome.1') }, ], mobile: window.innerWidth < 768, curMenu: null, equipTip: { equip: null, tipsShow: false, compare: false, tipsStyle: {}, tipsStyle2: {}, }, points: new Points(), baseAttribute: new BaseAttribute(), grid: new Array(32), autoSell: [], playerAttribute: new Player(), shop: { item: [], waitTime: 60, freeTimes: 5, }, battle: { timeOut: 0, left: '0', imgLeft: '0px', clip: 'rect(96px, 32px, 144px, 0px)', battleShow: false, repeat: true, upward: true, }, experiential: false, showLogin: false, };