Hide incoplete stigmata set data

This commit is contained in:
Sakura Knoll
2022-01-02 18:10:57 +09:00 Unverified
parent 3469c71363
commit 7d0574822e
9 changed files with 18 additions and 9 deletions
@@ -10,5 +10,6 @@
"name": "",
"description": ""
},
"rarity": 5
"rarity": 5,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "EM Induction 3 Pieces",
"description": "Host has 10.0% bonus Attack Speed and takes 15.0% less Elemental DMG."
},
"rarity": 5
"rarity": 5,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "Exquisite 3 Pieces",
"description": "When the Mist effect ends, heal every ally for 30 HP/s for 6s."
},
"rarity": 5
"rarity": 5,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "XXXL Firecrackers 3 Pieces",
"description": "Gain 10% Crit Rate and 60% Crit DMG to self."
},
"rarity": 5
"rarity": 5,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "ADV Speed Boost 3 Pieces",
"description": "Gain 10% Move Speed."
},
"rarity": 4
"rarity": 4,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "Ode of Rebellion 3 Pieces",
"description": "The host gains 10.0% ATK Speed and 10.0% Max HP."
},
"rarity": 5
"rarity": 5,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "Ode of Rebellion 3 Pieces",
"description": "The host gains 10.0% ATK Speed and 10.0% Max HP."
},
"rarity": 5
"rarity": 5,
"hidden": true
}
@@ -10,5 +10,6 @@
"name": "Concentrated Water Balloon 3 Pieces",
"description": "Exploding water balloon deals 200% more Ice DMG. Shortens CD by 2s."
},
"rarity": 5
"rarity": 5,
"hidden": true
}
+2 -1
View File
@@ -24,6 +24,7 @@ export interface StigmataSet {
altName: string
twoSetSkill: StigmataSkill
threeSetSkill: StigmataSkill
version?: string
rarity: 3 | 4 | 5
version?: string
hidden?: boolean
}