teyvatdb 0.2.1.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/genshin_data/artifact_sets/artifact_set_data.rb +1093 -0
- data/lib/genshin_data/artifact_sets.rb +50 -50
- data/lib/genshin_data/weapon_materials/weapon_material_data.rb +142 -0
- data/lib/genshin_data/weapon_materials.rb +3 -3
- data/lib/genshin_data.rb +1 -0
- data/lib/genshin_object/artifact_set.rb +2 -2
- data/lib/genshin_object/artifact_set_bonus.rb +13 -0
- data/lib/genshin_object.rb +2 -0
- data/lib/teyvatdb/version.rb +1 -1
- metadata +5 -3
- data/lib/genshin_data/artifact_sets/artifact_data.rb +0 -950
@@ -0,0 +1,1093 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# rubocop:disable Layout/LineLength
|
4
|
+
|
5
|
+
module GenshinData
|
6
|
+
module ArtifactSets
|
7
|
+
module ArtifactSetData
|
8
|
+
ARCHAIC_PETRA = GenshinObject::ArtifactSet.new(
|
9
|
+
kamera_key: "ArchaicPetra",
|
10
|
+
name: "Archaic Petra",
|
11
|
+
bonuses: [
|
12
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Geo DMG Bonus +15%"]),
|
13
|
+
GenshinObject::ArtifactSetBonus.new(
|
14
|
+
pieces_count: 4,
|
15
|
+
bonus: [
|
16
|
+
"Upon obtaining an Elemental Shard created through a Crystallize Reaction, all party members gain 35% DMG Bonus for that particular element for 10s.",
|
17
|
+
"Only one form of Elemental DMG Bonus can be gained in this manner at any one time."
|
18
|
+
]
|
19
|
+
)
|
20
|
+
],
|
21
|
+
max_rarity: 5,
|
22
|
+
slots: {
|
23
|
+
flower: true,
|
24
|
+
plume: true,
|
25
|
+
sands: true,
|
26
|
+
goblet: true,
|
27
|
+
circlet: true
|
28
|
+
}
|
29
|
+
).freeze
|
30
|
+
|
31
|
+
BLIZZARD_STRAYER = GenshinObject::ArtifactSet.new(
|
32
|
+
kamera_key: "BlizzardStrayer",
|
33
|
+
name: "Blizzard Strayer",
|
34
|
+
bonuses: [
|
35
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Cryo DMG Bonus +15%"]),
|
36
|
+
GenshinObject::ArtifactSetBonus.new(
|
37
|
+
pieces_count: 4,
|
38
|
+
bonus: [
|
39
|
+
"When a character attacks an opponent affected by Cryo, their CRIT Rate is increased by 20%.",
|
40
|
+
"If the opponent is Frozen, CRIT Rate is increased by an additional 20%."
|
41
|
+
]
|
42
|
+
)
|
43
|
+
],
|
44
|
+
max_rarity: 5,
|
45
|
+
slots: {
|
46
|
+
flower: true,
|
47
|
+
plume: true,
|
48
|
+
sands: true,
|
49
|
+
goblet: true,
|
50
|
+
circlet: true
|
51
|
+
}
|
52
|
+
).freeze
|
53
|
+
|
54
|
+
BLOODSTAINED_CHIVALRY = GenshinObject::ArtifactSet.new(
|
55
|
+
kamera_key: "BloodstainedChivalry",
|
56
|
+
name: "Bloodstained Chivalry",
|
57
|
+
bonuses: [
|
58
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Physical DMG Bonus +25%"]),
|
59
|
+
GenshinObject::ArtifactSetBonus.new(
|
60
|
+
pieces_count: 4,
|
61
|
+
bonus: [
|
62
|
+
"After defeating an opponent, increases Charged Attack DMG by 50%, and reduces its Stamina cost to 0 for 10s.",
|
63
|
+
"Also triggers with wild animals such as boars, squirrels and frogs."
|
64
|
+
]
|
65
|
+
)
|
66
|
+
],
|
67
|
+
max_rarity: 5,
|
68
|
+
slots: {
|
69
|
+
flower: true,
|
70
|
+
plume: true,
|
71
|
+
sands: true,
|
72
|
+
goblet: true,
|
73
|
+
circlet: true
|
74
|
+
}
|
75
|
+
).freeze
|
76
|
+
|
77
|
+
CRIMSON_WITCH_OF_FLAMES = GenshinObject::ArtifactSet.new(
|
78
|
+
kamera_key: "CrimsonWitchOfFlames",
|
79
|
+
name: "Crimson Witch of Flames",
|
80
|
+
bonuses: [
|
81
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Pyro DMG Bonus +15%"]),
|
82
|
+
GenshinObject::ArtifactSetBonus.new(
|
83
|
+
pieces_count: 4,
|
84
|
+
bonus: [
|
85
|
+
"Increases Overloaded and Burning, and Burgeon DMG by 40%.",
|
86
|
+
"Increases Vaporize and Melt DMG by 15%.",
|
87
|
+
"Using Elemental Skill increases the 2-Piece Set Bonus by 50% of its starting value for 10s. Max 3 stacks.",
|
88
|
+
]
|
89
|
+
)
|
90
|
+
],
|
91
|
+
max_rarity: 5,
|
92
|
+
slots: {
|
93
|
+
flower: true,
|
94
|
+
plume: true,
|
95
|
+
sands: true,
|
96
|
+
goblet: true,
|
97
|
+
circlet: true
|
98
|
+
}
|
99
|
+
).freeze
|
100
|
+
|
101
|
+
DEEPWOOD_MEMORIES = GenshinObject::ArtifactSet.new(
|
102
|
+
kamera_key: "DeepwoodMemories",
|
103
|
+
name: "Deepwood Memories",
|
104
|
+
bonuses: [
|
105
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Dendro DMG Bonus +15%"]),
|
106
|
+
GenshinObject::ArtifactSetBonus.new(
|
107
|
+
pieces_count: 4,
|
108
|
+
bonus: [
|
109
|
+
"After Elemental Skills or Bursts hit opponents, the targets' Dendro RES will be decreased by 30% for 8s.",
|
110
|
+
"This effect can be triggered even if the equipping character is not on the field."
|
111
|
+
]
|
112
|
+
)
|
113
|
+
],
|
114
|
+
max_rarity: 5,
|
115
|
+
slots: {
|
116
|
+
flower: true,
|
117
|
+
plume: true,
|
118
|
+
sands: true,
|
119
|
+
goblet: true,
|
120
|
+
circlet: true
|
121
|
+
}
|
122
|
+
).freeze
|
123
|
+
|
124
|
+
DESERT_PAVILION_CHRONICLE = GenshinObject::ArtifactSet.new(
|
125
|
+
kamera_key: "DesertPavilionChronicle",
|
126
|
+
name: "Desert Pavilion Chronicle",
|
127
|
+
bonuses: [
|
128
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Anemo DMG Bonus +15%."]),
|
129
|
+
GenshinObject::ArtifactSetBonus.new(
|
130
|
+
pieces_count: 4,
|
131
|
+
bonus: [
|
132
|
+
"When Charged Attacks hit opponents, the equipping character's Normal Attack SPD will increase by 10% while Normal, Charged, and Plunging Attack DMG will increase by 40% for 15s."
|
133
|
+
]
|
134
|
+
)
|
135
|
+
],
|
136
|
+
max_rarity: 5,
|
137
|
+
slots: {
|
138
|
+
flower: true,
|
139
|
+
plume: true,
|
140
|
+
sands: true,
|
141
|
+
goblet: true,
|
142
|
+
circlet: true
|
143
|
+
}
|
144
|
+
).freeze
|
145
|
+
|
146
|
+
ECHOES_OF_AN_OFFERING = GenshinObject::ArtifactSet.new(
|
147
|
+
kamera_key: "EchoesOfAnOffering",
|
148
|
+
name: "Echoes of an Offering",
|
149
|
+
bonuses: [
|
150
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%."]),
|
151
|
+
GenshinObject::ArtifactSetBonus.new(
|
152
|
+
pieces_count: 4,
|
153
|
+
bonus: [
|
154
|
+
"When Normal Attacks hit opponents, there is a 36% chance that it will trigger Valley Rite, which will increase Normal Attack DMG by 70% of ATK.",
|
155
|
+
"This effect will be dispelled 0.05s after a Normal Attack deals DMG.",
|
156
|
+
"If a Normal Attack fails to trigger Valley Rite, the odds of it triggering the next time will increase by 20%. This trigger can occur once every 0.2s."
|
157
|
+
]
|
158
|
+
)
|
159
|
+
],
|
160
|
+
max_rarity: 5,
|
161
|
+
slots: {
|
162
|
+
flower: true,
|
163
|
+
plume: true,
|
164
|
+
sands: true,
|
165
|
+
goblet: true,
|
166
|
+
circlet: true
|
167
|
+
}
|
168
|
+
).freeze
|
169
|
+
|
170
|
+
EMBLEM_OF_SEVERED_FATE = GenshinObject::ArtifactSet.new(
|
171
|
+
kamera_key: "EmblemOfSeveredFate",
|
172
|
+
name: "Emblem of Severed Fate",
|
173
|
+
bonuses: [
|
174
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Energy Recharge +20%"]),
|
175
|
+
GenshinObject::ArtifactSetBonus.new(
|
176
|
+
pieces_count: 4,
|
177
|
+
bonus: [
|
178
|
+
"Increases Elemental Burst DMG by 25% of Energy Recharge.",
|
179
|
+
"A maximum of 75% bonus DMG can be obtained in this way."
|
180
|
+
]
|
181
|
+
)
|
182
|
+
],
|
183
|
+
max_rarity: 5,
|
184
|
+
slots: {
|
185
|
+
flower: true,
|
186
|
+
plume: true,
|
187
|
+
sands: true,
|
188
|
+
goblet: true,
|
189
|
+
circlet: true
|
190
|
+
}
|
191
|
+
).freeze
|
192
|
+
|
193
|
+
FLOWER_OF_PARADISE_LOST = GenshinObject::ArtifactSet.new(
|
194
|
+
kamera_key: "FlowerOfParadiseLost",
|
195
|
+
name: "Flower of Paradise Lost",
|
196
|
+
bonuses: [
|
197
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
|
198
|
+
GenshinObject::ArtifactSetBonus.new(
|
199
|
+
pieces_count: 4,
|
200
|
+
bonus: [
|
201
|
+
"The equipping character's Bloom, Hyperbloom, and Burgeon reaction DMG are increased by 40%.",
|
202
|
+
"Additionally, after the equipping character triggers Bloom, Hyperbloom, or Burgeon, they will gain another 25% bonus to the effect mentioned prior.",
|
203
|
+
"Each stack of this lasts 10s. Max 4 stacks simultaneously.",
|
204
|
+
"This effect can only be triggered once per second.",
|
205
|
+
"The character who equips this can still trigger its effects when not on the field."
|
206
|
+
]
|
207
|
+
)
|
208
|
+
],
|
209
|
+
max_rarity: 5,
|
210
|
+
slots: {
|
211
|
+
flower: true,
|
212
|
+
plume: true,
|
213
|
+
sands: true,
|
214
|
+
goblet: true,
|
215
|
+
circlet: true
|
216
|
+
}
|
217
|
+
).freeze
|
218
|
+
|
219
|
+
GILDED_DREAMS = GenshinObject::ArtifactSet.new(
|
220
|
+
kamera_key: "GildedDreams",
|
221
|
+
name: "Gilded Dreams",
|
222
|
+
bonuses: [
|
223
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
|
224
|
+
GenshinObject::ArtifactSetBonus.new(
|
225
|
+
pieces_count: 4,
|
226
|
+
bonus: [
|
227
|
+
"Within 8s of triggering an Elemental Reaction, the character equipping this will obtain buffs based on the Elemental Type of the other party members.",
|
228
|
+
"ATK is increased by 14% for each party member whose Elemental Type is the same as the equipping character, and Elemental Mastery is increased by 50 for every party member with a different Elemental Type.",
|
229
|
+
"Each of the aforementioned buffs will count up to 3 characters.",
|
230
|
+
"This effect can be triggered once every 8s.",
|
231
|
+
"The character who equips this can still trigger its effects when not on the field."
|
232
|
+
]
|
233
|
+
)
|
234
|
+
],
|
235
|
+
max_rarity: 5,
|
236
|
+
slots: {
|
237
|
+
flower: true,
|
238
|
+
plume: true,
|
239
|
+
sands: true,
|
240
|
+
goblet: true,
|
241
|
+
circlet: true
|
242
|
+
}
|
243
|
+
).freeze
|
244
|
+
|
245
|
+
GLADIATORS_FINALE = GenshinObject::ArtifactSet.new(
|
246
|
+
kamera_key: "GladiatorsFinale",
|
247
|
+
name: "Gladiator's Finale",
|
248
|
+
bonuses: [
|
249
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%."]),
|
250
|
+
GenshinObject::ArtifactSetBonus.new(
|
251
|
+
pieces_count: 4,
|
252
|
+
bonus: [
|
253
|
+
"If the wielder of this artifact set uses a Sword, Claymore or Polearm, increases their Normal Attack DMG by 35%."
|
254
|
+
]
|
255
|
+
)
|
256
|
+
],
|
257
|
+
max_rarity: 5,
|
258
|
+
slots: {
|
259
|
+
flower: true,
|
260
|
+
plume: true,
|
261
|
+
sands: true,
|
262
|
+
goblet: true,
|
263
|
+
circlet: true
|
264
|
+
}
|
265
|
+
).freeze
|
266
|
+
|
267
|
+
GOLDEN_TROUPE = GenshinObject::ArtifactSet.new(
|
268
|
+
kamera_key: "GoldenTroupe",
|
269
|
+
name: "Golden Troupe",
|
270
|
+
bonuses: [
|
271
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Skill DMG by 20%."]),
|
272
|
+
GenshinObject::ArtifactSetBonus.new(
|
273
|
+
pieces_count: 4,
|
274
|
+
bonus: [
|
275
|
+
"Increases Elemental Skill DMG by 25%.",
|
276
|
+
"Additionally, when not on the field, Elemental Skill DMG will be further increased by 25%.",
|
277
|
+
"This effect will be cleared 2s after taking the field."
|
278
|
+
]
|
279
|
+
)
|
280
|
+
],
|
281
|
+
max_rarity: 5,
|
282
|
+
slots: {
|
283
|
+
flower: true,
|
284
|
+
plume: true,
|
285
|
+
sands: true,
|
286
|
+
goblet: true,
|
287
|
+
circlet: true
|
288
|
+
}
|
289
|
+
).freeze
|
290
|
+
|
291
|
+
HEART_OF_DEPTH = GenshinObject::ArtifactSet.new(
|
292
|
+
kamera_key: "HeartOfDepth",
|
293
|
+
name: "Heart of Depth",
|
294
|
+
bonuses: [
|
295
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Hydro DMG Bonus +15%"]),
|
296
|
+
GenshinObject::ArtifactSetBonus.new(
|
297
|
+
pieces_count: 4,
|
298
|
+
bonus: [
|
299
|
+
"After using an Elemental Skill, increases Normal Attack and Charged Attack DMG by 30% for 15s."
|
300
|
+
]
|
301
|
+
)
|
302
|
+
],
|
303
|
+
max_rarity: 5,
|
304
|
+
slots: {
|
305
|
+
flower: true,
|
306
|
+
plume: true,
|
307
|
+
sands: true,
|
308
|
+
goblet: true,
|
309
|
+
circlet: true
|
310
|
+
}
|
311
|
+
).freeze
|
312
|
+
|
313
|
+
HUSK_OF_OPULENT_DREAMS = GenshinObject::ArtifactSet.new(
|
314
|
+
kamera_key: "HuskOfOpulentDreams",
|
315
|
+
name: "Husk of Opulent Dreams",
|
316
|
+
bonuses: [
|
317
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["DEF +30%"]),
|
318
|
+
GenshinObject::ArtifactSetBonus.new(
|
319
|
+
pieces_count: 4,
|
320
|
+
bonus: [
|
321
|
+
"A character equipped with this Artifact set will obtain the Curiosity effect in the following conditions:",
|
322
|
+
"When on the field, the character gains 1 stack after hitting an opponent with a Geo attack, triggering a maximum of once every 0.3s.",
|
323
|
+
"When off the field, the character gains 1 stack every 3s.",
|
324
|
+
"Curiosity can stack up to 4 times, each providing 6% DEF and a 6% Geo DMG Bonus.",
|
325
|
+
"When 6 seconds pass without gaining a Curiosity stack, 1 stack is lost."
|
326
|
+
]
|
327
|
+
)
|
328
|
+
],
|
329
|
+
max_rarity: 5,
|
330
|
+
slots: {
|
331
|
+
flower: true,
|
332
|
+
plume: true,
|
333
|
+
sands: true,
|
334
|
+
goblet: true,
|
335
|
+
circlet: true
|
336
|
+
}
|
337
|
+
).freeze
|
338
|
+
|
339
|
+
LAVAWALKER = GenshinObject::ArtifactSet.new(
|
340
|
+
kamera_key: "Lavawalker",
|
341
|
+
name: "Lavawalker",
|
342
|
+
bonuses: [
|
343
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Pyro RES increased by 40%."]),
|
344
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 4, bonus: ["Increases DMG against opponents affected by Pyro by 35%."])
|
345
|
+
],
|
346
|
+
max_rarity: 5,
|
347
|
+
slots: {
|
348
|
+
flower: true,
|
349
|
+
plume: true,
|
350
|
+
sands: true,
|
351
|
+
goblet: true,
|
352
|
+
circlet: true
|
353
|
+
}
|
354
|
+
).freeze
|
355
|
+
|
356
|
+
MAIDEN_BELOVED = GenshinObject::ArtifactSet.new(
|
357
|
+
kamera_key: "MaidenBeloved",
|
358
|
+
name: "Maiden Beloved",
|
359
|
+
bonuses: [
|
360
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Character Healing Effectiveness +15%"]),
|
361
|
+
GenshinObject::ArtifactSetBonus.new(
|
362
|
+
pieces_count: 4,
|
363
|
+
bonus: [
|
364
|
+
"Using an Elemental Skill or Burst increases healing received by all party members by 20% for 10s."
|
365
|
+
]
|
366
|
+
)
|
367
|
+
],
|
368
|
+
max_rarity: 5,
|
369
|
+
slots: {
|
370
|
+
flower: true,
|
371
|
+
plume: true,
|
372
|
+
sands: true,
|
373
|
+
goblet: true,
|
374
|
+
circlet: true
|
375
|
+
}
|
376
|
+
).freeze
|
377
|
+
|
378
|
+
MARECHAUSSEE_HUNTER = GenshinObject::ArtifactSet.new(
|
379
|
+
kamera_key: "MarechausseeHunter",
|
380
|
+
name: "Marechaussee Hunter",
|
381
|
+
bonuses: [
|
382
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Normal and Charged Attack DMG +15%."]),
|
383
|
+
GenshinObject::ArtifactSetBonus.new(
|
384
|
+
pieces_count: 4,
|
385
|
+
bonus: ["When current HP increases or decreases, CRIT Rate will be increased by 12% for 5s. Max 3 stacks."]
|
386
|
+
)
|
387
|
+
],
|
388
|
+
max_rarity: 5,
|
389
|
+
slots: {
|
390
|
+
flower: true,
|
391
|
+
plume: true,
|
392
|
+
sands: true,
|
393
|
+
goblet: true,
|
394
|
+
circlet: true
|
395
|
+
}
|
396
|
+
).freeze
|
397
|
+
|
398
|
+
NIGHTTIME_WHISPERS_IN_THE_ECHOING_WOODS = GenshinObject::ArtifactSet.new(
|
399
|
+
kamera_key: "NighttimeWhispersInTheEchoingWoods",
|
400
|
+
name: "Nighttime Whispers in the Echoing Woods",
|
401
|
+
bonuses: [
|
402
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%"]),
|
403
|
+
GenshinObject::ArtifactSetBonus.new(
|
404
|
+
pieces_count: 4,
|
405
|
+
bonus: [
|
406
|
+
"After using an Elemental Skill, gain a 20% Geo DMG Bonus for 10s.",
|
407
|
+
"While under a shield granted by the Crystallize reaction, the above effect will be increased by 150%, and this additional increase disappears 1s after that shield is lost."
|
408
|
+
]
|
409
|
+
)
|
410
|
+
],
|
411
|
+
max_rarity: 5,
|
412
|
+
slots: {
|
413
|
+
flower: true,
|
414
|
+
plume: true,
|
415
|
+
sands: true,
|
416
|
+
goblet: true,
|
417
|
+
circlet: true
|
418
|
+
}
|
419
|
+
).freeze
|
420
|
+
|
421
|
+
NOBLESSE_OBLIGE = GenshinObject::ArtifactSet.new(
|
422
|
+
kamera_key: "NoblesseOblige",
|
423
|
+
name: "Noblesse Oblige",
|
424
|
+
bonuses: [
|
425
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Elemental Burst DMG +20%"]),
|
426
|
+
GenshinObject::ArtifactSetBonus.new(
|
427
|
+
pieces_count: 4,
|
428
|
+
bonus: ["Using an Elemental Burst increases all party members ATK by 20% for 12s. This effect cannot stack."]
|
429
|
+
)
|
430
|
+
],
|
431
|
+
max_rarity: 5,
|
432
|
+
slots: {
|
433
|
+
flower: true,
|
434
|
+
plume: true,
|
435
|
+
sands: true,
|
436
|
+
goblet: true,
|
437
|
+
circlet: true
|
438
|
+
}
|
439
|
+
).freeze
|
440
|
+
|
441
|
+
NYMPHS_DREAM = GenshinObject::ArtifactSet.new(
|
442
|
+
kamera_key: "NymphsDream",
|
443
|
+
name: "Nymph's Dream",
|
444
|
+
bonuses: [
|
445
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Hydro DMG Bonus +15%"]),
|
446
|
+
GenshinObject::ArtifactSetBonus.new(
|
447
|
+
pieces_count: 4,
|
448
|
+
bonus: [
|
449
|
+
"After Normal, Charged, and Plunging Attacks, Elemental Skills, and Elemental Bursts hit opponents, 1 stack of Mirrored Nymph will triggered, lasting 8s.",
|
450
|
+
"When under the effect of 1, 2, or 3 or more Mirrored Nymph stacks, ATK will be increased by 7%/16%/25%, and Hydro DMG will be increased by 4%/9%/15%.",
|
451
|
+
"Mirrored Nymph created by Normal, Charged, and Plunging Attacks, Elemental Skills, and Elemental Bursts exist independently."
|
452
|
+
]
|
453
|
+
)
|
454
|
+
],
|
455
|
+
max_rarity: 5,
|
456
|
+
slots: {
|
457
|
+
flower: true,
|
458
|
+
plume: true,
|
459
|
+
sands: true,
|
460
|
+
goblet: true,
|
461
|
+
circlet: true
|
462
|
+
}
|
463
|
+
).freeze
|
464
|
+
|
465
|
+
OCEAN_HUED_CLAM = GenshinObject::ArtifactSet.new(
|
466
|
+
kamera_key: "OceanHuedClam",
|
467
|
+
name: "Ocean-Hued Clam",
|
468
|
+
bonuses: [
|
469
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Healing Bonus +15%."]),
|
470
|
+
GenshinObject::ArtifactSetBonus.new(
|
471
|
+
pieces_count: 4,
|
472
|
+
bonus: [
|
473
|
+
"When the character equipping this artifact set heals a character in the party, a Sea-Dyed Foam will appear for 3 seconds, accumulating the amount of HP recovered from healing (including overflow healing).",
|
474
|
+
"At the end of the duration, the Sea-Dyed Foam will explode, dealing DMG to nearby opponents based on 90% of the accumulated healing.",
|
475
|
+
"(This DMG is calculated similarly to Reactions such as Electro-Charged, and Superconduct, but it is not affected by Elemental Mastery, Character Levels, or Reaction DMG Bonuses).",
|
476
|
+
"Only one Sea-Dyed Foam can be produced every 3.5 seconds.",
|
477
|
+
"Each Sea-Dyed Foam can accumulate up to 30,000 HP (including overflow healing).",
|
478
|
+
"There can be no more than one Sea-Dyed Foam active at any given time.",
|
479
|
+
"This effect can still be triggered even when the character who is using this artifact set is not on the field."
|
480
|
+
]
|
481
|
+
)
|
482
|
+
],
|
483
|
+
max_rarity: 5,
|
484
|
+
slots: {
|
485
|
+
flower: true,
|
486
|
+
plume: true,
|
487
|
+
sands: true,
|
488
|
+
goblet: true,
|
489
|
+
circlet: true
|
490
|
+
}
|
491
|
+
).freeze
|
492
|
+
|
493
|
+
PALE_FLAME = GenshinObject::ArtifactSet.new(
|
494
|
+
kamera_key: "PaleFlame",
|
495
|
+
name: "Pale Flame",
|
496
|
+
bonuses: [
|
497
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Physical DMG Bonus +25%"]),
|
498
|
+
GenshinObject::ArtifactSetBonus.new(
|
499
|
+
pieces_count: 4,
|
500
|
+
bonus: [
|
501
|
+
"When an Elemental Skill hits an opponent, ATK is increased by 9% for 7s.",
|
502
|
+
"This effect stacks up to 2 times and can be triggered once every 0.3s.",
|
503
|
+
"Once 2 stacks are reached, the 2-set effect is increased by 100%."
|
504
|
+
]
|
505
|
+
)
|
506
|
+
],
|
507
|
+
max_rarity: 5,
|
508
|
+
slots: {
|
509
|
+
flower: true,
|
510
|
+
plume: true,
|
511
|
+
sands: true,
|
512
|
+
goblet: true,
|
513
|
+
circlet: true
|
514
|
+
}
|
515
|
+
).freeze
|
516
|
+
|
517
|
+
RETRACING_BOLIDE = GenshinObject::ArtifactSet.new(
|
518
|
+
kamera_key: "RetracingBolide",
|
519
|
+
name: "Retracing Bolide",
|
520
|
+
bonuses: [
|
521
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Shield Strength by 35%."]),
|
522
|
+
GenshinObject::ArtifactSetBonus.new(
|
523
|
+
pieces_count: 4,
|
524
|
+
bonus: ["While protected by a shield, gain an additional 40% Normal and Charged Attack DMG."]
|
525
|
+
)
|
526
|
+
],
|
527
|
+
max_rarity: 5,
|
528
|
+
slots: {
|
529
|
+
flower: true,
|
530
|
+
plume: true,
|
531
|
+
sands: true,
|
532
|
+
goblet: true,
|
533
|
+
circlet: true
|
534
|
+
}
|
535
|
+
).freeze
|
536
|
+
|
537
|
+
SHIMENAWAS_REMINISCENCE = GenshinObject::ArtifactSet.new(
|
538
|
+
kamera_key: "ShimenawasReminiscence",
|
539
|
+
name: "Shimenawa's Reminiscence",
|
540
|
+
bonuses: [
|
541
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%"]),
|
542
|
+
GenshinObject::ArtifactSetBonus.new(
|
543
|
+
pieces_count: 4,
|
544
|
+
bonus: [
|
545
|
+
"When casting an Elemental Skill, if the character has 15 or more Energy, they lose 15 Energy and Normal/Charged/Plunging Attack DMG is increased by 50% for 10s.",
|
546
|
+
"This effect will not trigger again during that duration."
|
547
|
+
]
|
548
|
+
)
|
549
|
+
],
|
550
|
+
max_rarity: 5,
|
551
|
+
slots: {
|
552
|
+
flower: true,
|
553
|
+
plume: true,
|
554
|
+
sands: true,
|
555
|
+
goblet: true,
|
556
|
+
circlet: true
|
557
|
+
}
|
558
|
+
).freeze
|
559
|
+
|
560
|
+
SONG_OF_DAYS_PAST = GenshinObject::ArtifactSet.new(
|
561
|
+
kamera_key: "SongOfDaysPast",
|
562
|
+
name: "Song of Days Past",
|
563
|
+
bonuses: [
|
564
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Healing Bonus +15%"]),
|
565
|
+
GenshinObject::ArtifactSetBonus.new(
|
566
|
+
pieces_count: 4,
|
567
|
+
bonus: [
|
568
|
+
"When the equipping character heals a party member, the Yearning effect will be created for 6s, which records the total amount of healing provided (including overflow healing).",
|
569
|
+
"When the duration expires, the Yearning effect will be transformed into the 'Waves of Days Past' effect:",
|
570
|
+
"When your active party member hits an opponent with a Normal Attack, Charged Attack, Plunging Attack, Elemental Skill, or Elemental Burst, the DMG dealt will be increased by 8% of the total healing amount recorded by the Yearning effect.",
|
571
|
+
"The 'Waves of Days Past' effect is removed after it has taken effect 5 times or after 10s.",
|
572
|
+
"A single instance of the Yearning effect can record up to 15,000 healing, and only a single instance can exist at once, but it can record the healing from multiple equipping characters.",
|
573
|
+
"Equipping characters on standby can still trigger this effect."
|
574
|
+
]
|
575
|
+
)
|
576
|
+
],
|
577
|
+
max_rarity: 5,
|
578
|
+
slots: {
|
579
|
+
flower: true,
|
580
|
+
plume: true,
|
581
|
+
sands: true,
|
582
|
+
goblet: true,
|
583
|
+
circlet: true
|
584
|
+
}
|
585
|
+
).freeze
|
586
|
+
|
587
|
+
TENACITY_OF_THE_MILLELITH = GenshinObject::ArtifactSet.new(
|
588
|
+
kamera_key: "TenacityOfTheMillelith",
|
589
|
+
name: "Tenacity of the Millelith",
|
590
|
+
bonuses: [
|
591
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["HP +20%"]),
|
592
|
+
GenshinObject::ArtifactSetBonus.new(
|
593
|
+
pieces_count: 4,
|
594
|
+
bonus: [
|
595
|
+
"When an Elemental Skill hits an opponent, the ATK of all nearby party members is increased by 20% and their Shield Strength is increased by 30% for 3s.",
|
596
|
+
"This effect can be triggered once every 0.5s.",
|
597
|
+
"This effect can still be triggered even when the character who is using this artifact set is not on the field."
|
598
|
+
]
|
599
|
+
)
|
600
|
+
],
|
601
|
+
max_rarity: 5,
|
602
|
+
slots: {
|
603
|
+
flower: true,
|
604
|
+
plume: true,
|
605
|
+
sands: true,
|
606
|
+
goblet: true,
|
607
|
+
circlet: true
|
608
|
+
}
|
609
|
+
).freeze
|
610
|
+
|
611
|
+
THUNDERING_FURY = GenshinObject::ArtifactSet.new(
|
612
|
+
kamera_key: "ThunderingFury",
|
613
|
+
name: "Thundering Fury",
|
614
|
+
bonuses: [
|
615
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Electro DMG Bonus +15%"]),
|
616
|
+
GenshinObject::ArtifactSetBonus.new(
|
617
|
+
pieces_count: 4,
|
618
|
+
bonus: [
|
619
|
+
"Increases DMG caused by Overloaded, Electro-Charged, Superconduct, and Hyperbloom by 40%, and the DMG Bonus conferred by Aggravate is increased by 20%.",
|
620
|
+
"When Quicken or the aforementioned Elemental Reactions are triggered, Elemental Skill CD is decreased by 1s.",
|
621
|
+
"Can only occur once every 0.8s."
|
622
|
+
]
|
623
|
+
)
|
624
|
+
],
|
625
|
+
max_rarity: 5,
|
626
|
+
slots: {
|
627
|
+
flower: true,
|
628
|
+
plume: true,
|
629
|
+
sands: true,
|
630
|
+
goblet: true,
|
631
|
+
circlet: true
|
632
|
+
}
|
633
|
+
).freeze
|
634
|
+
|
635
|
+
THUNDERSOOTHER = GenshinObject::ArtifactSet.new(
|
636
|
+
kamera_key: "Thundersoother",
|
637
|
+
name: "Thundersoother",
|
638
|
+
bonuses: [
|
639
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Electro RES increased by 40%."]),
|
640
|
+
GenshinObject::ArtifactSetBonus.new(
|
641
|
+
pieces_count: 4,
|
642
|
+
bonus: ["Increases DMG against opponents affected by Electro by 35%."]
|
643
|
+
)
|
644
|
+
],
|
645
|
+
max_rarity: 5,
|
646
|
+
slots: {
|
647
|
+
flower: true,
|
648
|
+
plume: true,
|
649
|
+
sands: true,
|
650
|
+
goblet: true,
|
651
|
+
circlet: true
|
652
|
+
}
|
653
|
+
).freeze
|
654
|
+
|
655
|
+
VERMILLION_HEREAFTER = GenshinObject::ArtifactSet.new(
|
656
|
+
kamera_key: "VermillionHereafter",
|
657
|
+
name: "Vermillion Hereafter",
|
658
|
+
bonuses: [
|
659
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%."]),
|
660
|
+
GenshinObject::ArtifactSetBonus.new(
|
661
|
+
pieces_count: 4,
|
662
|
+
bonus: [
|
663
|
+
"After using an Elemental Burst. this character will gain the Nascent Light effect, increasing their ATK by 8% for 16s.",
|
664
|
+
"When the character's HP decreases, their ATK will further increase by 10%.",
|
665
|
+
"This increase can occur this way maximum of 4 times.",
|
666
|
+
"This effect can be triggered once every 0.8s.",
|
667
|
+
"Nascent Light will be dispelled when the character leaves the field.",
|
668
|
+
"If an Elemental Burst is used again during the duration of Nascent Light, the original Nascent Light will be dispelled."
|
669
|
+
]
|
670
|
+
)
|
671
|
+
],
|
672
|
+
max_rarity: 5,
|
673
|
+
slots: {
|
674
|
+
flower: true,
|
675
|
+
plume: true,
|
676
|
+
sands: true,
|
677
|
+
goblet: true,
|
678
|
+
circlet: true
|
679
|
+
}
|
680
|
+
).freeze
|
681
|
+
|
682
|
+
VIRIDESCENT_VENERER = GenshinObject::ArtifactSet.new(
|
683
|
+
kamera_key: "ViridescentVenerer",
|
684
|
+
name: "Viridescent Venerer",
|
685
|
+
bonuses: [
|
686
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Anemo DMG Bonus +15%"]),
|
687
|
+
GenshinObject::ArtifactSetBonus.new(
|
688
|
+
pieces_count: 4,
|
689
|
+
bonus: [
|
690
|
+
"Increases Swirl DMG by 60%. Decreases opponent's Elemental RES to the element infused in the Swirl by 40% for 10s."
|
691
|
+
]
|
692
|
+
)
|
693
|
+
],
|
694
|
+
max_rarity: 5,
|
695
|
+
slots: {
|
696
|
+
flower: true,
|
697
|
+
plume: true,
|
698
|
+
sands: true,
|
699
|
+
goblet: true,
|
700
|
+
circlet: true
|
701
|
+
}
|
702
|
+
).freeze
|
703
|
+
|
704
|
+
VOURUKASHAS_GLOW = GenshinObject::ArtifactSet.new(
|
705
|
+
kamera_key: "VourukashasGlow",
|
706
|
+
name: "Vourukasha's Glow",
|
707
|
+
bonuses: [
|
708
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["HP +20%"]),
|
709
|
+
GenshinObject::ArtifactSetBonus.new(
|
710
|
+
pieces_count: 4,
|
711
|
+
bonus: [
|
712
|
+
"Elemental Skill and Elemental Burst DMG will be increased by 10%.",
|
713
|
+
"After the equipping character takes DMG, the aforementioned DMG Bonus is increased by 80% for 5s.",
|
714
|
+
"This effect increase can have 5 stacks.",
|
715
|
+
"The duration of each stack is counted independently.",
|
716
|
+
"These effects can be triggered even when the equipping character is not on the field."
|
717
|
+
]
|
718
|
+
)
|
719
|
+
],
|
720
|
+
max_rarity: 5,
|
721
|
+
slots: {
|
722
|
+
flower: true,
|
723
|
+
plume: true,
|
724
|
+
sands: true,
|
725
|
+
goblet: true,
|
726
|
+
circlet: true
|
727
|
+
}
|
728
|
+
).freeze
|
729
|
+
|
730
|
+
WANDERERS_TROUPE = GenshinObject::ArtifactSet.new(
|
731
|
+
kamera_key: "WanderersTroupe",
|
732
|
+
name: "Wanderer's Troupe",
|
733
|
+
bonuses: [
|
734
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
|
735
|
+
GenshinObject::ArtifactSetBonus.new(
|
736
|
+
pieces_count: 4,
|
737
|
+
bonus: ["Increases Charged Attack DMG by 35% if the character uses a Catalyst or Bow."]
|
738
|
+
)
|
739
|
+
],
|
740
|
+
max_rarity: 5,
|
741
|
+
slots: {
|
742
|
+
flower: true,
|
743
|
+
plume: true,
|
744
|
+
sands: true,
|
745
|
+
goblet: true,
|
746
|
+
circlet: true
|
747
|
+
}
|
748
|
+
).freeze
|
749
|
+
|
750
|
+
BERSERKER = GenshinObject::ArtifactSet.new(
|
751
|
+
kamera_key: "Berserker",
|
752
|
+
name: "Berserker",
|
753
|
+
bonuses: [
|
754
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["CRIT Rate +12%"]),
|
755
|
+
GenshinObject::ArtifactSetBonus.new(
|
756
|
+
pieces_count: 4,
|
757
|
+
bonus: ["When HP is below 70%, CRIT Rate increases by an additional 24%."]
|
758
|
+
)
|
759
|
+
],
|
760
|
+
max_rarity: 4,
|
761
|
+
slots: {
|
762
|
+
flower: true,
|
763
|
+
plume: true,
|
764
|
+
sands: true,
|
765
|
+
goblet: true,
|
766
|
+
circlet: true
|
767
|
+
}
|
768
|
+
).freeze
|
769
|
+
|
770
|
+
BRAVE_HEART = GenshinObject::ArtifactSet.new(
|
771
|
+
kamera_key: "BraveHeart",
|
772
|
+
name: "Brave Heart",
|
773
|
+
bonuses: [
|
774
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%."]),
|
775
|
+
GenshinObject::ArtifactSetBonus.new(
|
776
|
+
pieces_count: 4,
|
777
|
+
bonus: ["Increases DMG by 30% against opponents with more than 50% HP."]
|
778
|
+
)
|
779
|
+
],
|
780
|
+
max_rarity: 4,
|
781
|
+
slots: {
|
782
|
+
flower: true,
|
783
|
+
plume: true,
|
784
|
+
sands: true,
|
785
|
+
goblet: true,
|
786
|
+
circlet: true
|
787
|
+
}
|
788
|
+
).freeze
|
789
|
+
|
790
|
+
DEFENDERS_WILL = GenshinObject::ArtifactSet.new(
|
791
|
+
kamera_key: "DefendersWill",
|
792
|
+
name: "Defender's Will",
|
793
|
+
bonuses: [
|
794
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["DEF +30%"]),
|
795
|
+
GenshinObject::ArtifactSetBonus.new(
|
796
|
+
pieces_count: 4,
|
797
|
+
bonus: [
|
798
|
+
"For each different element present in your own party, the wearer's Elemental RES to that corresponding element is increased by 30%."
|
799
|
+
]
|
800
|
+
)
|
801
|
+
],
|
802
|
+
max_rarity: 4,
|
803
|
+
slots: {
|
804
|
+
flower: true,
|
805
|
+
plume: true,
|
806
|
+
sands: true,
|
807
|
+
goblet: true,
|
808
|
+
circlet: true
|
809
|
+
}
|
810
|
+
).freeze
|
811
|
+
|
812
|
+
INSTRUCTOR = GenshinObject::ArtifactSet.new(
|
813
|
+
kamera_key: "Instructor",
|
814
|
+
name: "Instructor",
|
815
|
+
bonuses: [
|
816
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Mastery by 80."]),
|
817
|
+
GenshinObject::ArtifactSetBonus.new(
|
818
|
+
pieces_count: 4,
|
819
|
+
bonus: [
|
820
|
+
"Upon triggering an Elemental Reaction, increases all party members's Elemental Mastery by 120 for 8s."
|
821
|
+
]
|
822
|
+
)
|
823
|
+
],
|
824
|
+
max_rarity: 4,
|
825
|
+
slots: {
|
826
|
+
flower: true,
|
827
|
+
plume: true,
|
828
|
+
sands: true,
|
829
|
+
goblet: true,
|
830
|
+
circlet: true
|
831
|
+
}
|
832
|
+
).freeze
|
833
|
+
|
834
|
+
GAMBLER = GenshinObject::ArtifactSet.new(
|
835
|
+
kamera_key: "Gambler",
|
836
|
+
name: "Gambler",
|
837
|
+
bonuses: [
|
838
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases Elemental Skill DMG by 20%."]),
|
839
|
+
GenshinObject::ArtifactSetBonus.new(
|
840
|
+
pieces_count: 4,
|
841
|
+
bonus: [
|
842
|
+
"Defeating an opponent has 100% chance to remove Elemental Skill CD.",
|
843
|
+
"Can only occur once every 15s."
|
844
|
+
]
|
845
|
+
)
|
846
|
+
],
|
847
|
+
max_rarity: 4,
|
848
|
+
slots: {
|
849
|
+
flower: true,
|
850
|
+
plume: true,
|
851
|
+
sands: true,
|
852
|
+
goblet: true,
|
853
|
+
circlet: true
|
854
|
+
}
|
855
|
+
).freeze
|
856
|
+
|
857
|
+
MARTIAL_ARTIST = GenshinObject::ArtifactSet.new(
|
858
|
+
kamera_key: "MartialArtist",
|
859
|
+
name: "Martial Artist",
|
860
|
+
bonuses: [
|
861
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Normal and Charged Attack DMG +15%"]),
|
862
|
+
GenshinObject::ArtifactSetBonus.new(
|
863
|
+
pieces_count: 4,
|
864
|
+
bonus: ["After using Elemental Skill, increases Normal Attack and Charged Attack DMG by 25% for 8s."]
|
865
|
+
)
|
866
|
+
],
|
867
|
+
max_rarity: 4,
|
868
|
+
slots: {
|
869
|
+
flower: true,
|
870
|
+
plume: true,
|
871
|
+
sands: true,
|
872
|
+
goblet: true,
|
873
|
+
circlet: true
|
874
|
+
}
|
875
|
+
).freeze
|
876
|
+
|
877
|
+
PRAYERS_FOR_DESTINY = GenshinObject::ArtifactSet.new(
|
878
|
+
kamera_key: "PrayersForDestiny",
|
879
|
+
name: "Prayers for Destiny",
|
880
|
+
bonuses: [
|
881
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 1, bonus: ["Affected by Hydro for 40% less time."])
|
882
|
+
],
|
883
|
+
max_rarity: 4,
|
884
|
+
slots: {
|
885
|
+
flower: true,
|
886
|
+
plume: true,
|
887
|
+
sands: true,
|
888
|
+
goblet: true,
|
889
|
+
circlet: true
|
890
|
+
}
|
891
|
+
).freeze
|
892
|
+
|
893
|
+
PRAYERS_FOR_ILLUMINATION = GenshinObject::ArtifactSet.new(
|
894
|
+
kamera_key: "PrayersForIllumination",
|
895
|
+
name: "Prayers for Illumination",
|
896
|
+
bonuses: [
|
897
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 1, bonus: ["Affected by Pyro for 40% less time."])
|
898
|
+
],
|
899
|
+
max_rarity: 4,
|
900
|
+
slots: {
|
901
|
+
flower: true,
|
902
|
+
plume: true,
|
903
|
+
sands: true,
|
904
|
+
goblet: true,
|
905
|
+
circlet: true
|
906
|
+
}
|
907
|
+
).freeze
|
908
|
+
|
909
|
+
PRAYERS_TO_SPRINGTIME = GenshinObject::ArtifactSet.new(
|
910
|
+
kamera_key: "PrayersToSpringtime",
|
911
|
+
name: "Prayers to Springtime",
|
912
|
+
bonuses: [
|
913
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 1, bonus: ["Affected by Cryo for 40% less time."])
|
914
|
+
],
|
915
|
+
max_rarity: 4,
|
916
|
+
slots: {
|
917
|
+
flower: true,
|
918
|
+
plume: true,
|
919
|
+
sands: true,
|
920
|
+
goblet: true,
|
921
|
+
circlet: true
|
922
|
+
}
|
923
|
+
).freeze
|
924
|
+
|
925
|
+
PRAYERS_FOR_WISDOM = GenshinObject::ArtifactSet.new(
|
926
|
+
kamera_key: "PrayersForWisdom",
|
927
|
+
name: "Prayers for Wisdom",
|
928
|
+
bonuses: [
|
929
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 1, bonus: ["Affected by Electro for 40% less time."])
|
930
|
+
],
|
931
|
+
max_rarity: 4,
|
932
|
+
slots: {
|
933
|
+
flower: true,
|
934
|
+
plume: true,
|
935
|
+
sands: true,
|
936
|
+
goblet: true,
|
937
|
+
circlet: true
|
938
|
+
}
|
939
|
+
).freeze
|
940
|
+
|
941
|
+
RESOLUTION_OF_SOJOURNER = GenshinObject::ArtifactSet.new(
|
942
|
+
kamera_key: "ResolutionOfSojourner",
|
943
|
+
name: "Resolution of Sojourner",
|
944
|
+
bonuses: [
|
945
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["ATK +18%"]),
|
946
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 4, bonus: ["Increases Charged Attack CRIT Rate by 30%."])
|
947
|
+
],
|
948
|
+
max_rarity: 4,
|
949
|
+
slots: {
|
950
|
+
flower: true,
|
951
|
+
plume: true,
|
952
|
+
sands: true,
|
953
|
+
goblet: true,
|
954
|
+
circlet: true
|
955
|
+
}
|
956
|
+
).freeze
|
957
|
+
|
958
|
+
SCHOLAR = GenshinObject::ArtifactSet.new(
|
959
|
+
kamera_key: "Scholar",
|
960
|
+
name: "Scholar",
|
961
|
+
bonuses: [
|
962
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Energy Recharge +20%"]),
|
963
|
+
GenshinObject::ArtifactSetBonus.new(
|
964
|
+
pieces_count: 4,
|
965
|
+
bonus: [
|
966
|
+
"Gaining Elemental Particles or Orbs gives 3 Energy to all party members who have a bow or a catalyst equipped. Can only occur once every 3s."
|
967
|
+
]
|
968
|
+
)
|
969
|
+
],
|
970
|
+
max_rarity: 4,
|
971
|
+
slots: {
|
972
|
+
flower: true,
|
973
|
+
plume: true,
|
974
|
+
sands: true,
|
975
|
+
goblet: true,
|
976
|
+
circlet: true
|
977
|
+
}
|
978
|
+
).freeze
|
979
|
+
|
980
|
+
THE_EXILE = GenshinObject::ArtifactSet.new(
|
981
|
+
kamera_key: "TheExile",
|
982
|
+
name: "The Exile",
|
983
|
+
bonuses: [
|
984
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Energy Recharge +20%"]),
|
985
|
+
GenshinObject::ArtifactSetBonus.new(
|
986
|
+
pieces_count: 4,
|
987
|
+
bonus: [
|
988
|
+
"Using an Elemental Burst regenerates 2 Energy for all party members (excluding the wearer) every 2s for 6s. This effect cannot stack."
|
989
|
+
]
|
990
|
+
)
|
991
|
+
],
|
992
|
+
max_rarity: 4,
|
993
|
+
slots: {
|
994
|
+
flower: true,
|
995
|
+
plume: true,
|
996
|
+
sands: true,
|
997
|
+
goblet: true,
|
998
|
+
circlet: true
|
999
|
+
}
|
1000
|
+
).freeze
|
1001
|
+
|
1002
|
+
TINY_MIRACLE = GenshinObject::ArtifactSet.new(
|
1003
|
+
kamera_key: "TinyMiracle",
|
1004
|
+
name: "Tiny Miracle",
|
1005
|
+
bonuses: [
|
1006
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["All Elemental RES increased by 20%."]),
|
1007
|
+
GenshinObject::ArtifactSetBonus.new(
|
1008
|
+
pieces_count: 4,
|
1009
|
+
bonus: [
|
1010
|
+
"Incoming Elemental DMG increases corresponding Elemental RES by 30% for 10s.",
|
1011
|
+
"Can only occur once every 10s."
|
1012
|
+
]
|
1013
|
+
)
|
1014
|
+
],
|
1015
|
+
max_rarity: 4,
|
1016
|
+
slots: {
|
1017
|
+
flower: true,
|
1018
|
+
plume: true,
|
1019
|
+
sands: true,
|
1020
|
+
goblet: true,
|
1021
|
+
circlet: true
|
1022
|
+
}
|
1023
|
+
).freeze
|
1024
|
+
|
1025
|
+
ADVENTURER = GenshinObject::ArtifactSet.new(
|
1026
|
+
kamera_key: "Adventurer",
|
1027
|
+
name: "Adventurer",
|
1028
|
+
bonuses: [
|
1029
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Max HP increased by 1,000."]),
|
1030
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 4, bonus: ["Opening a chest regenerates 30% Max HP over 5s."])
|
1031
|
+
],
|
1032
|
+
max_rarity: 3,
|
1033
|
+
slots: {
|
1034
|
+
flower: true,
|
1035
|
+
plume: true,
|
1036
|
+
sands: true,
|
1037
|
+
goblet: true,
|
1038
|
+
circlet: true
|
1039
|
+
}
|
1040
|
+
).freeze
|
1041
|
+
|
1042
|
+
LUCKY_DOG = GenshinObject::ArtifactSet.new(
|
1043
|
+
kamera_key: "LuckyDog",
|
1044
|
+
name: "Lucky Dog",
|
1045
|
+
bonuses: [
|
1046
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["DEF increased by 100."]),
|
1047
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 4, bonus: ["Picking up Mora restores 300 HP."])
|
1048
|
+
],
|
1049
|
+
max_rarity: 3,
|
1050
|
+
slots: {
|
1051
|
+
flower: true,
|
1052
|
+
plume: true,
|
1053
|
+
sands: true,
|
1054
|
+
goblet: true,
|
1055
|
+
circlet: true
|
1056
|
+
}
|
1057
|
+
).freeze
|
1058
|
+
|
1059
|
+
TRAVELING_DOCTOR = GenshinObject::ArtifactSet.new(
|
1060
|
+
kamera_key: "TravelingDoctor",
|
1061
|
+
name: "Traveling Doctor",
|
1062
|
+
bonuses: [
|
1063
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 2, bonus: ["Increases incoming healing by 20%."]),
|
1064
|
+
GenshinObject::ArtifactSetBonus.new(pieces_count: 4, bonus: ["Using Elemental Burst restores 20% HP."])
|
1065
|
+
],
|
1066
|
+
max_rarity: 3,
|
1067
|
+
slots: {
|
1068
|
+
flower: true,
|
1069
|
+
plume: true,
|
1070
|
+
sands: true,
|
1071
|
+
goblet: true,
|
1072
|
+
circlet: true
|
1073
|
+
}
|
1074
|
+
).freeze
|
1075
|
+
|
1076
|
+
INITIATE = GenshinObject::ArtifactSet.new(
|
1077
|
+
kamera_key: "Initiate",
|
1078
|
+
name: "Initiate",
|
1079
|
+
bonuses: [],
|
1080
|
+
max_rarity: 1,
|
1081
|
+
slots: {
|
1082
|
+
flower: true,
|
1083
|
+
plume: true,
|
1084
|
+
sands: false,
|
1085
|
+
goblet: false,
|
1086
|
+
circlet: false
|
1087
|
+
}
|
1088
|
+
).freeze
|
1089
|
+
end
|
1090
|
+
end
|
1091
|
+
end
|
1092
|
+
|
1093
|
+
# rubocop:enable Layout/LineLength
|