Browse Source

新增收藏品神话:初恋

2.0
许孟阳 2 months ago
parent
commit
e79bea68cf
  1. 11
      src/config/equips/weapon.ts
  2. 2
      src/config/i18n/zh/euips.ts
  3. 1
      src/config/i18n/zh/skills.ts
  4. 12
      src/config/skill/weapon.ts
  5. 1
      src/views/version/update-log.vue

11
src/config/equips/weapon.ts

@ -129,6 +129,17 @@ export const weaponColorfulCategorys: Categorys[] = [ @@ -129,6 +129,17 @@ export const weaponColorfulCategorys: Categorys[] = [
'LiuYing,SeeRed',
0.9
),
new WeaponCategory(
'chulian',
'weapon/初恋.png',
[
{ type: 'atk', valCoefficient: 0.001 },
{ type: 'def', valCoefficient: 0.001 },
{ type: 'hp', valCoefficient: 0.001 },
],
'ShiLian',
0.9999
),
];
export const weaponUniqueCategorys: WeaponCategory[] = [

2
src/config/i18n/zh/euips.ts

@ -24,8 +24,8 @@ export const weapon = { @@ -24,8 +24,8 @@ export const weapon = {
shayi: ['杀意', '仇敌,莫让吾听闻汝名。'],
limaoliren: ['狸猫利刃', '比时光还要无情。'],
liuying: ['流萤', '若不困顿於林野,必凄惶於道路。'],
chengba: ['称霸', '霸者不藏其锋,以天地为鞘。'],
chulian: ['初恋', '我的初恋在月亮之上。 ----八戒'],
chengba: ['称霸', '霸者不藏其锋,以天地为鞘。'],
duwu: ['黩武', '若未用够最后一丝力气,如何能甘心。'],
emeng: ['噩梦', '我最近的噩梦,都和一只猴子有关...... ----增长天王'],
heifeng: ['黑风', '这把斧子一直不肯相信它的主人已经死去。'],

1
src/config/i18n/zh/skills.ts

@ -29,6 +29,7 @@ export const liuying = [ @@ -29,6 +29,7 @@ export const liuying = [
'消耗所有荧光层数,对${0}造成${1}点伤害,并附加${2}回合感电。',
];
export const seeRed = ['见红', '对目标施加${0}层流血,持续${1}回合。', '冷却${0}回合。'];
export const shilian = ['失恋', '受到的伤害增加${0}%。'];
export const bhxdjc = [
'百花羞的矜持',

12
src/config/skill/weapon.ts

@ -251,3 +251,15 @@ export class LiuYing extends SufPassiveSkill { @@ -251,3 +251,15 @@ export class LiuYing extends SufPassiveSkill {
}
}
}
//失恋
export class ShiLian extends StartPassiveSkill {
name: string = 'shilian';
dmgReduce: number = -100;
desc(): string {
return replace(st('shilian.1'), [-1 * this.dmgReduce]);
}
takeEffect(owner: BattleRole, target: BattleRole): void {
const shilian = new DmgReducBuff(this.name, this.dmgReduce, 9999);
owner.putBuff(shilian);
}
}

1
src/views/version/update-log.vue

@ -43,6 +43,7 @@ const updateLogs: any = [{ @@ -43,6 +43,7 @@ const updateLogs: any = [{
'新增神话装备:黑白钻戒,流萤',
'神话装备【求爱】技能调整',
'梳妆镜被动调整,降低触发概率,改回真实伤害',
'新增收藏品神话:初恋',
],
bug: [
'修正狸猫利刃技能描述(实际效果没变)',

Loading…
Cancel
Save