一个全随机的刷装备小游戏
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.

43 lines
862 B

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