一个全随机的刷装备小游戏
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

40 lines
787 B

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,
};