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.
|
|
|
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: [],
|
N多功能新增与调整
1.新增装备属性:伤害加成,伤害减免,暴击避免,爆伤减免,移动速度,转生属性副本行进速度更改为移动速度
2.新增装备类型:饰品,裤子,鞋子,护腕
3.新增装备品质:多彩,多彩品质装备拥有独特的主被动技能
4.新增部分多彩品质装备(暂无产出途径)
5.调整战斗逻辑,适配新增属性和技能
6.调整护甲减伤比例(调低)
7.调整格挡属性数值(调低)
8.调整暴击率和暴击伤害数值随装备等级线性增长(1级为原来一半,100级与原来相等)
9.调整转生点对移动速度的加成(调低)
10.新增装备图标资源
11.装备图鉴显示方式调整
3 weeks ago
|
|
|
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,
|
|
|
|
};
|