Skip to content

Commit

Permalink
2.2.2
Browse files Browse the repository at this point in the history
- Add 2 new artifact sets added in 1.2
  • Loading branch information
frzyc committed Dec 24, 2020
1 parent 14386b9 commit 1028310
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,6 @@ yarn-error.log*
.eslintcache

# for personal use
.notes
.notes
# template files
TEMPLATE.js
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"homepage": "https://frzyc.github.io/genshin-optimizer/",
"name": "genshin-optimizer",
"version": "2.2.1",
"version": "2.2.2",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.32",
Expand Down
38 changes: 37 additions & 1 deletion src/Data/ArtifactData.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,43 @@ const ArtifactSlotsData = {
circlet: { name: "Circlet of Logos", stats: ["hp_", "def_", "atk_", "ele_mas", "crit_rate", "crit_dmg", "heal_bonu"] },
};
const ArtifactSetsData = {
"Wanderer's Troupe": {
"HeartOfDepth": {
name: "Heart of Depth", rarity: [4, 5], pieces: {
flower: "Gilded Corsage",
plume: "Gust of Nostalgia",
sands: "Copper Compass",
goblet: "Goblet of Thundering Deep",
circlet: "Wine-Stained Tricorne"
},
sets: {
2: {
text: "Hydro DMG Bonus +15%",
stats: { hydro_ele_dmg: 15 }
},
4: {
text: "After using Elemental Skill, increases Normal Attack and Charged Attack DMG by 30% for 15s",
stats: {}
}
}
}, "BlizzardStrayer": {
name: "Blizzard Strayer", rarity: [4, 5], pieces: {
flower: "Snowswept Memory",
plume: "Icebreaker's Resolve",
sands: "Frozen Homeland's Demise",
goblet: "Frost-Weaved Dignity",
circlet: "Broken Rime's Echo"
},
sets: {
2: {
text: "Cryo DMG Bonus +15%",
stats: { cryo_ele_dmg: 15 }
},
4: {
text: "When a character attacks an enemy affected by Cryo, their CRIT Rate is increased by 20%. If the enemy is Frozen, CRIT Rate is increased by an additional 20%",
stats: {}
}
}
}, "Wanderer's Troupe": {
name: "Wanderer's Troupe", rarity: [4, 5], pieces: {
flower: "Troupe's Dawnlight",
plume: "Bard's Arrow Feather",
Expand Down

0 comments on commit 1028310

Please sign in to comment.