Skip to content

Commit 2e07341

Browse files
committed
🔀 Merge branch 'release/1.4.14'
2 parents 6b95d8c + cb61455 commit 2e07341

File tree

7 files changed

+72
-21
lines changed

7 files changed

+72
-21
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.4.14] - 2025-09-09
9+
10+
### Added
11+
12+
- New character: Aino
13+
- New character: Flins
14+
- New character: Lauma
15+
816
## [1.4.13] - 2025-07-28
917

1018
### Added
@@ -291,6 +299,7 @@ Note: From now on I will release the characters for the whole patch instead of p
291299

292300
- Initial release
293301

302+
[1.4.14]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.13...1.4.14
294303
[1.4.13]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.12...1.4.13
295304
[1.4.12]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.11...1.4.12
296305
[1.4.11]: https://github.com/Pustur/genshin-impact-team-randomizer/compare/1.4.10...1.4.11

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "genshin-impact-team-randomizer",
3-
"version": "1.4.13",
3+
"version": "1.4.14",
44
"description": "A web app to randomize your Genshin Impact team based on the characters that you own",
55
"type": "module",
66
"files": [

public/img/characters/aino.png

Lines changed: 3 additions & 0 deletions
Loading

public/img/characters/flins.png

Lines changed: 3 additions & 0 deletions
Loading

public/img/characters/lauma.png

Lines changed: 3 additions & 0 deletions
Loading

src/data/characters.ts

Lines changed: 51 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@ import { GenshinCharacter } from '../types/types';
22

33
export const characters: GenshinCharacter[] = [
44
{
5-
id: 1,
6-
fullName: 'Arataki Itto',
7-
shortName: 'Itto',
8-
stars: 5,
9-
elements: ['geo'],
5+
id: 103,
6+
fullName: 'Aino',
7+
shortName: 'Aino',
8+
stars: 4,
9+
elements: ['hydro'],
1010
weapon: 'claymore',
11-
gender: ['M'],
12-
selected: false,
11+
gender: ['F'],
12+
selected: true,
1313
collab: false,
1414
},
1515
{
@@ -56,6 +56,17 @@ export const characters: GenshinCharacter[] = [
5656
selected: true,
5757
collab: false,
5858
},
59+
{
60+
id: 1,
61+
fullName: 'Arataki Itto',
62+
shortName: 'Itto',
63+
stars: 5,
64+
elements: ['geo'],
65+
weapon: 'claymore',
66+
gender: ['M'],
67+
selected: false,
68+
collab: false,
69+
},
5970
{
6071
id: 81,
6172
fullName: 'Arlecchino',
@@ -331,6 +342,17 @@ export const characters: GenshinCharacter[] = [
331342
selected: false,
332343
collab: false,
333344
},
345+
{
346+
id: 105,
347+
fullName: 'Flins',
348+
shortName: 'Flins',
349+
stars: 5,
350+
elements: ['electro'],
351+
weapon: 'polearm',
352+
gender: ['M'],
353+
selected: false,
354+
collab: false,
355+
},
334356
{
335357
id: 71,
336358
fullName: 'Freminet',
@@ -584,6 +606,17 @@ export const characters: GenshinCharacter[] = [
584606
selected: false,
585607
collab: false,
586608
},
609+
{
610+
id: 104,
611+
fullName: 'Lauma',
612+
shortName: 'Lauma',
613+
stars: 5,
614+
elements: ['dendro'],
615+
weapon: 'catalyst',
616+
gender: ['F'],
617+
selected: false,
618+
collab: false,
619+
},
587620
{
588621
id: 58,
589622
fullName: 'Layla',
@@ -716,17 +749,6 @@ export const characters: GenshinCharacter[] = [
716749
selected: false,
717750
collab: false,
718751
},
719-
{
720-
id: 27,
721-
fullName: 'Ningguang',
722-
shortName: 'Ningguang',
723-
stars: 4,
724-
elements: ['geo'],
725-
weapon: 'catalyst',
726-
gender: ['F'],
727-
selected: false,
728-
collab: false,
729-
},
730752
{
731753
id: 57,
732754
fullName: 'Nilou',
@@ -738,6 +760,17 @@ export const characters: GenshinCharacter[] = [
738760
selected: false,
739761
collab: false,
740762
},
763+
{
764+
id: 27,
765+
fullName: 'Ningguang',
766+
shortName: 'Ningguang',
767+
stars: 4,
768+
elements: ['geo'],
769+
weapon: 'catalyst',
770+
gender: ['F'],
771+
selected: false,
772+
collab: false,
773+
},
741774
{
742775
id: 28,
743776
fullName: 'Noelle',

0 commit comments

Comments
 (0)