Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Nyan Meow #95

Merged
merged 1 commit into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
id: waitForDeploy
with:
token: ${{ secrets.GITHUB_TOKEN }}
max_timeout: 120
max_timeout: 180

- name: Checkout
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tof-tools",
"version": "3.1.1",
"version": "3.2.0",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Binary file added public/icons/weapons/yan-miao.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/constants/changelog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -87,4 +87,9 @@ export const changelog: Changelog = [
description:
'The "value" of a piece of gear is the damage increase you would get with it equipped versus unequipped',
},
{
semver: '3.2.0',
date: new Date(Date.UTC(2023, 11, 22)),
title: 'Add Yan Miao',
},
];
32 changes: 32 additions & 0 deletions src/constants/matrix-set-definitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export type MatrixSetBaseName =
| 'Tian Lang'
| 'Tsubasa'
| 'Umi'
| 'Yan Miao'
| 'Yu Lan'
| 'Zero';

Expand Down Expand Up @@ -81,6 +82,7 @@ export const matrixSet2pcOrder: DataAllIds<MatrixSet2pcName> = [
'Tian Lang 2pc',
'Tsubasa 2pc',
'Umi 2pc',
'Yan Miao 2pc',
'Yu Lan 2pc',
'Zero 2pc',
];
Expand Down Expand Up @@ -120,6 +122,7 @@ export const matrixSet4pcOrder: DataAllIds<MatrixSet4pcName> = [
'Tian Lang 4pc',
'Tsubasa 4pc',
'Umi 4pc',
'Yan Miao 4pc',
'Yu Lan 4pc',
'Zero 4pc',
];
Expand Down Expand Up @@ -611,6 +614,27 @@ export const matrixSetDefinitionsLookup: DataById<
critRateBuffs: [],
critDamageBuffs: [],
},
'Yan Miao 2pc': {
id: 'Yan Miao 2pc',
displayName: 'Yan Miao 2pc',
pieces: 2,
attackPercentBuffs: [
{
description: 'Increase physical and flame ATK, works off-hand',
starValues: [
{ star: 0, value: 0.19 },
{ star: 1, value: 0.21 },
{ star: 2, value: 0.23 },
{ star: 3, value: 0.25 },
],
elementalTypes: ['Flame', 'Physical'],
canStack: false,
isActivePassively: true,
},
],
critRateBuffs: [],
critDamageBuffs: [],
},
'Yu Lan 2pc': {
id: 'Yu Lan 2pc',
displayName: 'Yu Lan 2pc',
Expand Down Expand Up @@ -999,6 +1023,14 @@ export const matrixSetDefinitionsLookup: DataById<
critRateBuffs: [],
critDamageBuffs: [],
},
'Yan Miao 4pc': {
id: 'Yan Miao 4pc',
displayName: 'Yan Miao 4pc',
pieces: 4,
attackPercentBuffs: [],
critRateBuffs: [],
critDamageBuffs: [],
},
'Yu Lan 4pc': {
id: 'Yu Lan 4pc',
displayName: 'Yu Lan 4pc',
Expand Down
Loading