|
|
|
<template>
|
|
|
|
<div id="main" class="main" @click="playBackgound; commit('close_equip_tip')"
|
|
|
|
@contextmenu.prevent="playBackgound()">
|
|
|
|
<div class="infomation">
|
|
|
|
<Message />
|
|
|
|
</div>
|
|
|
|
<Menu />
|
|
|
|
</div>
|
|
|
|
<EquipTips />
|
|
|
|
<Login />
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { useStore } from "vuex";
|
|
|
|
import { reactive, onMounted, ref } from "vue";
|
|
|
|
import { useI18n } from "vue3-i18n";
|
|
|
|
import Message from "./message";
|
|
|
|
import Menu from "./menu.vue";
|
|
|
|
import { EquipTips } from "@/components";
|
|
|
|
import { setCommit } from "@/api";
|
|
|
|
import Login from "./login.vue";
|
|
|
|
|
|
|
|
const { t } = useI18n();
|
|
|
|
const { state, commit, dispatch } = useStore();
|
|
|
|
setCommit(commit);
|
|
|
|
const playFlag = ref(false);
|
|
|
|
|
|
|
|
const playBackgound = () => {
|
|
|
|
if (!playFlag.value) {
|
|
|
|
dispatch('play_music', 'backgound')
|
|
|
|
playFlag.value = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
N多功能新增与调整
1.新增装备属性:伤害加成,伤害减免,暴击避免,爆伤减免,移动速度,转生属性副本行进速度更改为移动速度
2.新增装备类型:饰品,裤子,鞋子,护腕
3.新增装备品质:多彩,多彩品质装备拥有独特的主被动技能
4.新增部分多彩品质装备(暂无产出途径)
5.调整战斗逻辑,适配新增属性和技能
6.调整护甲减伤比例(调低)
7.调整格挡属性数值(调低)
8.调整暴击率和暴击伤害数值随装备等级线性增长(1级为原来一半,100级与原来相等)
9.调整转生点对移动速度的加成(调低)
10.新增装备图标资源
11.装备图鉴显示方式调整
3 weeks ago
|
|
|
onMounted(() => { });
|
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
* {
|
|
|
|
box-sizing: border-box;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.main {
|
|
|
|
background: #111;
|
|
|
|
box-sizing: border-box;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0.5vh 0.5vw;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
bottom: 0;
|
|
|
|
right: 0;
|
|
|
|
color: #eee;
|
|
|
|
height: 100%;
|
|
|
|
overflow: scroll;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infomation {
|
|
|
|
height: calc(100% - 1vh);
|
|
|
|
width: 40vw;
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (max-width: 768px) {
|
|
|
|
|
|
|
|
.infomation {
|
|
|
|
height: calc(100% - 1vh);
|
|
|
|
width: calc(100% - 1vw);
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|