Skip to content

Commit

Permalink
Add Nyan Meow
Browse files Browse the repository at this point in the history
  • Loading branch information
apache1123 committed Dec 22, 2023
1 parent d442ec4 commit 2d199bd
Show file tree
Hide file tree
Showing 12 changed files with 120 additions and 83 deletions.
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

1 comment on commit 2d199bd

@vercel
Copy link

@vercel vercel bot commented on 2d199bd Dec 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tof-tools – ./

tof-tools-git-main-apache1123.vercel.app
tof-tools.vercel.app
tof-tools-apache1123.vercel.app

Please sign in to comment.