Skip to content

Commit 53e68b5

Browse files
committed
Add Nyan Meow
1 parent d442ec4 commit 53e68b5

File tree

12 files changed

+120
-83
lines changed

12 files changed

+120
-83
lines changed

.github/workflows/playwright.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
id: waitForDeploy
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
15-
max_timeout: 120
15+
max_timeout: 180
1616

1717
- name: Checkout
1818
uses: actions/checkout@v3

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tof-tools",
3-
"version": "3.1.1",
3+
"version": "3.2.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

public/icons/weapons/yan-miao.png

14.8 KB
Loading

src/constants/changelog.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,9 @@ export const changelog: Changelog = [
8787
description:
8888
'The "value" of a piece of gear is the damage increase you would get with it equipped versus unequipped',
8989
},
90+
{
91+
semver: '3.2.0',
92+
date: new Date(Date.UTC(2023, 11, 22)),
93+
title: 'Add Yan Miao',
94+
},
9095
];

src/constants/matrix-set-definitions.ts

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export type MatrixSetBaseName =
4343
| 'Tian Lang'
4444
| 'Tsubasa'
4545
| 'Umi'
46+
| 'Yan Miao'
4647
| 'Yu Lan'
4748
| 'Zero';
4849

@@ -81,6 +82,7 @@ export const matrixSet2pcOrder: DataAllIds<MatrixSet2pcName> = [
8182
'Tian Lang 2pc',
8283
'Tsubasa 2pc',
8384
'Umi 2pc',
85+
'Yan Miao 2pc',
8486
'Yu Lan 2pc',
8587
'Zero 2pc',
8688
];
@@ -120,6 +122,7 @@ export const matrixSet4pcOrder: DataAllIds<MatrixSet4pcName> = [
120122
'Tian Lang 4pc',
121123
'Tsubasa 4pc',
122124
'Umi 4pc',
125+
'Yan Miao 4pc',
123126
'Yu Lan 4pc',
124127
'Zero 4pc',
125128
];
@@ -611,6 +614,27 @@ export const matrixSetDefinitionsLookup: DataById<
611614
critRateBuffs: [],
612615
critDamageBuffs: [],
613616
},
617+
'Yan Miao 2pc': {
618+
id: 'Yan Miao 2pc',
619+
displayName: 'Yan Miao 2pc',
620+
pieces: 2,
621+
attackPercentBuffs: [
622+
{
623+
description: 'Increase physical and flame ATK, works off-hand',
624+
starValues: [
625+
{ star: 0, value: 0.19 },
626+
{ star: 1, value: 0.21 },
627+
{ star: 2, value: 0.23 },
628+
{ star: 3, value: 0.25 },
629+
],
630+
elementalTypes: ['Flame', 'Physical'],
631+
canStack: false,
632+
isActivePassively: true,
633+
},
634+
],
635+
critRateBuffs: [],
636+
critDamageBuffs: [],
637+
},
614638
'Yu Lan 2pc': {
615639
id: 'Yu Lan 2pc',
616640
displayName: 'Yu Lan 2pc',
@@ -999,6 +1023,14 @@ export const matrixSetDefinitionsLookup: DataById<
9991023
critRateBuffs: [],
10001024
critDamageBuffs: [],
10011025
},
1026+
'Yan Miao 4pc': {
1027+
id: 'Yan Miao 4pc',
1028+
displayName: 'Yan Miao 4pc',
1029+
pieces: 4,
1030+
attackPercentBuffs: [],
1031+
critRateBuffs: [],
1032+
critDamageBuffs: [],
1033+
},
10021034
'Yu Lan 4pc': {
10031035
id: 'Yu Lan 4pc',
10041036
displayName: 'Yu Lan 4pc',

0 commit comments

Comments
 (0)