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
826 B
40 lines
826 B
import { i18n, RebornAttribute, RebornPoints, Player } 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: {}, |
|
}, |
|
rebornAttribute: new RebornAttribute(), |
|
rebornPoints: new RebornPoints(), |
|
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)', |
|
// playerStyle: { |
|
// left: '0%', |
|
// backgroundPosition: '0px 96px', |
|
// }, |
|
battleShow: false, |
|
}, |
|
};
|
|
|