From 39643e1b7886faf57d2a197b6f358c12adae8ddd Mon Sep 17 00:00:00 2001 From: CorinthusYu <736674365@qq.com> Date: Tue, 3 Oct 2023 17:33:35 +0800 Subject: [PATCH] opt: better wrio config & tf --- .../character/characters/cryo/wriothesley.rs | 56 +- mona_core/src/character/skill_config.rs | 1 + .../target_function_config.rs | 2 +- .../cryo/wriothesley_default.rs | 69 +- src/assets/_gen_artifact.js | 782 ++--- src/assets/_gen_buff.js | 578 ++-- src/assets/_gen_character.js | 2852 +++++++++-------- src/assets/_gen_pf.js | 40 +- src/assets/_gen_tf.js | 536 ++-- src/assets/_gen_weapon.js | 914 +++--- src/i18n/generated/en.json | 40 +- src/i18n/generated/zh-cn.json | 4 +- 12 files changed, 2982 insertions(+), 2892 deletions(-) diff --git a/mona_core/src/character/characters/cryo/wriothesley.rs b/mona_core/src/character/characters/cryo/wriothesley.rs index c25b0d0b..59bd57a7 100644 --- a/mona_core/src/character/characters/cryo/wriothesley.rs +++ b/mona_core/src/character/characters/cryo/wriothesley.rs @@ -162,17 +162,36 @@ impl CharacterTrait for Wriothesley { } ]); + #[cfg(not(target_family = "wasm"))] + const CONFIG_SKILL: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "under_chilling_penalty", + title: locale!( + zh_cn: "「寒烈的惩裁」状态", + en: "Enable 「Chilling Penalty」", + ), + config: ItemConfigType::Bool { default: true }, + }, + ]); + fn damage_internal(context: &DamageContext<'_, D::AttributeType>, s: usize, config: &CharacterSkillConfig, fumo: Option) -> D::Result { let s: WriothesleyDamageEnum = num::FromPrimitive::from_usize(s).unwrap(); let (s1, s2, s3) = context.character_common_data.get_3_skill(); use WriothesleyDamageEnum::*; + + let under_chilling_penalty = match *config { + CharacterSkillConfig::Wriothesley { under_chilling_penalty } + => under_chilling_penalty, + _ => true, + }; + let mut ratio = match s { - Normal1 => WRIOTHESLEY_SKILL.normal_dmg1[s1], - Normal2 => WRIOTHESLEY_SKILL.normal_dmg2[s1], - Normal3 => WRIOTHESLEY_SKILL.normal_dmg3[s1], - Normal4Div2 => WRIOTHESLEY_SKILL.normal_dmg4[s1], - Normal5 => WRIOTHESLEY_SKILL.normal_dmg5[s1], + Normal1 => WRIOTHESLEY_SKILL.normal_dmg1[s1] * (if under_chilling_penalty {WRIOTHESLEY_SKILL.e_bonus[s2]} else { 1.0 }), + Normal2 => WRIOTHESLEY_SKILL.normal_dmg2[s1] * (if under_chilling_penalty {WRIOTHESLEY_SKILL.e_bonus[s2]} else { 1.0 }), + Normal3 => WRIOTHESLEY_SKILL.normal_dmg3[s1] * (if under_chilling_penalty {WRIOTHESLEY_SKILL.e_bonus[s2]} else { 1.0 }), + Normal4Div2 => WRIOTHESLEY_SKILL.normal_dmg4[s1] * (if under_chilling_penalty {WRIOTHESLEY_SKILL.e_bonus[s2]} else { 1.0 }), + Normal5 => WRIOTHESLEY_SKILL.normal_dmg5[s1] * (if under_chilling_penalty {WRIOTHESLEY_SKILL.e_bonus[s2]} else { 1.0 }), Charged => WRIOTHESLEY_SKILL.charged_dmg[s1], ChargedTalent1 => WRIOTHESLEY_SKILL.charged_dmg[s1], Plunging1 => WRIOTHESLEY_SKILL.plunging_dmg1[s1], @@ -184,14 +203,27 @@ impl CharacterTrait for Wriothesley { let mut builder = D::new(); + let skill_type = s.get_skill_type(); + if skill_type == SkillType::ElementalBurst { + if context.character_common_data.constellation >= 2 { + let talent2_stack = context.attribute.get_value(AttributeName::USER1); + let value = talent2_stack * 0.4; + ratio = ratio * (1.0 + value); + } + } + builder.add_atk_ratio("技能倍率", ratio); + if s == ChargedTalent1 { if context.character_common_data.has_talent1 { - let mul = if context.character_common_data.constellation >= 1 { + let mul_punch_bonus = if context.character_common_data.constellation >= 1 { 2.0 } else { 0.5 }; - ratio = (1.0 + mul) * ratio; + let ratio_punch_bonus = mul_punch_bonus * ratio; + if mul_punch_bonus >= 0.0 { + builder.add_atk_ratio("「惩戒·凌跃拳」倍率加成",ratio_punch_bonus); + } if context.character_common_data.constellation >= 6 { builder.add_extra_critical_damage("6命「予无罪者以念抚」", 0.8); @@ -200,16 +232,6 @@ impl CharacterTrait for Wriothesley { } } - let skill_type = s.get_skill_type(); - if skill_type == SkillType::ElementalBurst { - if context.character_common_data.constellation >= 2 { - let talent2_stack = context.attribute.get_value(AttributeName::USER1); - let value = talent2_stack * 0.4; - ratio = ratio * (1.0 + value); - } - } - - builder.add_atk_ratio("技能倍率", ratio); builder.damage( &context.attribute, diff --git a/mona_core/src/character/skill_config.rs b/mona_core/src/character/skill_config.rs index 1fbb2a02..e725df79 100644 --- a/mona_core/src/character/skill_config.rs +++ b/mona_core/src/character/skill_config.rs @@ -42,5 +42,6 @@ pub enum CharacterSkillConfig { Freminet { talent2_rate: f64 }, Lyney { prop_stack: f64, under_pyro: bool, pyro_count: usize, }, Neuvillette { talent1_stack: usize }, + Wriothesley { under_chilling_penalty: bool }, NoConfig, } diff --git a/mona_core/src/target_functions/target_function_config.rs b/mona_core/src/target_functions/target_function_config.rs index ace973b7..c87efc64 100644 --- a/mona_core/src/target_functions/target_function_config.rs +++ b/mona_core/src/target_functions/target_function_config.rs @@ -61,6 +61,6 @@ pub enum TargetFunctionConfig { AlhaithamDefault { charged_ratio: f64, e_ratio: f64, q_ratio: f64, spread_ratio: f64 }, DehyaDefault { melt_rate: f64, vaporize_rate: f64, e_count: usize }, MikaDefault { recharge_demand: f64, crit_demand: f64 }, - + WriothesleyDefault { punch_ratio: f64, melt_rate:f64 }, NoConfig, } diff --git a/mona_core/src/target_functions/target_functions/cryo/wriothesley_default.rs b/mona_core/src/target_functions/target_functions/cryo/wriothesley_default.rs index 21d1b054..588744ec 100644 --- a/mona_core/src/target_functions/target_functions/cryo/wriothesley_default.rs +++ b/mona_core/src/target_functions/target_functions/cryo/wriothesley_default.rs @@ -16,8 +16,36 @@ use crate::target_functions::{TargetFunction, TargetFunctionConfig, TargetFuncti use crate::team::TeamQuantization; use crate::weapon::Weapon; use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; -pub struct WriothesleyDefaultTargetFunction; +pub struct WriothesleyDefaultTargetFunction { + pub punch_ratio: f64, + pub melt_rate: f64, +} + +impl WriothesleyDefaultTargetFunction { + pub fn new(config: &TargetFunctionConfig) -> Self { + let ( + punch_ratio, + melt_rate, + ) = match *config { + TargetFunctionConfig::WriothesleyDefault { + punch_ratio, + melt_rate, + } => + ( + punch_ratio, + melt_rate, + ), + _ => (0.0, 0.0) + }; + + Self { + punch_ratio, + melt_rate, + } + } +} impl TargetFunction for WriothesleyDefaultTargetFunction { fn get_target_function_opt_config(&self) -> TargetFunctionOptConfig { @@ -36,14 +64,23 @@ impl TargetFunction for WriothesleyDefaultTargetFunction { }; type S = ::DamageEnumType; + let dmg_normal = Wriothesley::damage::( + &context, + S::Normal1, + &CharacterSkillConfig::Wriothesley {under_chilling_penalty: true}, + None + ); let dmg_charged2 = Wriothesley::damage::( &context, S::ChargedTalent1, - &CharacterSkillConfig::NoConfig, + &CharacterSkillConfig::Wriothesley {under_chilling_penalty: true}, None ); - dmg_charged2.normal.expectation + let dmg_normal_mean = self.melt_rate * dmg_normal.melt.unwrap().expectation + (1.0-self.melt_rate) * dmg_normal.normal.expectation; + let dmg_charged2_mean = self.melt_rate * dmg_charged2.melt.unwrap().expectation + (1.0-self.melt_rate)*dmg_charged2.normal.expectation; + + dmg_normal_mean * 6.3886 + self.punch_ratio*dmg_charged2_mean } } @@ -56,15 +93,35 @@ impl TargetFunctionMetaTrait for WriothesleyDefaultTargetFunction { en: "Wriothesley-Emissary of Solitary Iniquity" ), description: locale!( - zh_cn: "最大化惩戒·凌跃拳伤害", - en: "Maximize Rebuke: Vaulting Fist DMG" + zh_cn: "最大化强化普+重混合伤害", + en: "Maximize normal+charged combo DMG" ), tags: "", four: TargetFunctionFor::SomeWho(CharacterName::Wriothesley), image: TargetFunctionMetaImage::Avatar }; + #[cfg(not(target_family = "wasm"))] + const CONFIG: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "punch_ratio", + title: locale!( + zh_cn: "一套普攻打几个重击", + en: "Punch per Normal Attack Combo" + ), + config: ItemConfigType::Float { default: 0.5, min: 0.0, max: 5.0 } + }, + ItemConfig { + name: "melt_rate", + title: locale!( + zh_cn: "融化占比", + en: "Melt Ratio", + ), + config: ItemConfig::RATE01_TYPE + }, + ]); + fn create(character: &CharacterCommonData, weapon: &WeaponCommonData, config: &TargetFunctionConfig) -> Box { - Box::new(WriothesleyDefaultTargetFunction) + Box::new(WriothesleyDefaultTargetFunction::new(config)) } } diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index f4df4513..3af99dba 100644 --- a/src/assets/_gen_artifact.js +++ b/src/assets/_gen_artifact.js @@ -7,46 +7,46 @@ export default { "adventurer": { eng: "adventurer", name2: "Adventurer", - nameLocale: 258, + nameLocale: 260, minStar: 1, maxStar: 3, - effect2: 1264, + effect2: 1266, - effect4: 620, + effect4: 622, flower: { - text: 259, + text: 261, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 261, + text: 263, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 262, + text: 264, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 263, + text: 265, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 260, + text: 262, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,54 +58,54 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 646, + nameLocale: 648, minStar: 4, maxStar: 5, - effect2: 1474, + effect2: 1476, - effect4: 1489, + effect4: 1491, flower: { - text: 1331, + text: 1333, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 595, + text: 597, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 821, + text: 823, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 596, + text: 598, url: getIcon("UI_RelicIcon_15014_1") }, head: { - text: 90, + text: 92, url: getIcon("UI_RelicIcon_15014_3") }, config4: [ - {"default":"Electro","name":"element","title":189,"type":"element4"}, + {"default":"Electro","name":"element","title":191,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 653, + nameLocale: 655, minStar: 3, maxStar: 4, - effect2: 994, + effect2: 996, - effect4: 1268, + effect4: 1270, flower: { - text: 656, + text: 658, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 655, + text: 657, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 654, + text: 656, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 657, + text: 659, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 658, + text: 660, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 277, + nameLocale: 279, minStar: 4, maxStar: 5, - effect2: 1473, + effect2: 1475, - effect4: 736, + effect4: 738, flower: { - text: 350, + text: 352, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 718, + text: 720, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 276, + text: 278, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1655, + text: 1657, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1325, + text: 1327, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1376,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1378,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 1045, + nameLocale: 1047, minStar: 4, maxStar: 5, - effect2: 1651, + effect2: 1654, - effect4: 295, + effect4: 297, flower: { - text: 1043, + text: 1045, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 1046, + text: 1048, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1844, + text: 1846, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 1047, + text: 1049, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 1044, + text: 1046, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 315, + nameLocale: 317, minStar: 3, maxStar: 4, - effect2: 726, + effect2: 728, - effect4: 580, + effect4: 582, flower: { - text: 317, + text: 319, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 320, + text: 322, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 318, + text: 320, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 319, + text: 321, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 316, + text: 318, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1180, + nameLocale: 1182, minStar: 4, maxStar: 5, - effect2: 1476, + effect2: 1478, - effect4: 1600, + effect4: 1602, flower: { - text: 1852, + text: 1854, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1850, + text: 1852, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1853, + text: 1855, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1851, + text: 1853, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1189, + text: 1191, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":750,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":752,"type":"float"}, ], }, @@ -378,52 +378,52 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1129, + nameLocale: 1131, minStar: 4, maxStar: 5, - effect2: 1477, + effect2: 1479, - effect4: 211, + effect4: 214, flower: { - text: 1640, + text: 1642, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1423, + text: 1425, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1581, + text: 1583, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1641, + text: 1643, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 1020, + text: 1022, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 543, + nameLocale: 545, minStar: 3, maxStar: 4, - effect2: 1739, + effect2: 1741, - effect4: 1731, + effect4: 1733, flower: { - text: 545, + text: 547, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 547, + text: 549, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 546, + text: 548, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 544, + text: 546, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 548, + text: 550, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 1029, + nameLocale: 1031, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 728, - effect4: 932, + effect4: 934, flower: { - text: 1847, + text: 1849, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 451, + text: 453, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1334, + text: 1336, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1128, + text: 1130, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1120, + text: 1122, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":600,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":602,"type":"float"}, ], }, @@ -535,46 +535,46 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1401, + nameLocale: 1403, minStar: 4, maxStar: 5, - effect2: 192, + effect2: 194, - effect4: 457, + effect4: 459, flower: { - text: 813, + text: 815, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 302, + text: 304, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1766, + text: 1768, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1404, + text: 1406, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 339, + text: 341, url: getIcon("UI_RelicIcon_15020_3") }, @@ -586,52 +586,52 @@ export default { "FlowerOfParadiseLost": { eng: "FlowerOfParadiseLost", name2: "FlowerOfParadiseLost", - nameLocale: 106, + nameLocale: 108, minStar: 4, maxStar: 5, - effect2: 231, + effect2: 233, - effect4: 1529, + effect4: 1531, flower: { - text: 1019, + text: 1021, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1579, + text: 1581, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 290, + text: 292, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 549, + text: 551, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1386, + text: 1388, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":750,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":752,"type":"float"}, ], }, @@ -639,46 +639,46 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1585, + nameLocale: 1587, minStar: 3, maxStar: 4, - effect2: 218, + effect2: 220, - effect4: 300, + effect4: 302, flower: { - text: 1589, + text: 1591, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1587, + text: 1589, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1586, + text: 1588, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1590, + text: 1592, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1588, + text: 1590, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,52 +690,52 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1089, + nameLocale: 1091, minStar: 4, maxStar: 5, - effect2: 1479, + effect2: 1481, - effect4: 1686, + effect4: 1688, flower: { - text: 165, + text: 167, url: getIcon("UI_RelicIcon_15027_4") }, feather: { - text: 1871, + text: 1873, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 520, + text: 522, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1642, + text: 1644, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1110, + text: 1112, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -743,56 +743,56 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1833, + nameLocale: 1835, minStar: 4, maxStar: 5, - effect2: 233, + effect2: 234, - effect4: 1557, + effect4: 1559, flower: { - text: 1054, + text: 1056, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1525, + text: 1527, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1087, + text: 1089, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 529, + text: 531, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1090, + text: 1092, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":382,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":384,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"diff_count","title":91,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"diff_count","title":93,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1544, + nameLocale: 1546, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 728, - effect4: 1530, + effect4: 1532, flower: { - text: 1543, + text: 1545, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1542, + text: 1544, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1541, + text: 1543, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1545, + text: 1547, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1540, + text: 1542, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "GoldenTroupe": { eng: "GoldenTroupe", name2: "GoldenTroupe", - nameLocale: 1868, + nameLocale: 1870, minStar: 4, maxStar: 5, - effect2: 218, + effect2: 220, - effect4: 219, + effect4: 221, flower: { - text: 1867, + text: 1869, url: getIcon("UI_RelicIcon_15032_4") }, feather: { - text: 1872, + text: 1874, url: getIcon("UI_RelicIcon_15032_2") }, sand: { - text: 1870, + text: 1872, url: getIcon("UI_RelicIcon_15032_5") }, cup: { - text: 1866, + text: 1868, url: getIcon("UI_RelicIcon_15032_1") }, head: { - text: 1869, + text: 1871, url: getIcon("UI_RelicIcon_15032_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1519,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1522,"type":"float"}, ], }, @@ -904,52 +904,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1085, + nameLocale: 1087, minStar: 4, maxStar: 5, - effect2: 1475, + effect2: 1477, - effect4: 772, + effect4: 774, flower: { - text: 1834, + text: 1836, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1644, + text: 1646, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 450, + text: 452, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1086, + text: 1088, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1661, + text: 1663, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -957,52 +957,52 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 341, + nameLocale: 343, minStar: 4, maxStar: 5, - effect2: 1739, + effect2: 1741, - effect4: 1526, + effect4: 1528, flower: { - text: 1463, + text: 1465, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 340, + text: 342, url: getIcon("UI_RelicIcon_15021_2") }, sand: { - text: 166, + text: 168, url: getIcon("UI_RelicIcon_15021_5") }, cup: { - text: 1056, + text: 1058, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 630, + text: 632, url: getIcon("UI_RelicIcon_15021_3") }, config4: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":46,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":47,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 754, + nameLocale: 756, minStar: 3, maxStar: 4, - effect2: 232, + effect2: 235, - effect4: 1558, + effect4: 1560, flower: { - text: 759, + text: 761, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 758, + text: 760, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 757, + text: 759, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 760, + text: 762, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 756, + text: 758, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -1063,52 +1063,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1138, + nameLocale: 1140, minStar: 4, maxStar: 5, - effect2: 1160, + effect2: 1162, - effect4: 575, + effect4: 577, flower: { - text: 1133, + text: 1135, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1136, + text: 1138, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1135, + text: 1137, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1137, + text: 1139, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1134, + text: 1136, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":753,"type":"float"}, ], }, @@ -1116,46 +1116,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 607, + nameLocale: 609, minStar: 1, maxStar: 3, - effect2: 1738, + effect2: 1740, - effect4: 700, + effect4: 702, flower: { - text: 610, + text: 612, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 612, + text: 614, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 609, + text: 611, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 608, + text: 610, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 611, + text: 613, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1167,46 +1167,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1522, + nameLocale: 1524, minStar: 4, maxStar: 5, - effect2: 1551, + effect2: 1553, - effect4: 779, + effect4: 781, flower: { - text: 1628, + text: 1630, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 586, + text: 588, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 585, + text: 587, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 584, + text: 586, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 583, + text: 585, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1218,52 +1218,52 @@ export default { "MarechausseeHunter": { eng: "MarechausseeHunter", name2: "MarechausseeHunter", - nameLocale: 1648, + nameLocale: 1650, minStar: 4, maxStar: 5, - effect2: 925, + effect2: 927, - effect4: 628, + effect4: 630, flower: { - text: 1215, + text: 1217, url: getIcon("UI_RelicIcon_15031_4") }, feather: { - text: 1030, + text: 1032, url: getIcon("UI_RelicIcon_15031_2") }, sand: { - text: 1523, + text: 1525, url: getIcon("UI_RelicIcon_15031_5") }, cup: { - text: 1656, + text: 1658, url: getIcon("UI_RelicIcon_15031_1") }, head: { - text: 1426, + text: 1428, url: getIcon("UI_RelicIcon_15031_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":598,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":601,"type":"float"}, ], }, @@ -1271,52 +1271,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1060, + nameLocale: 1062, minStar: 3, maxStar: 4, - effect2: 926, + effect2: 928, - effect4: 773, + effect4: 775, flower: { - text: 1063, + text: 1065, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1064, + text: 1066, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1062, + text: 1064, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1065, + text: 1067, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1061, + text: 1063, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -1324,52 +1324,52 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 814, + nameLocale: 816, minStar: 4, maxStar: 5, - effect2: 224, + effect2: 226, - effect4: 789, + effect4: 791, flower: { - text: 554, + text: 556, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 553, + text: 555, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 556, + text: 558, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 559, + text: 561, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 562, + text: 564, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -1377,58 +1377,58 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1073, + nameLocale: 1075, minStar: 4, maxStar: 5, - effect2: 1475, + effect2: 1477, - effect4: 916, + effect4: 918, flower: { - text: 797, + text: 799, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 448, + text: 450, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1074, + text: 1076, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 321, + text: 323, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 645, + text: 647, url: getIcon("UI_RelicIcon_15029_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":51,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":53,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":123,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":125,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":74,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":76,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":617,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":618,"type":"float"}, ], }, @@ -1436,46 +1436,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1125, + nameLocale: 1127, minStar: 4, maxStar: 5, - effect2: 1094, + effect2: 1096, - effect4: 1527, + effect4: 1529, flower: { - text: 1124, + text: 1126, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1132, + text: 1134, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1366, + text: 1368, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1312, + text: 1314, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1127, + text: 1129, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1487,54 +1487,54 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1449, + nameLocale: 1451, minStar: 4, maxStar: 5, - effect2: 1652, + effect2: 1653, - effect4: 207, + effect4: 209, flower: { - text: 804, + text: 806, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1580, + text: 1582, url: getIcon("UI_RelicIcon_15018_2") }, sand: { - text: 188, + text: 190, url: getIcon("UI_RelicIcon_15018_5") }, cup: { - text: 1598, + text: 1600, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 422, + text: 424, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":743,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":745,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1151,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1153,"type":"float"}, ], }, @@ -1542,11 +1542,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1355, + nameLocale: 1357, minStar: 3, maxStar: 4, - effect1: 365, + effect1: 367, @@ -1559,7 +1559,7 @@ export default { head: { - text: 1356, + text: 1358, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1571,11 +1571,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1357, + nameLocale: 1359, minStar: 3, maxStar: 4, - effect1: 366, + effect1: 368, @@ -1588,7 +1588,7 @@ export default { head: { - text: 1358, + text: 1360, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1600,11 +1600,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1363, + nameLocale: 1365, minStar: 3, maxStar: 4, - effect1: 367, + effect1: 369, @@ -1617,7 +1617,7 @@ export default { head: { - text: 1364, + text: 1366, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1629,11 +1629,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1353, + nameLocale: 1355, minStar: 3, maxStar: 4, - effect1: 364, + effect1: 366, @@ -1646,7 +1646,7 @@ export default { head: { - text: 1354, + text: 1356, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1658,46 +1658,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1514, + nameLocale: 1516, minStar: 3, maxStar: 4, - effect2: 726, + effect2: 728, - effect4: 1689, + effect4: 1691, flower: { - text: 741, + text: 743, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 627, + text: 629, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1647, + text: 1649, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 623, + text: 625, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 651, + text: 653, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1709,52 +1709,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1646, + nameLocale: 1648, minStar: 4, maxStar: 5, - effect2: 696, + effect2: 698, - effect4: 467, + effect4: 469, flower: { - text: 472, + text: 474, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 475, + text: 477, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 471, + text: 473, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 474, + text: 476, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 473, + text: 475, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":698,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":699,"type":"float"}, ], }, @@ -1762,46 +1762,46 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 536, + nameLocale: 538, minStar: 3, maxStar: 4, - effect2: 192, + effect2: 194, - effect4: 1486, + effect4: 1488, flower: { - text: 537, + text: 539, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 540, + text: 542, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 539, + text: 541, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 538, + text: 540, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 541, + text: 543, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1813,52 +1813,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1643, + nameLocale: 1645, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 728, - effect4: 780, + effect4: 782, flower: { - text: 1415, + text: 1417, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 640, + text: 642, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 1021, + text: 1023, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1333, + text: 1335, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 806, + text: 808, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -1866,52 +1866,52 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 334, + nameLocale: 336, minStar: 4, maxStar: 5, - effect2: 1270, + effect2: 1272, - effect4: 206, + effect4: 208, flower: { - text: 322, + text: 324, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 825, + text: 827, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1697, + text: 1699, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1311, + text: 1313, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 582, + text: 584, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, ], }, @@ -1919,46 +1919,46 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1103, + nameLocale: 1105, minStar: 3, maxStar: 4, - effect2: 192, + effect2: 194, - effect4: 788, + effect4: 790, flower: { - text: 1106, + text: 1108, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1105, + text: 1107, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1108, + text: 1110, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1104, + text: 1106, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1107, + text: 1109, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1970,46 +1970,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 530, + nameLocale: 532, minStar: 4, maxStar: 5, - effect2: 1478, + effect2: 1480, - effect4: 1599, + effect4: 1601, flower: { - text: 1787, + text: 1789, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1777, + text: 1779, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1786, + text: 1788, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1759, + text: 1761, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 418, + text: 420, url: getIcon("UI_RelicIcon_15005_3") }, @@ -2021,52 +2021,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 601, + nameLocale: 603, minStar: 4, maxStar: 5, - effect2: 1769, + effect2: 1771, - effect4: 578, + effect4: 580, flower: { - text: 605, + text: 607, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 606, + text: 608, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 603, + text: 605, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 604, + text: 606, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 602, + text: 604, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":753,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":755,"type":"float"}, ], }, @@ -2074,46 +2074,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 521, + nameLocale: 523, minStar: 3, maxStar: 4, - effect2: 659, + effect2: 661, - effect4: 358, + effect4: 360, flower: { - text: 525, + text: 527, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 524, + text: 526, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 523, + text: 525, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 522, + text: 524, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 526, + text: 528, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2125,46 +2125,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1145, + nameLocale: 1147, minStar: 1, maxStar: 3, - effect2: 1546, + effect2: 1548, - effect4: 792, + effect4: 794, flower: { - text: 1150, + text: 1152, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1148, + text: 1150, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1146, + text: 1148, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1149, + text: 1151, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1147, + text: 1149, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2176,54 +2176,54 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1625, + nameLocale: 1627, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 728, - effect4: 786, + effect4: 788, flower: { - text: 1282, + text: 1284, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1156, + text: 1158, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1743, + text: 1745, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1398, + text: 1400, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1505, + text: 1507, url: getIcon("UI_RelicIcon_15023_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":227,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":229,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":598,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":601,"type":"float"}, ], }, @@ -2231,46 +2231,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1418, + nameLocale: 1420, minStar: 4, maxStar: 5, - effect2: 1479, + effect2: 1481, - effect4: 670, + effect4: 672, flower: { - text: 1695, + text: 1697, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1216, + text: 1218, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1421, + text: 1423, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1420, + text: 1422, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1422, + text: 1424, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2282,52 +2282,52 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1444, + nameLocale: 1446, minStar: 4, maxStar: 5, - effect2: 1271, + effect2: 1273, - effect4: 201, + effect4: 203, flower: { - text: 1167, + text: 1169, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1245, + text: 1247, url: getIcon("UI_RelicIcon_15030_2") }, sand: { - text: 104, + text: 106, url: getIcon("UI_RelicIcon_15030_5") }, cup: { - text: 808, + text: 810, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1166, + text: 1168, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":599,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":600,"type":"float"}, ], }, @@ -2335,46 +2335,46 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1112, + nameLocale: 1114, minStar: 4, maxStar: 5, - effect2: 232, + effect2: 235, - effect4: 1531, + effect4: 1533, flower: { - text: 105, + text: 107, url: getIcon("UI_RelicIcon_15003_4") }, feather: { - text: 1251, + text: 1253, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1394, + text: 1396, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 384, + text: 386, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 709, + text: 711, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index 7c168b4f..bdfb8d97 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 721, + nameLocale: 723, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1735, + nameLocale: 1737, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1261, + nameLocale: 1263, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 720, + nameLocale: 722, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":763,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1734, + nameLocale: 1736, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":763,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1260, + nameLocale: 1262, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":763,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 991, + nameLocale: 993, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 987, + nameLocale: 989, description: null, @@ -399,14 +399,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "CustomBonus": { name: "CustomBonus", - nameLocale: 172, + nameLocale: 174, description: null, @@ -416,14 +416,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "ElementalMastery": { name: "ElementalMastery", - nameLocale: 229, + nameLocale: 230, description: null, @@ -433,14 +433,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":763,"type":"floatInput"}, ], }, "Recharge": { name: "Recharge", - nameLocale: 191, + nameLocale: 193, description: null, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 283, + nameLocale: 285, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 282, + nameLocale: 284, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1092, + nameLocale: 1094, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":763,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 461, + nameLocale: 462, - description: 1607, + description: 1609, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":763,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1747, + nameLocale: 1749, - description: 1752, + description: 1754, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1748, + nameLocale: 1750, - description: 1750, + description: 1752, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1746, + nameLocale: 1748, - description: 1751, + description: 1753, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 455, + nameLocale: 457, - description: 456, + description: 458, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1457, + nameLocale: 1459, - description: 1459, + description: 1461, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 326, + nameLocale: 328, - description: 328, + description: 330, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1236, + nameLocale: 1238, - description: 1239, + description: 1241, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1241,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1243,"type":"floatInput"}, - {"default":true,"name":"c1","title":826,"type":"bool"}, + {"default":true,"name":"c1","title":828,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":689,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":691,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1235, + nameLocale: 1237, - description: 1240, + description: 1242, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1663, + nameLocale: 1665, - description: 1665, + description: 1667, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1635, + nameLocale: 1637, - description: 1637, + description: 1639, badge: getImage("Diona"), @@ -681,9 +681,9 @@ export default { "EulaE": { name: "EulaE", - nameLocale: 168, + nameLocale: 170, - description: 170, + description: 172, badge: getImage("Eula"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":689,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":691,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1255, + nameLocale: 1257, - description: 1259, + description: 1261, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1256, + nameLocale: 1258, - description: 1258, + description: 1260, badge: getImage("Ganyu"), @@ -728,9 +728,9 @@ export default { "GorouE1": { name: "GorouE1", - nameLocale: 150, + nameLocale: 152, - description: 155, + description: 157, badge: getImage("Gorou"), @@ -738,16 +738,16 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill2","title":154,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":156,"type":"int"}, ], }, "GorouE3": { name: "GorouE3", - nameLocale: 151, + nameLocale: 153, - description: 156, + description: 158, badge: getImage("Gorou"), @@ -760,9 +760,9 @@ export default { "GorouTalent1": { name: "GorouTalent1", - nameLocale: 149, + nameLocale: 151, - description: 158, + description: 160, badge: getImage("Gorou"), @@ -775,9 +775,9 @@ export default { "GorouC6": { name: "GorouC6", - nameLocale: 152, + nameLocale: 154, - description: 157, + description: 159, badge: getImage("Gorou"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1801,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1803,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1434, + nameLocale: 1436, - description: 1436, + description: 1438, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1248, + nameLocale: 1250, - description: 1250, + description: 1252, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 1038, + nameLocale: 1040, - description: 1042, + description: 1044, badge: getImage("Kazuha"), @@ -832,18 +832,18 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":668,"type":"element4"}, + {"default":"Electro","name":"element","title":670,"type":"element4"}, - {"default":800.0,"name":"em","title":71,"type":"floatInput"}, + {"default":800.0,"name":"em","title":73,"type":"floatInput"}, ], }, "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 1037, + nameLocale: 1039, - description: 1041, + description: 1043, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1351, + nameLocale: 1353, - description: 1402, + description: 1404, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 376, + nameLocale: 378, - description: 378, + description: 380, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 375, + nameLocale: 377, - description: 379, + description: 381, badge: getImage("Klee"), @@ -901,9 +901,9 @@ export default { "KujouSaraEOrQ": { name: "KujouSaraEOrQ", - nameLocale: 108, + nameLocale: 110, - description: 111, + description: 113, badge: getImage("Sara"), @@ -911,9 +911,9 @@ export default { genre: "Character", config: [ - {"default":700.0,"name":"base_atk","title":112,"type":"floatInput"}, + {"default":700.0,"name":"base_atk","title":114,"type":"floatInput"}, - {"default":false,"name":"c6","title":829,"type":"bool"}, + {"default":false,"name":"c6","title":831,"type":"bool"}, {"default":10,"max":15,"min":1,"name":"skill2","title":12,"type":"int"}, @@ -922,9 +922,9 @@ export default { "LisaTalent2": { name: "LisaTalent2", - nameLocale: 99, + nameLocale: 101, - description: 101, + description: 103, badge: getImage("Lisa"), @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1465, + nameLocale: 1467, - description: 1468, + description: 1470, badge: getImage("Mona"), @@ -949,16 +949,16 @@ export default { {"default":9,"max":15,"min":1,"name":"skill3","title":18,"type":"int"}, - {"default":false,"name":"c4","title":828,"type":"bool"}, + {"default":false,"name":"c4","title":830,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1466, + nameLocale: 1468, - description: 1469, + description: 1471, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 286, + nameLocale: 288, - description: 288, + description: 290, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1781, + nameLocale: 1783, - description: 1784, + description: 1786, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1783,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1785,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":355,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":357,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1780, + nameLocale: 1782, - description: 1785, + description: 1787, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1774, + nameLocale: 1776, - description: 1776, + description: 1778, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1410, + nameLocale: 1412, - description: 1413, + description: 1415, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1414,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1416,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1409, + nameLocale: 1411, - description: 1412, + description: 1414, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1286, + nameLocale: 1288, - description: 1292, + description: 1294, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1297,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1299,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1291,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1293,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1288, + nameLocale: 1290, - description: 1294, + description: 1296, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1293,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1295,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1287, + nameLocale: 1289, - description: 1295, + description: 1297, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":827,"type":"bool"}, + {"default":false,"name":"c2","title":829,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1289, + nameLocale: 1291, - description: 1296, + description: 1298, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":690,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":692,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1319, + nameLocale: 1321, - description: 1322, + description: 1324, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1317, + nameLocale: 1319, - description: 1323, + description: 1325, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1324,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1326,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1318, + nameLocale: 1320, - description: 1321, + description: 1323, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":673,"type":"element4"}, + {"default":"Electro","name":"element","title":675,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 664, + nameLocale: 666, - description: 667, + description: 669, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":369,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":371,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 663, + nameLocale: 665, - description: 666, + description: 668, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1141, + nameLocale: 1143, - description: 1143, + description: 1145, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1495,"type":"bool"}, + {"default":false,"name":"levitating","title":1497,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1140, + nameLocale: 1142, - description: 1144, + description: 1146, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":354,"type":"bool"}, + {"default":true,"name":"is_convert","title":356,"type":"bool"}, - {"default":"Electro","name":"element","title":1612,"type":"element4"}, + {"default":"Electro","name":"element","title":1614,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1839, + nameLocale: 1841, - description: 1843, + description: 1845, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1837, + nameLocale: 1839, - description: 1841, + description: 1843, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1838, + nameLocale: 1840, - description: 1842, + description: 1844, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1511, + nameLocale: 1513, - description: 1513, + description: 1515, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1618, + nameLocale: 1620, - description: 1622, + description: 1624, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1619, + nameLocale: 1621, - description: 1623, + description: 1625, badge: getImage("Xinyan"), @@ -1344,9 +1344,9 @@ export default { "YaeMikoC4": { name: "YaeMikoC4", - nameLocale: 242, + nameLocale: 244, - description: 244, + description: 246, badge: getImage("Yae"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 565, + nameLocale: 567, - description: 567, + description: 569, badge: getImage("Yoimiya"), @@ -1369,16 +1369,16 @@ export default { genre: "Character", config: [ - {"default":0,"max":10,"min":0,"name":"talent1_stack","title":42,"type":"int"}, + {"default":0,"max":10,"min":0,"name":"talent1_stack","title":43,"type":"int"}, ], }, "YunjinQ": { name: "YunjinQ", - nameLocale: 138, + nameLocale: 140, - description: 140, + description: 142, badge: getImage("Yunjin"), @@ -1388,20 +1388,20 @@ export default { {"default":10,"max":15,"min":1,"name":"skill3","title":18,"type":"int"}, - {"default":2000.0,"name":"def","title":142,"type":"floatInput"}, + {"default":2000.0,"name":"def","title":144,"type":"floatInput"}, {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1719,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1721,"type":"int"}, ], }, "YunjinC2": { name: "YunjinC2", - nameLocale: 137, + nameLocale: 139, - description: 141, + description: 143, badge: getImage("Yunjin"), @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1701, + nameLocale: 1703, - description: 1703, + description: 1705, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 480, + nameLocale: 482, - description: 484, + description: 486, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1397,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1399,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 481, + nameLocale: 483, - description: 483, + description: 485, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1049,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1051,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1345, + nameLocale: 1347, - description: 1348, + description: 1350, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1347,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1349,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1863, + nameLocale: 1865, - description: 1865, + description: 1867, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 715, + nameLocale: 717, - description: 717, + description: 719, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1654,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1656,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 477, + nameLocale: 479, - description: 478, + description: 480, badge: getImage("Dori"), @@ -1522,18 +1522,18 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1266,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1268,"type":"bool"}, - {"default":true,"name":"energy_below50","title":236,"type":"bool"}, + {"default":true,"name":"energy_below50","title":238,"type":"bool"}, ], }, "NilouTalent1": { name: "NilouTalent1", - nameLocale: 532, + nameLocale: 534, - description: 468, + description: 470, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 533, + nameLocale: 535, - description: 458, + description: 460, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":535,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":537,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 446, + nameLocale: 448, - description: 1549, + description: 1551, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 445, + nameLocale: 447, - description: 466, + description: 468, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":447,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":449,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1390, + nameLocale: 1392, - description: 794, + description: 796, badge: getImage("Nahida"), @@ -1605,16 +1605,16 @@ export default { genre: "Character", config: [ - {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1728,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1730,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1097, + nameLocale: 1099, - description: 1233, + description: 1235, badge: getImage("Faruzan"), @@ -1622,26 +1622,26 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1098,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1100,"type":"int"}, {"default":10,"max":15,"min":1,"name":"q_level","title":18,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":43,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":44,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q2","title":39,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q2","title":40,"type":"float"}, {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":20,"type":"float"}, - {"default":false,"name":"enable_c6","title":246,"type":"bool"}, + {"default":false,"name":"enable_c6","title":248,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1381, + nameLocale: 1383, - description: 823, + description: 825, badge: getImage("Mika"), @@ -1649,18 +1649,18 @@ export default { genre: "Character", config: [ - {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":185,"type":"float"}, + {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":187,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":248,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":250,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 346, + nameLocale: 348, - description: 1725, + description: 1727, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":347,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":349,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1071,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1073,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1301, + nameLocale: 1303, - description: 357, + description: 359, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1303,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1305,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1071,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1073,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1302, + nameLocale: 1304, - description: 795, + description: 797, badge: getImage("Baizhuer"), @@ -1706,14 +1706,14 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1071,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1073,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1448, + nameLocale: 1450, description: 22, @@ -1723,14 +1723,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 1032, + nameLocale: 1034, description: 23, @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1209, + nameLocale: 1211, - description: 735, + description: 737, badge: getImageW("Claymore_Wolfmound"), @@ -1757,16 +1757,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1563, + nameLocale: 1565, - description: 171, + description: 173, badge: getImageW("Catalyst_Pulpfic"), @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1396, + nameLocale: 1398, - description: 337, + description: 339, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1308, + nameLocale: 1310, - description: 1058, + description: 1060, badge: getImageW("Catalyst_Bakufu"), @@ -1808,18 +1808,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, - {"default":"Electro","name":"element","title":189,"type":"element8"}, + {"default":"Electro","name":"element","title":191,"type":"element8"}, ], }, "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 352, + nameLocale: 354, - description: 701, + description: 703, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":618,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":620,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1583, + nameLocale: 1585, - description: 702, + description: 704, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1534, + nameLocale: 1536, - description: 1528, + description: 1530, badge: getImageW("Sword_Pleroma"), @@ -1863,18 +1863,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, - {"default":900.0,"name":"em","title":228,"type":"floatInput"}, + {"default":900.0,"name":"em","title":231,"type":"floatInput"}, ], }, "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1228, + nameLocale: 1230, - description: 32, + description: 33, badge: getImageW("Claymore_Pleroma"), @@ -1882,18 +1882,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, - {"default":900.0,"name":"em","title":228,"type":"floatInput"}, + {"default":900.0,"name":"em","title":231,"type":"floatInput"}, ], }, "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 441, + nameLocale: 443, - description: 581, + description: 583, badge: getImageW("Sword_Deshret"), @@ -1901,18 +1901,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1386,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1260,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1262,"type":"floatInput"}, ], }, "ResonancePyro2": { name: "ResonancePyro2", - nameLocale: 197, + nameLocale: 199, - description: 724, + description: 726, badge: ResonancePyro2_image, @@ -1925,9 +1925,9 @@ export default { "ResonanceCryo2": { name: "ResonanceCryo2", - nameLocale: 198, + nameLocale: 200, - description: 719, + description: 721, badge: ResonanceCryo2_image, @@ -1935,16 +1935,16 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":618,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":620,"type":"float"}, ], }, "ResonanceGeo2": { name: "ResonanceGeo2", - nameLocale: 195, + nameLocale: 197, - description: 694, + description: 696, badge: ResonanceGeo2_image, @@ -1952,18 +1952,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":745,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":747,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":748,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":749,"type":"float"}, ], }, "ResonanceHydro2": { name: "ResonanceHydro2", - nameLocale: 196, + nameLocale: 198, - description: 1162, + description: 1164, badge: ResonanceHydro2_image, @@ -1976,9 +1976,9 @@ export default { "ResonanceDendro2": { name: "ResonanceDendro2", - nameLocale: 199, + nameLocale: 201, - description: 230, + description: 232, badge: ResonanceDendro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":745,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":747,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":748,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":749,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 755, + nameLocale: 757, - description: 1554, + description: 1556, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 815, + nameLocale: 817, - description: 790, + description: 792, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 647, + nameLocale: 649, - description: 1488, + description: 1490, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1399,"type":"element4"}, + {"default":"Electro","name":"element","title":1401,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1419, + nameLocale: 1421, - description: 1050, + description: 1052, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,16 +2052,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":668,"type":"element4"}, + {"default":"Electro","name":"element","title":670,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 335, + nameLocale: 337, - description: 205, + description: 207, badge: getImageA("UI_RelicIcon_15017_4"), @@ -2074,9 +2074,9 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1130, + nameLocale: 1132, - description: 212, + description: 213, badge: getImageA("UI_RelicIcon_15025_4"), @@ -2084,7 +2084,7 @@ export default { genre: "Artifact", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":618,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":620,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index e4f8ee99..8d99d3c0 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -302,7 +302,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1370, + nameLocale: 1372, element: "Anemo", weapon: "Sword", star: 5, @@ -310,54 +310,54 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 856, - skillName2: 1809, - skillName3: 1808, + skillName1: 858, + skillName2: 1811, + skillName3: 1810, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, { index: 5, text: 1676 }, { index: 6, text: 1679 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 304 }, + { index: 10, text: 306 }, - { index: 11, text: 1004 }, + { index: 11, text: 1006 }, - { index: 12, text: 305 }, + { index: 12, text: 307 }, - { index: 13, text: 1012 }, + { index: 13, text: 1014 }, ], skillMap3: [ - { index: 14, text: 1883 }, + { index: 14, text: 1885 }, - { index: 15, text: 1755 }, + { index: 15, text: 1757 }, - { index: 18, text: 1754 }, + { index: 18, text: 1756 }, - { index: 17, text: 1756 }, + { index: 17, text: 1758 }, - { index: 16, text: 1753 }, + { index: 16, text: 1755 }, ], config: [ @@ -370,7 +370,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1745, + nameLocale: 1747, element: "Geo", weapon: "Sword", star: 5, @@ -378,44 +378,44 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 900, - skillName2: 303, - skillName3: 1572, + skillName1: 902, + skillName2: 305, + skillName3: 1574, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1675 }, + { index: 5, text: 1677 }, { index: 6, text: 1680 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 307 }, + { index: 11, text: 309 }, ], skillMap3: [ - { index: 12, text: 1195 }, + { index: 12, text: 1197 }, - { index: 13, text: 1281 }, + { index: 13, text: 1283 }, ], config: [ @@ -428,7 +428,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1440, + nameLocale: 1442, element: "Dendro", weapon: "Sword", star: 5, @@ -436,37 +436,37 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 875, - skillName2: 254, - skillName3: 1066, + skillName1: 877, + skillName2: 256, + skillName3: 1068, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 143 }, + { index: 5, text: 145 }, - { index: 6, text: 1675 }, + { index: 6, text: 1677 }, { index: 7, text: 1680 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 1371 }, + { index: 11, text: 1373 }, { index: 12, text: 2 }, @@ -477,28 +477,28 @@ export default { ], skillMap3: [ - { index: 15, text: 343 }, + { index: 15, text: 345 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":409,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":411,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":411,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":413,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":415,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":417,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1244,"type":"bool"}, + {"default":true,"name":"under_e","title":1246,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 453, + nameLocale: 455, element: "Cryo", weapon: "Bow", star: 5, @@ -506,42 +506,42 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 862, - skillName2: 268, - skillName3: 998, + skillName1: 864, + skillName2: 270, + skillName3: 1000, skillMap1: [ - { index: 0, text: 53 }, + { index: 0, text: 55 }, - { index: 1, text: 54 }, + { index: 1, text: 56 }, - { index: 2, text: 124 }, + { index: 2, text: 126 }, - { index: 3, text: 75 }, + { index: 3, text: 77 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1315 }, + { index: 5, text: 1317 }, - { index: 6, text: 1154 }, + { index: 6, text: 1156 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 267 }, + { index: 10, text: 269 }, - { index: 11, text: 279 }, + { index: 11, text: 281 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, ], config: [ @@ -549,14 +549,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1392,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1394,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 550, + nameLocale: 552, element: "Pyro", weapon: "Bow", star: 4, @@ -564,42 +564,42 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 888, - skillName2: 1197, - skillName3: 1377, + skillName1: 890, + skillName2: 1199, + skillName3: 1379, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1315 }, + { index: 5, text: 1317 }, - { index: 6, text: 1154 }, + { index: 6, text: 1156 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 1199 }, + { index: 10, text: 1200 }, ], skillMap3: [ - { index: 11, text: 1378 }, + { index: 11, text: 1380 }, - { index: 12, text: 1379 }, + { index: 12, text: 1381 }, ], config: [ @@ -612,7 +612,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1456, + nameLocale: 1458, element: "Geo", weapon: "Claymore", star: 5, @@ -620,35 +620,35 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 911, - skillName2: 1856, - skillName3: 1017, + skillName1: 913, + skillName2: 1858, + skillName3: 1019, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1462 }, + { index: 4, text: 1464 }, - { index: 5, text: 1461 }, + { index: 5, text: 1463 }, - { index: 6, text: 597 }, + { index: 6, text: 599 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, ], skillMap3: [ @@ -659,14 +659,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":463,"type":"bool"}, + {"default":true,"name":"after_q","title":465,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1300, + nameLocale: 1302, element: "Dendro", weapon: "Catalyst", star: 5, @@ -674,47 +674,47 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 907, - skillName2: 519, - skillName3: 650, + skillName1: 909, + skillName2: 521, + skillName3: 652, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, - { index: 10, text: 1095 }, + { index: 10, text: 1097 }, ], skillMap3: [ - { index: 12, text: 1171 }, + { index: 12, text: 1173 }, - { index: 11, text: 809 }, + { index: 11, text: 811 }, ], config: [ - {"default":false,"name":"hp_below_50","title":443,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":445,"type":"bool"}, ], configSkill: [ @@ -724,7 +724,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1442, + nameLocale: 1444, element: "Hydro", weapon: "Catalyst", star: 4, @@ -732,40 +732,40 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 870, - skillName2: 1155, - skillName3: 1715, + skillName1: 872, + skillName2: 1157, + skillName3: 1717, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 403 }, + { index: 8, text: 406 }, - { index: 10, text: 708 }, + { index: 10, text: 710 }, - { index: 9, text: 1081 }, + { index: 9, text: 1083 }, ], skillMap3: [ - { index: 11, text: 1096 }, + { index: 11, text: 1098 }, ], config: [ @@ -778,7 +778,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 325, + nameLocale: 327, element: "Electro", weapon: "Claymore", star: 4, @@ -786,46 +786,46 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 859, - skillName2: 712, - skillName3: 764, + skillName1: 861, + skillName2: 714, + skillName3: 766, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1687 }, + { index: 5, text: 1689 }, - { index: 6, text: 1690 }, + { index: 6, text: 1692 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 461 }, + { index: 10, text: 462 }, - { index: 11, text: 49 }, + { index: 11, text: 51 }, - { index: 12, text: 121 }, + { index: 12, text: 123 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 678 }, - { index: 14, text: 1714 }, + { index: 14, text: 1716 }, ], config: [ @@ -838,7 +838,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1234, + nameLocale: 1236, element: "Pyro", weapon: "Sword", star: 4, @@ -846,52 +846,52 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 852, - skillName2: 1187, - skillName3: 1416, + skillName1: 854, + skillName2: 1189, + skillName3: 1418, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1675 }, + { index: 5, text: 1677 }, { index: 6, text: 1680 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 1174 }, + { index: 10, text: 1177 }, - { index: 11, text: 60 }, + { index: 11, text: 62 }, - { index: 12, text: 61 }, + { index: 12, text: 63 }, - { index: 13, text: 131 }, + { index: 13, text: 133 }, - { index: 14, text: 132 }, + { index: 14, text: 134 }, - { index: 15, text: 1198 }, + { index: 15, text: 1201 }, ], skillMap3: [ - { index: 16, text: 676 }, + { index: 16, text: 678 }, - { index: 17, text: 704 }, + { index: 17, text: 706 }, ], config: [ @@ -904,7 +904,7 @@ export default { Candace: { name: "Candace", - nameLocale: 444, + nameLocale: 446, element: "Hydro", weapon: "Polearm", star: 4, @@ -912,59 +912,59 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 873, - skillName2: 439, - skillName3: 437, + skillName1: 875, + skillName2: 441, + skillName3: 439, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 460 }, + { index: 9, text: 463 }, - { index: 10, text: 1500 }, + { index: 10, text: 1502 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, - { index: 12, text: 1079 }, + { index: 12, text: 1081 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":408,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":410,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1593,"type":"bool"}, + {"default":true,"name":"crown","title":1595,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1662, + nameLocale: 1664, element: "Cryo", weapon: "Claymore", star: 4, @@ -972,38 +972,38 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 878, - skillName2: 1169, - skillName3: 1168, + skillName1: 880, + skillName2: 1171, + skillName3: 1170, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, ], config: [ @@ -1016,7 +1016,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1048, + nameLocale: 1050, element: "Dendro", weapon: "Bow", star: 4, @@ -1024,45 +1024,45 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 886, - skillName2: 699, - skillName3: 1221, + skillName1: 888, + skillName2: 701, + skillName3: 1223, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1315 }, + { index: 4, text: 1317 }, - { index: 5, text: 1154 }, + { index: 5, text: 1156 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, ], skillMap3: [ - { index: 10, text: 1196 }, + { index: 10, text: 1198 }, - { index: 11, text: 1606 }, + { index: 11, text: 1608 }, ], config: [ - {"default":false,"name":"background","title":465,"type":"bool"}, + {"default":false,"name":"background","title":467,"type":"bool"}, ], configSkill: [ @@ -1072,7 +1072,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1591, + nameLocale: 1593, element: "Electro", weapon: "Polearm", star: 5, @@ -1080,53 +1080,53 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 843, - skillName2: 1367, - skillName3: 438, + skillName1: 845, + skillName2: 1369, + skillName3: 440, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 79 }, + { index: 2, text: 81 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, - { index: 11, text: 387 }, + { index: 11, text: 389 }, - { index: 12, text: 390 }, + { index: 12, text: 392 }, - { index: 13, text: 388 }, + { index: 13, text: 390 }, - { index: 14, text: 394 }, + { index: 14, text: 396 }, - { index: 15, text: 391 }, + { index: 15, text: 393 }, - { index: 16, text: 396 }, + { index: 16, text: 398 }, - { index: 17, text: 389 }, + { index: 17, text: 391 }, - { index: 18, text: 392 }, + { index: 18, text: 394 }, - { index: 19, text: 397 }, + { index: 19, text: 399 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 678 }, - { index: 9, text: 393 }, + { index: 9, text: 395 }, - { index: 10, text: 395 }, + { index: 10, text: 397 }, ], skillMap3: [ @@ -1134,21 +1134,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":406,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":408,"type":"float"}, - {"default":true,"name":"after_q","title":386,"type":"bool"}, + {"default":true,"name":"after_q","title":388,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1552,"type":"bool"}, + {"default":true,"name":"under_judication","title":1554,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1638, + nameLocale: 1640, element: "Pyro", weapon: "Claymore", star: 5, @@ -1156,44 +1156,44 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 865, - skillName2: 1193, - skillName3: 1173, + skillName1: 867, + skillName2: 1195, + skillName3: 1175, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 281 }, + { index: 9, text: 283 }, - { index: 10, text: 310 }, + { index: 10, text: 312 }, - { index: 11, text: 1798 }, + { index: 11, text: 1800 }, ], skillMap3: [ - { index: 12, text: 1181 }, + { index: 12, text: 1183 }, - { index: 13, text: 1188 }, + { index: 13, text: 1190 }, ], config: [ @@ -1201,16 +1201,16 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":120,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":122,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":249,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":251,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1632, + nameLocale: 1634, element: "Pyro", weapon: "Claymore", star: 5, @@ -1218,46 +1218,46 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 874, - skillName2: 1645, - skillName3: 1873, + skillName1: 876, + skillName2: 1647, + skillName3: 1875, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 52 }, + { index: 9, text: 54 }, - { index: 10, text: 124 }, + { index: 10, text: 126 }, - { index: 11, text: 75 }, + { index: 11, text: 77 }, ], skillMap3: [ - { index: 12, text: 762 }, + { index: 12, text: 764 }, - { index: 13, text: 703 }, + { index: 13, text: 705 }, - { index: 14, text: 1200 }, + { index: 14, text: 1202 }, ], config: [ @@ -1265,14 +1265,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":830,"type":"bool"}, + {"default":true,"name":"pyro","title":832,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1634, + nameLocale: 1636, element: "Cryo", weapon: "Bow", star: 4, @@ -1280,44 +1280,44 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 883, - skillName2: 1220, - skillName3: 1018, + skillName1: 885, + skillName2: 1222, + skillName3: 1020, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1315 }, + { index: 5, text: 1317 }, - { index: 6, text: 1154 }, + { index: 6, text: 1156 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 1219 }, + { index: 10, text: 1221 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, - { index: 12, text: 1800 }, + { index: 12, text: 1802 }, - { index: 13, text: 707 }, + { index: 13, text: 709 }, ], config: [ @@ -1330,7 +1330,7 @@ export default { Dori: { name: "Dori", - nameLocale: 476, + nameLocale: 478, element: "Electro", weapon: "Claymore", star: 4, @@ -1338,42 +1338,42 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 854, - skillName2: 1711, - skillName3: 348, + skillName1: 856, + skillName2: 1713, + skillName3: 350, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 125 }, + { index: 1, text: 127 }, - { index: 2, text: 126 }, + { index: 2, text: 128 }, - { index: 3, text: 75 }, + { index: 3, text: 77 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 770 }, + { index: 9, text: 772 }, - { index: 10, text: 419 }, + { index: 10, text: 421 }, ], skillMap3: [ - { index: 11, text: 1630 }, + { index: 11, text: 1632 }, - { index: 12, text: 706 }, + { index: 12, text: 708 }, ], config: [ @@ -1381,14 +1381,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c6","title":35,"type":"bool"}, + {"default":false,"name":"c6","title":36,"type":"bool"}, ], }, Eula: { name: "Eula", - nameLocale: 167, + nameLocale: 169, element: "Cryo", weapon: "Claymore", star: 5, @@ -1396,52 +1396,52 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 899, - skillName2: 274, - skillName3: 289, + skillName1: 901, + skillName2: 276, + skillName3: 291, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 144 }, + { index: 5, text: 146 }, - { index: 6, text: 145 }, + { index: 6, text: 147 }, - { index: 7, text: 1687 }, + { index: 7, text: 1689 }, - { index: 8, text: 1690 }, + { index: 8, text: 1692 }, - { index: 9, text: 86 }, + { index: 9, text: 88 }, - { index: 10, text: 174 }, + { index: 10, text: 176 }, - { index: 11, text: 1846 }, + { index: 11, text: 1848 }, ], skillMap2: [ - { index: 12, text: 1174 }, + { index: 12, text: 1177 }, - { index: 13, text: 1712 }, + { index: 13, text: 1714 }, - { index: 14, text: 273 }, + { index: 14, text: 275 }, - { index: 15, text: 1067 }, + { index: 15, text: 1069 }, ], skillMap3: [ - { index: 16, text: 676 }, + { index: 16, text: 678 }, - { index: 17, text: 239 }, + { index: 17, text: 241 }, ], config: [ @@ -1449,14 +1449,14 @@ export default { ], configSkill: [ - {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":240,"type":"int"}, + {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":242,"type":"int"}, ], }, Faruzan: { name: "Faruzan", - nameLocale: 1231, + nameLocale: 1233, element: "Anemo", weapon: "Bow", star: 4, @@ -1464,57 +1464,57 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 906, - skillName2: 1797, - skillName3: 691, + skillName1: 908, + skillName2: 1799, + skillName3: 693, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 4, text: 1154 }, + { index: 4, text: 1156 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, - { index: 10, text: 1807 }, + { index: 10, text: 1809 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":40,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":41,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":36,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":37,"type":"float"}, ], }, Fischl: { name: "Fischl", - nameLocale: 1492, + nameLocale: 1494, element: "Electro", weapon: "Bow", star: 4, @@ -1522,42 +1522,42 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 893, - skillName2: 485, - skillName3: 1438, + skillName1: 895, + skillName2: 487, + skillName3: 1440, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1315 }, + { index: 5, text: 1317 }, - { index: 6, text: 1154 }, + { index: 6, text: 1156 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 528 }, + { index: 10, text: 530 }, - { index: 11, text: 373 }, + { index: 11, text: 375 }, ], skillMap3: [ - { index: 12, text: 1496 }, + { index: 12, text: 1498 }, ], config: [ @@ -1570,7 +1570,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1490, + nameLocale: 1492, element: "Cryo", weapon: "Claymore", star: 4, @@ -1578,79 +1578,79 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 871, - skillName2: 1119, - skillName3: 1218, + skillName1: 873, + skillName2: 1121, + skillName3: 1220, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 85 }, + { index: 9, text: 87 }, - { index: 10, text: 1791 }, + { index: 10, text: 1793 }, - { index: 11, text: 1764 }, + { index: 11, text: 1766 }, - { index: 12, text: 64 }, + { index: 12, text: 66 }, - { index: 13, text: 65 }, + { index: 13, text: 67 }, - { index: 14, text: 133 }, + { index: 14, text: 135 }, - { index: 15, text: 134 }, + { index: 15, text: 136 }, - { index: 16, text: 83 }, + { index: 16, text: 85 }, - { index: 17, text: 84 }, + { index: 17, text: 86 }, - { index: 18, text: 433 }, + { index: 18, text: 435 }, - { index: 19, text: 1170 }, + { index: 19, text: 1172 }, - { index: 21, text: 1792 }, + { index: 21, text: 1794 }, ], skillMap3: [ - { index: 20, text: 676 }, + { index: 20, text: 678 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":413,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":415,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":414,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":416,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":512,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":514,"type":"float"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1254, + nameLocale: 1256, element: "Cryo", weapon: "Bow", star: 5, @@ -1658,63 +1658,63 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 872, - skillName2: 589, - skillName3: 1758, + skillName1: 874, + skillName2: 591, + skillName3: 1760, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 251 }, + { index: 5, text: 253 }, - { index: 6, text: 1315 }, + { index: 6, text: 1317 }, - { index: 7, text: 63 }, + { index: 7, text: 65 }, - { index: 8, text: 1790 }, + { index: 8, text: 1792 }, - { index: 9, text: 1789 }, + { index: 9, text: 1791 }, - { index: 10, text: 86 }, + { index: 10, text: 88 }, - { index: 11, text: 174 }, + { index: 11, text: 176 }, - { index: 12, text: 1846 }, + { index: 12, text: 1848 }, ], skillMap2: [ - { index: 13, text: 676 }, + { index: 13, text: 678 }, ], skillMap3: [ - { index: 14, text: 272 }, + { index: 14, text: 274 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":506,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":508,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":504,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":506,"type":"float"}, ], }, Gorou: { name: "Gorou", - nameLocale: 148, + nameLocale: 150, element: "Geo", weapon: "Bow", star: 4, @@ -1722,40 +1722,40 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 910, - skillName2: 1203, - skillName3: 257, + skillName1: 912, + skillName2: 1205, + skillName3: 259, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1315 }, + { index: 4, text: 1317 }, - { index: 5, text: 1154 }, + { index: 5, text: 1156 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 592 }, + { index: 11, text: 594 }, ], config: [ @@ -1768,7 +1768,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1433, + nameLocale: 1435, element: "Pyro", weapon: "Polearm", star: 5, @@ -1776,61 +1776,61 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 858, - skillName2: 1506, - skillName3: 552, + skillName1: 860, + skillName2: 1508, + skillName3: 554, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 144 }, + { index: 4, text: 146 }, - { index: 5, text: 145 }, + { index: 5, text: 147 }, - { index: 6, text: 251 }, + { index: 6, text: 253 }, - { index: 7, text: 1672 }, + { index: 7, text: 1674 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 1509 }, + { index: 11, text: 1511 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, - { index: 13, text: 175 }, + { index: 13, text: 177 }, ], config: [ - {"default":true,"name":"le_50","title":1266,"type":"bool"}, + {"default":true,"name":"le_50","title":1268,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":636,"type":"bool"}, + {"default":true,"name":"after_e","title":638,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1247, + nameLocale: 1249, element: "Anemo", weapon: "Sword", star: 5, @@ -1838,44 +1838,44 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 897, - skillName2: 1806, - skillName3: 1498, + skillName1: 899, + skillName2: 1808, + skillName3: 1500, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, ], skillMap3: [ - { index: 10, text: 1195 }, + { index: 10, text: 1197 }, - { index: 11, text: 294 }, + { index: 11, text: 296 }, - { index: 12, text: 1799 }, + { index: 12, text: 1801 }, - { index: 13, text: 705 }, + { index: 13, text: 707 }, ], config: [ @@ -1888,7 +1888,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 1036, + nameLocale: 1038, element: "Anemo", weapon: "Sword", star: 5, @@ -1896,68 +1896,68 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 863, - skillName2: 338, - skillName3: 70, + skillName1: 865, + skillName2: 340, + skillName3: 72, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 146 }, + { index: 5, text: 148 }, - { index: 6, text: 1673 }, + { index: 6, text: 1675 }, - { index: 6, text: 1677 }, + { index: 6, text: 1682 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 113 }, + { index: 11, text: 115 }, - { index: 12, text: 114 }, + { index: 12, text: 116 }, - { index: 13, text: 119 }, + { index: 13, text: 121 }, - { index: 14, text: 117 }, + { index: 14, text: 119 }, - { index: 15, text: 116 }, + { index: 15, text: 118 }, - { index: 16, text: 115 }, + { index: 16, text: 117 }, - { index: 17, text: 118 }, + { index: 17, text: 120 }, - { index: 18, text: 1178 }, + { index: 18, text: 1180 }, - { index: 19, text: 1713 }, + { index: 19, text: 1715 }, ], skillMap3: [ - { index: 20, text: 762 }, + { index: 20, text: 764 }, - { index: 21, text: 703 }, + { index: 21, text: 705 }, - { index: 22, text: 1755 }, + { index: 22, text: 1757 }, - { index: 23, text: 1754 }, + { index: 23, text: 1756 }, - { index: 24, text: 1753 }, + { index: 24, text: 1755 }, - { index: 25, text: 1756 }, + { index: 25, text: 1758 }, ], config: [ @@ -1965,14 +1965,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":250,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":252,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 292, + nameLocale: 294, element: "Cryo", weapon: "Sword", star: 4, @@ -1980,40 +1980,40 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 847, - skillName2: 1794, - skillName3: 284, + skillName1: 849, + skillName2: 1796, + skillName3: 286, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1675 }, + { index: 5, text: 1677 }, { index: 6, text: 1680 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, ], config: [ @@ -2026,7 +2026,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1349, + nameLocale: 1351, element: "Cryo", weapon: "Sword", star: 5, @@ -2034,61 +2034,61 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 889, - skillName2: 1339, - skillName3: 1342, + skillName1: 891, + skillName2: 1341, + skillName3: 1344, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 431 }, + { index: 3, text: 433 }, - { index: 5, text: 143 }, + { index: 5, text: 145 }, - { index: 6, text: 1682 }, + { index: 6, text: 1684 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, ], skillMap3: [ - { index: 12, text: 301 }, + { index: 12, text: 303 }, - { index: 13, text: 1405 }, + { index: 13, text: 1407 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":509,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":508,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":510,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1343,"type":"bool"}, + {"default":true,"name":"after_dash","title":1345,"type":"bool"}, - {"default":false,"name":"use_c6","title":247,"type":"bool"}, + {"default":false,"name":"use_c6","title":249,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1344, + nameLocale: 1346, element: "Hydro", weapon: "Sword", star: 5, @@ -2096,44 +2096,44 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 890, - skillName2: 1341, - skillName3: 1340, + skillName1: 892, + skillName2: 1343, + skillName3: 1342, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 426 }, + { index: 3, text: 428 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 58 }, + { index: 9, text: 60 }, - { index: 10, text: 129 }, + { index: 10, text: 131 }, - { index: 11, text: 82 }, + { index: 11, text: 84 }, - { index: 12, text: 1077 }, + { index: 12, text: 1079 }, ], skillMap3: [ - { index: 13, text: 1082 }, + { index: 13, text: 1084 }, ], config: [ @@ -2141,16 +2141,16 @@ export default { ], configSkill: [ - {"default":4,"max":5,"min":0,"name":"e_stack","title":33,"type":"int"}, + {"default":4,"max":5,"min":0,"name":"e_stack","title":34,"type":"int"}, - {"default":true,"name":"in_q","title":464,"type":"bool"}, + {"default":true,"name":"in_q","title":466,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 345, + nameLocale: 347, element: "Dendro", weapon: "Claymore", star: 4, @@ -2158,57 +2158,57 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 869, - skillName2: 1298, - skillName3: 1387, + skillName1: 871, + skillName2: 1300, + skillName3: 1389, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":509,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":511,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":410,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":412,"type":"float"}, ], configSkill: [ - {"default":false,"name":"after_q","title":41,"type":"bool"}, + {"default":false,"name":"after_q","title":42,"type":"bool"}, ], }, Keqing: { name: "Keqing", - nameLocale: 308, + nameLocale: 310, element: "Electro", weapon: "Sword", star: 5, @@ -2216,55 +2216,55 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 845, - skillName2: 818, - skillName3: 501, + skillName1: 847, + skillName2: 820, + skillName3: 503, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 427 }, + { index: 3, text: 429 }, - { index: 4, text: 428 }, + { index: 4, text: 430 }, - { index: 5, text: 143 }, + { index: 5, text: 145 }, - { index: 6, text: 1675 }, + { index: 6, text: 1677 }, { index: 7, text: 1680 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 1772 }, + { index: 11, text: 1774 }, - { index: 12, text: 762 }, + { index: 12, text: 764 }, - { index: 13, text: 1771 }, + { index: 13, text: 1773 }, ], skillMap3: [ - { index: 15, text: 676 }, + { index: 15, text: 678 }, - { index: 16, text: 1631 }, + { index: 16, text: 1633 }, - { index: 18, text: 1001 }, + { index: 18, text: 1003 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":515,"type":"float"}, ], configSkill: [ @@ -2276,7 +2276,7 @@ export default { Klee: { name: "Klee", - nameLocale: 374, + nameLocale: 376, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2284,38 +2284,38 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 885, - skillName2: 1608, - skillName3: 1613, + skillName1: 887, + skillName2: 1610, + skillName3: 1615, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1672 }, + { index: 3, text: 1674 }, - { index: 4, text: 1683 }, + { index: 4, text: 1685 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 1609 }, + { index: 8, text: 1611 }, - { index: 9, text: 1573 }, + { index: 9, text: 1575 }, ], skillMap3: [ - { index: 10, text: 1614 }, + { index: 10, text: 1616 }, ], config: [ @@ -2328,7 +2328,7 @@ export default { KujouSara: { name: "KujouSara", - nameLocale: 107, + nameLocale: 109, element: "Electro", weapon: "Bow", star: 4, @@ -2336,42 +2336,42 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 912, - skillName2: 1858, - skillName3: 1192, + skillName1: 914, + skillName2: 1860, + skillName3: 1194, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1315 }, + { index: 5, text: 1317 }, - { index: 6, text: 1154 }, + { index: 6, text: 1156 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 492 }, + { index: 10, text: 494 }, ], skillMap3: [ - { index: 11, text: 493 }, + { index: 11, text: 495 }, - { index: 12, text: 494 }, + { index: 12, text: 496 }, ], config: [ @@ -2384,7 +2384,7 @@ export default { KukiShinobu: { name: "KukiShinobu", - nameLocale: 102, + nameLocale: 104, element: "Electro", weapon: "Sword", star: 4, @@ -2392,55 +2392,55 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 861, - skillName2: 1605, - skillName3: 637, + skillName1: 863, + skillName2: 1607, + skillName3: 639, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1675 }, + { index: 4, text: 1677 }, { index: 5, text: 1680 }, - { index: 6, text: 1672 }, + { index: 6, text: 1674 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 1604 }, + { index: 11, text: 1606 }, - { index: 12, text: 1603 }, + { index: 12, text: 1605 }, ], skillMap3: [ - { index: 13, text: 344 }, + { index: 13, text: 346 }, - { index: 14, text: 641 }, + { index: 14, text: 643 }, - { index: 15, text: 642 }, + { index: 15, text: 644 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1265,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1267,"type":"bool"}, - {"default":false,"name":"use_c6","title":385,"type":"bool"}, + {"default":false,"name":"use_c6","title":387,"type":"bool"}, ], configSkill: [ @@ -2450,7 +2450,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1470, + nameLocale: 1472, element: "Cryo", weapon: "Sword", star: 4, @@ -2458,38 +2458,38 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 881, - skillName2: 452, - skillName3: 819, + skillName1: 883, + skillName2: 454, + skillName3: 821, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1675 }, + { index: 3, text: 1677 }, { index: 4, text: 1680 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 678 }, - { index: 9, text: 1831 }, + { index: 9, text: 1833 }, ], skillMap3: [ - { index: 10, text: 816 }, + { index: 10, text: 818 }, ], config: [ @@ -2502,7 +2502,7 @@ export default { Lisa: { name: "Lisa", - nameLocale: 98, + nameLocale: 100, element: "Electro", weapon: "Catalyst", star: 4, @@ -2510,44 +2510,44 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 866, - skillName2: 1452, - skillName3: 1502, + skillName1: 868, + skillName2: 1454, + skillName3: 1504, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 1174 }, + { index: 8, text: 1177 }, - { index: 9, text: 807 }, + { index: 9, text: 809 }, - { index: 10, text: 50 }, + { index: 10, text: 52 }, - { index: 11, text: 122 }, + { index: 11, text: 124 }, - { index: 12, text: 73 }, + { index: 12, text: 75 }, ], skillMap3: [ - { index: 13, text: 1770 }, + { index: 13, text: 1772 }, ], config: [ @@ -2560,7 +2560,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1246, + nameLocale: 1248, element: "Anemo", weapon: "Sword", star: 4, @@ -2568,65 +2568,65 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 902, - skillName2: 1578, - skillName3: 1855, + skillName1: 904, + skillName2: 1580, + skillName3: 1857, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1675 }, + { index: 5, text: 1677 }, { index: 6, text: 1680 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 1577 }, + { index: 10, text: 1579 }, - { index: 11, text: 1116 }, + { index: 11, text: 1118 }, - { index: 12, text: 404 }, + { index: 12, text: 407 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 678 }, - { index: 14, text: 648 }, + { index: 14, text: 650 }, - { index: 15, text: 631 }, + { index: 15, text: 633 }, - { index: 16, text: 633 }, + { index: 16, text: 635 }, - { index: 17, text: 634 }, + { index: 17, text: 636 }, - { index: 18, text: 635 }, + { index: 18, text: 637 }, - { index: 19, text: 632 }, + { index: 19, text: 634 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":511,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":513,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":510,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":512,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":516,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":518,"type":"float"}, ], configSkill: [ @@ -2636,7 +2636,7 @@ export default { Lyney: { name: "Lyney", - nameLocale: 1034, + nameLocale: 1036, element: "Pyro", weapon: "Bow", star: 5, @@ -2644,46 +2644,46 @@ export default { // avatar: Lyney_avatar, avatar: getName("Lyney"), splash: Lyney_splash, - skillName1: 905, - skillName2: 1314, - skillName3: 488, + skillName1: 907, + skillName2: 1316, + skillName3: 490, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 79 }, + { index: 2, text: 81 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1315 }, + { index: 4, text: 1317 }, - { index: 5, text: 63 }, + { index: 5, text: 65 }, - { index: 6, text: 1761 }, + { index: 6, text: 1763 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, - { index: 10, text: 1332 }, + { index: 10, text: 1334 }, - { index: 11, text: 1170 }, + { index: 11, text: 1172 }, ], skillMap2: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 678 }, - { index: 14, text: 625 }, + { index: 14, text: 627 }, ], config: [ @@ -2695,18 +2695,18 @@ export default { ], configSkill: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1760,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1762,"type":"float"}, - {"default":false,"name":"under_pyro","title":752,"type":"bool"}, + {"default":false,"name":"under_pyro","title":754,"type":"bool"}, - {"default":1,"max":3,"min":0,"name":"pyro_count","title":1729,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1731,"type":"int"}, ], }, Mona: { name: "Mona", - nameLocale: 1464, + nameLocale: 1466, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2714,38 +2714,38 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 851, - skillName2: 1072, - skillName3: 817, + skillName1: 853, + skillName2: 1074, + skillName3: 819, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 703 }, + { index: 8, text: 705 }, - { index: 9, text: 1200 }, + { index: 9, text: 1202 }, ], skillMap3: [ - { index: 10, text: 1099 }, + { index: 10, text: 1101 }, ], config: [ @@ -2758,7 +2758,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1389, + nameLocale: 1391, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2766,35 +2766,35 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 896, - skillName2: 660, - skillName3: 638, + skillName1: 898, + skillName2: 662, + skillName3: 640, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 1174 }, + { index: 8, text: 1177 }, - { index: 9, text: 1712 }, + { index: 9, text: 1714 }, - { index: 10, text: 1164 }, + { index: 10, text: 1166 }, ], skillMap3: [ @@ -2802,7 +2802,7 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1885,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1887,"type":"int"}, ], configSkill: [ @@ -2816,7 +2816,7 @@ export default { Neuvillette: { name: "Neuvillette", - nameLocale: 1658, + nameLocale: 1660, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2824,57 +2824,57 @@ export default { // avatar: Neuvillette_avatar, avatar: getName("Neuvillette"), splash: Neuvillette_splash, - skillName1: 853, - skillName2: 1102, - skillName3: 1157, + skillName1: 855, + skillName2: 1104, + skillName3: 1159, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1672 }, + { index: 3, text: 1674 }, - { index: 4, text: 1671 }, + { index: 4, text: 1673 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 678 }, - { index: 9, text: 1170 }, + { index: 9, text: 1172 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 1080 }, + { index: 11, text: 1082 }, ], config: [ - {"default":100,"max":100,"min":1,"name":"current_hp","title":629,"type":"int"}, + {"default":100,"max":100,"min":1,"name":"current_hp","title":631,"type":"int"}, ], configSkill: [ - {"default":3,"max":3,"min":0,"name":"talent1_stack","title":44,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"talent1_stack","title":45,"type":"int"}, ], }, Nilou: { name: "Nilou", - nameLocale: 531, + nameLocale: 533, element: "Hydro", weapon: "Sword", star: 5, @@ -2882,55 +2882,55 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 857, - skillName2: 68, - skillName3: 1121, + skillName1: 859, + skillName2: 70, + skillName3: 1123, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1675 }, + { index: 3, text: 1677 }, { index: 4, text: 1680 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 678 }, - { index: 9, text: 311 }, + { index: 9, text: 313 }, - { index: 10, text: 801 }, + { index: 10, text: 803 }, - { index: 11, text: 312 }, + { index: 11, text: 314 }, - { index: 12, text: 802 }, + { index: 12, text: 804 }, - { index: 13, text: 1078 }, + { index: 13, text: 1080 }, - { index: 14, text: 1083 }, + { index: 14, text: 1085 }, ], skillMap3: [ - { index: 15, text: 676 }, + { index: 15, text: 678 }, - { index: 16, text: 1084 }, + { index: 16, text: 1086 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":45,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":46,"type":"float"}, ], configSkill: [ @@ -2940,7 +2940,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 285, + nameLocale: 287, element: "Geo", weapon: "Catalyst", star: 4, @@ -2948,37 +2948,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 848, - skillName2: 1253, - skillName3: 490, + skillName1: 850, + skillName2: 1255, + skillName3: 492, skillMap1: [ - { index: 0, text: 927 }, + { index: 0, text: 929 }, - { index: 1, text: 1672 }, + { index: 1, text: 1674 }, - { index: 2, text: 820 }, + { index: 2, text: 822 }, - { index: 3, text: 86 }, + { index: 3, text: 88 }, - { index: 4, text: 174 }, + { index: 4, text: 176 }, - { index: 5, text: 1846 }, + { index: 5, text: 1848 }, ], skillMap2: [ - { index: 6, text: 676 }, + { index: 6, text: 678 }, ], skillMap3: [ - { index: 7, text: 1070 }, + { index: 7, text: 1072 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":503,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":505,"type":"float"}, ], configSkill: [ @@ -2988,7 +2988,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1575, + nameLocale: 1577, element: "Geo", weapon: "Claymore", star: 4, @@ -2996,42 +2996,42 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 898, - skillName2: 692, - skillName3: 487, + skillName1: 900, + skillName2: 694, + skillName3: 489, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, - { index: 10, text: 1095 }, + { index: 10, text: 1097 }, ], skillMap3: [ - { index: 11, text: 1195 }, + { index: 11, text: 1197 }, - { index: 12, text: 676 }, + { index: 12, text: 678 }, ], config: [ @@ -3046,7 +3046,7 @@ export default { Mika: { name: "Mika", - nameLocale: 1380, + nameLocale: 1382, element: "Cryo", weapon: "Polearm", star: 4, @@ -3054,44 +3054,44 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 901, - skillName2: 822, - skillName3: 1450, + skillName1: 903, + skillName2: 824, + skillName3: 1452, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 430 }, + { index: 3, text: 432 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 1793 }, + { index: 9, text: 1795 }, - { index: 10, text: 269 }, + { index: 10, text: 271 }, - { index: 11, text: 270 }, + { index: 11, text: 272 }, ], skillMap3: [ - { index: 12, text: 793 }, + { index: 12, text: 795 }, - { index: 13, text: 1861 }, + { index: 13, text: 1863 }, ], config: [ @@ -3104,7 +3104,7 @@ export default { Qiqi: { name: "Qiqi", - nameLocale: 66, + nameLocale: 68, element: "Cryo", weapon: "Sword", star: 5, @@ -3112,52 +3112,52 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 846, - skillName2: 160, - skillName3: 161, + skillName1: 848, + skillName2: 162, + skillName3: 163, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 427 }, + { index: 4, text: 429 }, - { index: 5, text: 428 }, + { index: 5, text: 430 }, - { index: 6, text: 143 }, + { index: 6, text: 145 }, - { index: 7, text: 1675 }, + { index: 7, text: 1677 }, { index: 8, text: 1680 }, - { index: 9, text: 86 }, + { index: 9, text: 88 }, - { index: 10, text: 174 }, + { index: 10, text: 176 }, - { index: 11, text: 1846 }, + { index: 11, text: 1848 }, ], skillMap2: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, - { index: 15, text: 568 }, + { index: 15, text: 570 }, { index: 13, text: 405 }, - { index: 14, text: 708 }, + { index: 14, text: 710 }, ], skillMap3: [ - { index: 16, text: 676 }, + { index: 16, text: 678 }, - { index: 17, text: 1095 }, + { index: 17, text: 1097 }, ], config: [ @@ -3170,7 +3170,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1779, + nameLocale: 1781, element: "Electro", weapon: "Polearm", star: 5, @@ -3178,64 +3178,64 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 914, - skillName2: 1336, - skillName3: 527, + skillName1: 916, + skillName2: 1338, + skillName3: 529, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 427 }, + { index: 3, text: 429 }, - { index: 4, text: 428 }, + { index: 4, text: 430 }, - { index: 5, text: 143 }, + { index: 5, text: 145 }, - { index: 6, text: 1672 }, + { index: 6, text: 1674 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 342 }, + { index: 11, text: 344 }, ], skillMap3: [ - { index: 12, text: 1055 }, + { index: 12, text: 1057 }, - { index: 13, text: 52 }, + { index: 13, text: 54 }, - { index: 14, text: 124 }, + { index: 14, text: 126 }, - { index: 15, text: 75 }, + { index: 15, text: 77 }, - { index: 16, text: 427 }, + { index: 16, text: 429 }, - { index: 17, text: 428 }, + { index: 17, text: 430 }, - { index: 18, text: 143 }, + { index: 18, text: 145 }, - { index: 19, text: 1675 }, + { index: 19, text: 1677 }, { index: 20, text: 1680 }, - { index: 21, text: 86 }, + { index: 21, text: 88 }, - { index: 22, text: 174 }, + { index: 22, text: 176 }, - { index: 23, text: 1846 }, + { index: 23, text: 1848 }, ], config: [ @@ -3243,16 +3243,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":470,"type":"bool"}, + {"default":true,"name":"under_e","title":472,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1574,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1576,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1773, + nameLocale: 1775, element: "Electro", weapon: "Claymore", star: 4, @@ -3260,55 +3260,55 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 908, - skillName2: 306, - skillName3: 1778, + skillName1: 910, + skillName2: 308, + skillName3: 1780, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 1176 }, + { index: 9, text: 1179 }, - { index: 10, text: 1713 }, + { index: 10, text: 1715 }, ], skillMap3: [ - { index: 11, text: 1195 }, + { index: 11, text: 1197 }, - { index: 12, text: 1210 }, + { index: 12, text: 1212 }, - { index: 13, text: 1212 }, + { index: 13, text: 1214 }, - { index: 14, text: 1211 }, + { index: 14, text: 1213 }, - { index: 15, text: 1213 }, + { index: 15, text: 1215 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1765,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1767,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":518,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":520,"type":"float"}, ], configSkill: [ @@ -3318,7 +3318,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1408, + nameLocale: 1410, element: "Cryo", weapon: "Polearm", star: 4, @@ -3326,51 +3326,51 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 867, - skillName2: 424, - skillName3: 1393, + skillName1: 869, + skillName2: 426, + skillName3: 1395, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 79 }, + { index: 2, text: 81 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 144 }, + { index: 4, text: 146 }, - { index: 5, text: 145 }, + { index: 5, text: 147 }, - { index: 6, text: 1672 }, + { index: 6, text: 1674 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 678 }, + { index: 10, text: 680 }, - { index: 11, text: 680 }, + { index: 11, text: 682 }, ], skillMap3: [ - { index: 12, text: 678 }, + { index: 12, text: 680 }, - { index: 13, text: 680 }, + { index: 13, text: 682 }, - { index: 14, text: 271 }, + { index: 14, text: 273 }, ], config: [ - {"default":true,"name":"e_from_behind","title":615,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":617,"type":"bool"}, ], configSkill: [ @@ -3380,7 +3380,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1229, + nameLocale: 1231, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3388,38 +3388,38 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 913, - skillName2: 1123, - skillName3: 1122, + skillName1: 915, + skillName2: 1125, + skillName3: 1124, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1672 }, + { index: 3, text: 1674 }, - { index: 4, text: 86 }, + { index: 4, text: 88 }, - { index: 5, text: 174 }, + { index: 5, text: 176 }, - { index: 6, text: 1846 }, + { index: 6, text: 1848 }, ], skillMap2: [ - { index: 8, text: 1101 }, + { index: 8, text: 1103 }, - { index: 7, text: 1096 }, + { index: 7, text: 1098 }, ], skillMap3: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, - { index: 10, text: 403 }, + { index: 10, text: 406 }, ], config: [ @@ -3434,7 +3434,7 @@ export default { Sayu: { name: "Sayu", - nameLocale: 811, + nameLocale: 813, element: "Anemo", weapon: "Claymore", star: 4, @@ -3442,66 +3442,66 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 860, - skillName2: 399, - skillName3: 398, + skillName1: 862, + skillName2: 401, + skillName3: 400, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1687 }, + { index: 5, text: 1689 }, - { index: 6, text: 1690 }, + { index: 6, text: 1692 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 1814 }, + { index: 10, text: 1816 }, - { index: 11, text: 1815 }, + { index: 11, text: 1817 }, - { index: 12, text: 1816 }, + { index: 12, text: 1818 }, - { index: 13, text: 1823 }, + { index: 13, text: 1825 }, - { index: 16, text: 1822 }, + { index: 16, text: 1824 }, - { index: 15, text: 1821 }, + { index: 15, text: 1823 }, - { index: 14, text: 1824 }, + { index: 14, text: 1826 }, - { index: 17, text: 1819 }, + { index: 17, text: 1821 }, - { index: 20, text: 1818 }, + { index: 20, text: 1820 }, - { index: 19, text: 1817 }, + { index: 19, text: 1819 }, - { index: 18, text: 1820 }, + { index: 18, text: 1822 }, ], skillMap3: [ - { index: 21, text: 687 }, + { index: 21, text: 689 }, - { index: 22, text: 688 }, + { index: 22, text: 690 }, - { index: 23, text: 87 }, + { index: 23, text: 89 }, - { index: 24, text: 88 }, + { index: 24, text: 90 }, ], config: [ @@ -3514,7 +3514,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1285, + nameLocale: 1287, element: "Cryo", weapon: "Polearm", star: 5, @@ -3522,44 +3522,44 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 915, - skillName2: 164, - skillName3: 1337, + skillName1: 917, + skillName2: 166, + skillName3: 1339, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 427 }, + { index: 3, text: 429 }, - { index: 4, text: 428 }, + { index: 4, text: 430 }, - { index: 5, text: 143 }, + { index: 5, text: 145 }, - { index: 6, text: 1672 }, + { index: 6, text: 1674 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 1177 }, + { index: 10, text: 1178 }, - { index: 11, text: 1713 }, + { index: 11, text: 1715 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, - { index: 13, text: 703 }, + { index: 13, text: 705 }, ], config: [ @@ -3572,7 +3572,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1862, + nameLocale: 1864, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3580,60 +3580,60 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 844, - skillName2: 324, - skillName3: 1432, + skillName1: 846, + skillName2: 326, + skillName3: 1434, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 427 }, + { index: 3, text: 429 }, - { index: 4, text: 428 }, + { index: 4, text: 430 }, - { index: 5, text: 429 }, + { index: 5, text: 431 }, - { index: 6, text: 425 }, + { index: 6, text: 427 }, - { index: 7, text: 143 }, + { index: 7, text: 145 }, - { index: 8, text: 1672 }, + { index: 8, text: 1674 }, - { index: 9, text: 86 }, + { index: 9, text: 88 }, - { index: 10, text: 174 }, + { index: 10, text: 176 }, - { index: 11, text: 1846 }, + { index: 11, text: 1848 }, ], skillMap2: [ - { index: 12, text: 677 }, + { index: 12, text: 679 }, - { index: 13, text: 679 }, + { index: 13, text: 681 }, - { index: 14, text: 681 }, + { index: 14, text: 683 }, - { index: 15, text: 682 }, + { index: 15, text: 684 }, - { index: 16, text: 683 }, + { index: 16, text: 685 }, ], skillMap3: [ - { index: 17, text: 89 }, + { index: 17, text: 91 }, - { index: 18, text: 1430 }, + { index: 18, text: 1432 }, - { index: 20, text: 1428 }, + { index: 20, text: 1430 }, - { index: 21, text: 1431 }, + { index: 21, text: 1433 }, - { index: 19, text: 1429 }, + { index: 19, text: 1431 }, ], config: [ @@ -3646,7 +3646,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1316, + nameLocale: 1318, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3654,44 +3654,44 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 891, - skillName2: 1810, - skillName3: 1365, + skillName1: 893, + skillName2: 1812, + skillName3: 1367, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1672 }, + { index: 4, text: 1674 }, - { index: 5, text: 86 }, + { index: 5, text: 88 }, - { index: 6, text: 174 }, + { index: 6, text: 176 }, - { index: 7, text: 1846 }, + { index: 7, text: 1848 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 678 }, ], skillMap3: [ - { index: 9, text: 703 }, + { index: 9, text: 705 }, - { index: 10, text: 1755 }, + { index: 10, text: 1757 }, - { index: 11, text: 1754 }, + { index: 11, text: 1756 }, - { index: 13, text: 1753 }, + { index: 13, text: 1755 }, - { index: 12, text: 1756 }, + { index: 12, text: 1758 }, ], config: [ @@ -3704,7 +3704,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1626, + nameLocale: 1628, element: "Hydro", weapon: "Bow", star: 5, @@ -3712,70 +3712,70 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 868, - skillName2: 1857, - skillName3: 1033, + skillName1: 870, + skillName2: 1859, + skillName3: 1035, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 251 }, + { index: 5, text: 253 }, - { index: 6, text: 1315 }, + { index: 6, text: 1317 }, - { index: 7, text: 1154 }, + { index: 7, text: 1156 }, - { index: 8, text: 768 }, + { index: 8, text: 770 }, - { index: 9, text: 767 }, + { index: 9, text: 769 }, - { index: 10, text: 86 }, + { index: 10, text: 88 }, - { index: 11, text: 174 }, + { index: 11, text: 176 }, - { index: 12, text: 1846 }, + { index: 12, text: 1848 }, ], skillMap2: [ - { index: 13, text: 1205 }, + { index: 13, text: 1207 }, - { index: 14, text: 52 }, + { index: 14, text: 54 }, - { index: 15, text: 124 }, + { index: 15, text: 126 }, - { index: 16, text: 75 }, + { index: 16, text: 77 }, - { index: 17, text: 425 }, + { index: 17, text: 427 }, - { index: 18, text: 143 }, + { index: 18, text: 145 }, - { index: 19, text: 252 }, + { index: 19, text: 254 }, - { index: 20, text: 253 }, + { index: 20, text: 255 }, - { index: 21, text: 1675 }, + { index: 21, text: 1677 }, { index: 22, text: 1680 }, - { index: 23, text: 765 }, + { index: 23, text: 767 }, ], skillMap3: [ - { index: 24, text: 685 }, + { index: 24, text: 687 }, - { index: 25, text: 686 }, + { index: 25, text: 688 }, - { index: 26, text: 766 }, + { index: 26, text: 768 }, ], config: [ @@ -3788,7 +3788,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 662, + nameLocale: 664, element: "Pyro", weapon: "Polearm", star: 4, @@ -3796,38 +3796,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 904, - skillName2: 1182, - skillName3: 1313, + skillName1: 906, + skillName2: 1184, + skillName3: 1315, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 79 }, + { index: 2, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 678 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 1179 }, + { index: 11, text: 1181 }, ], config: [ @@ -3840,7 +3840,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 714, + nameLocale: 716, element: "Dendro", weapon: "Bow", star: 5, @@ -3848,51 +3848,51 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 894, - skillName2: 1566, - skillName3: 1653, + skillName1: 896, + skillName2: 1568, + skillName3: 1655, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1315 }, + { index: 4, text: 1317 }, - { index: 5, text: 62 }, + { index: 5, text: 64 }, - { index: 6, text: 1445 }, + { index: 6, text: 1447 }, - { index: 7, text: 1504 }, + { index: 7, text: 1506 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, ], skillMap3: [ - { index: 12, text: 1407 }, + { index: 12, text: 1409 }, - { index: 13, text: 1059 }, + { index: 13, text: 1061 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":514,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":516,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":407,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":409,"type":"float"}, ], configSkill: [ @@ -3902,7 +3902,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1139, + nameLocale: 1141, element: "Anemo", weapon: "Bow", star: 5, @@ -3910,56 +3910,56 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 887, - skillName2: 1845, - skillName3: 1811, + skillName1: 889, + skillName2: 1847, + skillName3: 1813, skillMap1: [ - { index: 0, text: 53 }, + { index: 0, text: 55 }, - { index: 1, text: 54 }, + { index: 1, text: 56 }, - { index: 3, text: 124 }, + { index: 3, text: 126 }, - { index: 4, text: 75 }, + { index: 4, text: 77 }, - { index: 5, text: 427 }, + { index: 5, text: 429 }, - { index: 6, text: 428 }, + { index: 6, text: 430 }, - { index: 8, text: 143 }, + { index: 8, text: 145 }, - { index: 9, text: 251 }, + { index: 9, text: 253 }, - { index: 10, text: 1315 }, + { index: 10, text: 1317 }, - { index: 11, text: 1154 }, + { index: 11, text: 1156 }, - { index: 12, text: 86 }, + { index: 12, text: 88 }, - { index: 13, text: 174 }, + { index: 13, text: 176 }, - { index: 14, text: 1846 }, + { index: 14, text: 1848 }, ], skillMap2: [ - { index: 15, text: 1174 }, + { index: 15, text: 1177 }, - { index: 16, text: 1712 }, + { index: 16, text: 1714 }, ], skillMap3: [ - { index: 17, text: 703 }, + { index: 17, text: 705 }, - { index: 18, text: 1755 }, + { index: 18, text: 1757 }, - { index: 20, text: 1754 }, + { index: 20, text: 1756 }, - { index: 21, text: 1753 }, + { index: 21, text: 1755 }, - { index: 19, text: 1756 }, + { index: 19, text: 1758 }, ], config: [ @@ -3972,7 +3972,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1114, + nameLocale: 1116, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3980,65 +3980,65 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 895, - skillName2: 1417, - skillName3: 1206, + skillName1: 897, + skillName2: 1419, + skillName3: 1208, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 78 }, + { index: 2, text: 80 }, - { index: 3, text: 56 }, + { index: 3, text: 58 }, - { index: 4, text: 127 }, + { index: 4, text: 129 }, - { index: 5, text: 80 }, + { index: 5, text: 82 }, - { index: 6, text: 1672 }, + { index: 6, text: 1674 }, - { index: 7, text: 28 }, + { index: 7, text: 29 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, ], skillMap3: [ - { index: 12, text: 684 }, + { index: 12, text: 686 }, ], config: [ - {"default":false,"name":"e_pyro","title":27,"type":"bool"}, + {"default":false,"name":"e_pyro","title":28,"type":"bool"}, - {"default":false,"name":"e_cryo","title":25,"type":"bool"}, + {"default":false,"name":"e_cryo","title":26,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"e_enabled","title":462,"type":"bool"}, + {"default":true,"name":"e_enabled","title":464,"type":"bool"}, - {"default":false,"name":"e_hydro","title":26,"type":"bool"}, + {"default":false,"name":"e_hydro","title":27,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1375,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1377,"type":"float"}, ], }, Wriothesley: { name: "Wriothesley", - nameLocale: 1471, + nameLocale: 1473, element: "Cryo", weapon: "Catalyst", star: 5, @@ -4046,30 +4046,30 @@ export default { // avatar: Wriothesley_avatar, avatar: getName("Wriothesley"), splash: Wriothesley_splash, - skillName1: 903, - skillName2: 275, - skillName3: 1882, + skillName1: 905, + skillName2: 277, + skillName3: 1884, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 430 }, + { index: 3, text: 432 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 649 }, + { index: 6, text: 651 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ @@ -4077,24 +4077,26 @@ export default { ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 678 }, - { index: 11, text: 1116 }, + { index: 11, text: 1118 }, ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"talent2_stack","title":30,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"talent2_stack","title":31,"type":"float"}, ], configSkill: [ + {"default":true,"name":"under_chilling_penalty","title":25,"type":"bool"}, + ], }, Xiangling: { name: "Xiangling", - nameLocale: 1836, + nameLocale: 1838, element: "Pyro", weapon: "Polearm", star: 4, @@ -4102,46 +4104,46 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 884, - skillName2: 1710, - skillName3: 799, + skillName1: 886, + skillName2: 1712, + skillName3: 801, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 5, text: 432 }, + { index: 5, text: 434 }, - { index: 7, text: 143 }, + { index: 7, text: 145 }, - { index: 8, text: 1672 }, + { index: 8, text: 1674 }, - { index: 9, text: 86 }, + { index: 9, text: 88 }, - { index: 10, text: 174 }, + { index: 10, text: 176 }, - { index: 11, text: 1846 }, + { index: 11, text: 1848 }, ], skillMap2: [ - { index: 12, text: 421 }, + { index: 12, text: 423 }, ], skillMap3: [ - { index: 13, text: 57 }, + { index: 13, text: 59 }, - { index: 14, text: 128 }, + { index: 14, text: 130 }, - { index: 15, text: 81 }, + { index: 15, text: 83 }, - { index: 16, text: 800 }, + { index: 16, text: 802 }, ], config: [ @@ -4154,7 +4156,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1848, + nameLocale: 1850, element: "Anemo", weapon: "Polearm", star: 5, @@ -4162,39 +4164,39 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 849, - skillName2: 1813, - skillName3: 1795, + skillName1: 851, + skillName2: 1815, + skillName3: 1797, skillMap1: [ - { index: 0, text: 53 }, + { index: 0, text: 55 }, - { index: 1, text: 54 }, + { index: 1, text: 56 }, - { index: 3, text: 124 }, + { index: 3, text: 126 }, - { index: 4, text: 75 }, + { index: 4, text: 77 }, - { index: 5, text: 427 }, + { index: 5, text: 429 }, - { index: 6, text: 428 }, + { index: 6, text: 430 }, - { index: 8, text: 143 }, + { index: 8, text: 145 }, - { index: 9, text: 251 }, + { index: 9, text: 253 }, - { index: 10, text: 1672 }, + { index: 10, text: 1674 }, - { index: 11, text: 86 }, + { index: 11, text: 88 }, - { index: 12, text: 174 }, + { index: 12, text: 176 }, - { index: 13, text: 1846 }, + { index: 13, text: 1848 }, ], skillMap2: [ - { index: 14, text: 676 }, + { index: 14, text: 678 }, ], skillMap3: [ @@ -4205,18 +4207,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1795,"type":"bool"}, + {"default":true,"name":"after_q","title":1797,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":517,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":519,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":505,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":507,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1510, + nameLocale: 1512, element: "Hydro", weapon: "Sword", star: 4, @@ -4224,46 +4226,46 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 850, - skillName2: 371, - skillName3: 372, + skillName1: 852, + skillName2: 373, + skillName3: 374, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 5, text: 425 }, + { index: 5, text: 427 }, - { index: 6, text: 144 }, + { index: 6, text: 146 }, - { index: 7, text: 145 }, + { index: 7, text: 147 }, - { index: 9, text: 1675 }, + { index: 9, text: 1677 }, { index: 10, text: 1680 }, - { index: 12, text: 86 }, + { index: 12, text: 88 }, - { index: 13, text: 174 }, + { index: 13, text: 176 }, - { index: 14, text: 1846 }, + { index: 14, text: 1848 }, ], skillMap2: [ - { index: 15, text: 678 }, + { index: 15, text: 680 }, - { index: 16, text: 680 }, + { index: 16, text: 682 }, ], skillMap3: [ - { index: 17, text: 313 }, + { index: 17, text: 315 }, ], config: [ @@ -4271,14 +4273,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":614,"type":"bool"}, + {"default":false,"name":"c4","title":616,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1617, + nameLocale: 1619, element: "Pyro", weapon: "Claymore", star: 4, @@ -4286,42 +4288,42 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 879, - skillName2: 1186, - skillName3: 368, + skillName1: 881, + skillName2: 1188, + skillName3: 370, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 1687 }, + { index: 4, text: 1689 }, - { index: 5, text: 1690 }, + { index: 5, text: 1692 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 711 }, + { index: 9, text: 713 }, - { index: 10, text: 703 }, + { index: 10, text: 705 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, - { index: 12, text: 1161 }, + { index: 12, text: 1163 }, ], config: [ @@ -4329,14 +4331,14 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":37,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":38,"type":"float"}, ], }, YaeMiko: { name: "YaeMiko", - nameLocale: 241, + nameLocale: 243, element: "Electro", weapon: "Catalyst", star: 5, @@ -4344,42 +4346,42 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 882, - skillName2: 1694, - skillName3: 486, + skillName1: 884, + skillName2: 1696, + skillName3: 488, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1672 }, + { index: 3, text: 1674 }, - { index: 4, text: 86 }, + { index: 4, text: 88 }, - { index: 5, text: 174 }, + { index: 5, text: 176 }, - { index: 6, text: 1846 }, + { index: 6, text: 1848 }, ], skillMap2: [ - { index: 7, text: 1026 }, + { index: 7, text: 1028 }, - { index: 8, text: 1028 }, + { index: 8, text: 1030 }, - { index: 9, text: 1025 }, + { index: 9, text: 1027 }, - { index: 10, text: 1027 }, + { index: 10, text: 1029 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, - { index: 12, text: 491 }, + { index: 12, text: 493 }, ], config: [ @@ -4392,7 +4394,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1184, + nameLocale: 1186, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4400,44 +4402,44 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 877, - skillName2: 96, - skillName3: 291, + skillName1: 879, + skillName2: 98, + skillName3: 293, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 1670 }, + { index: 3, text: 1672 }, - { index: 4, text: 1666 }, + { index: 4, text: 1668 }, - { index: 5, text: 1667 }, + { index: 5, text: 1669 }, - { index: 6, text: 1668 }, + { index: 6, text: 1670 }, - { index: 7, text: 1669 }, + { index: 7, text: 1671 }, - { index: 8, text: 502 }, + { index: 8, text: 504 }, - { index: 9, text: 86 }, + { index: 9, text: 88 }, - { index: 10, text: 174 }, + { index: 10, text: 176 }, - { index: 11, text: 1846 }, + { index: 11, text: 1848 }, ], skillMap2: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 678 }, ], config: [ @@ -4445,14 +4447,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1172,"type":"bool"}, + {"default":true,"name":"after_q","title":1174,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1252, + nameLocale: 1254, element: "Dendro", weapon: "Polearm", star: 4, @@ -4460,49 +4462,49 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 909, - skillName2: 135, - skillName3: 1225, + skillName1: 911, + skillName2: 137, + skillName3: 1227, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1672 }, + { index: 5, text: 1674 }, - { index: 6, text: 86 }, + { index: 6, text: 88 }, - { index: 7, text: 174 }, + { index: 7, text: 176 }, - { index: 8, text: 1846 }, + { index: 8, text: 1848 }, ], skillMap2: [ - { index: 9, text: 1304 }, + { index: 9, text: 1306 }, - { index: 10, text: 1305 }, + { index: 10, text: 1307 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, - { index: 12, text: 1051 }, + { index: 12, text: 1053 }, - { index: 13, text: 1052 }, + { index: 13, text: 1054 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":412,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":414,"type":"float"}, ], configSkill: [ @@ -4512,7 +4514,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 479, + nameLocale: 481, element: "Hydro", weapon: "Bow", star: 5, @@ -4520,47 +4522,47 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 876, - skillName2: 1494, - skillName3: 1131, + skillName1: 878, + skillName2: 1496, + skillName3: 1133, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 430 }, + { index: 3, text: 432 }, - { index: 4, text: 1315 }, + { index: 4, text: 1317 }, - { index: 5, text: 1154 }, + { index: 5, text: 1156 }, - { index: 6, text: 1326 }, + { index: 6, text: 1328 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 678 }, - { index: 13, text: 1224 }, + { index: 13, text: 1226 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1717,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1719,"type":"int"}, ], configSkill: [ @@ -4570,7 +4572,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 564, + nameLocale: 566, element: "Pyro", weapon: "Bow", star: 5, @@ -4578,32 +4580,32 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 880, - skillName2: 1190, - skillName3: 1242, + skillName1: 882, + skillName2: 1192, + skillName3: 1244, skillMap1: [ - { index: 0, text: 55 }, + { index: 0, text: 57 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 430 }, + { index: 3, text: 432 }, - { index: 4, text: 143 }, + { index: 4, text: 145 }, - { index: 5, text: 1315 }, + { index: 5, text: 1317 }, - { index: 6, text: 1154 }, + { index: 6, text: 1156 }, - { index: 7, text: 1191 }, + { index: 7, text: 1193 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ @@ -4611,26 +4613,26 @@ export default { ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 678 }, - { index: 12, text: 1243 }, + { index: 12, text: 1245 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":515,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":517,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":619,"type":"bool"}, + {"default":true,"name":"after_e","title":621,"type":"bool"}, ], }, Yunjin: { name: "Yunjin", - nameLocale: 136, + nameLocale: 138, element: "Geo", weapon: "Polearm", star: 4, @@ -4638,46 +4640,46 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 864, - skillName2: 798, - skillName3: 1327, + skillName1: 866, + skillName2: 800, + skillName3: 1329, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 427 }, + { index: 4, text: 429 }, - { index: 5, text: 428 }, + { index: 5, text: 430 }, - { index: 6, text: 143 }, + { index: 6, text: 145 }, - { index: 7, text: 1672 }, + { index: 7, text: 1674 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 1175 }, + { index: 11, text: 1176 }, - { index: 12, text: 59 }, + { index: 12, text: 61 }, - { index: 13, text: 130 }, + { index: 13, text: 132 }, ], skillMap3: [ - { index: 14, text: 676 }, + { index: 14, text: 678 }, ], config: [ @@ -4690,7 +4692,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1700, + nameLocale: 1702, element: "Geo", weapon: "Polearm", star: 5, @@ -4698,44 +4700,44 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 855, - skillName2: 442, - skillName3: 489, + skillName1: 857, + skillName2: 444, + skillName3: 491, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 75 }, + { index: 2, text: 77 }, - { index: 3, text: 425 }, + { index: 3, text: 427 }, - { index: 4, text: 147 }, + { index: 4, text: 149 }, - { index: 5, text: 251 }, + { index: 5, text: 253 }, - { index: 6, text: 1672 }, + { index: 6, text: 1674 }, - { index: 7, text: 86 }, + { index: 7, text: 88 }, - { index: 8, text: 174 }, + { index: 8, text: 176 }, - { index: 9, text: 1846 }, + { index: 9, text: 1848 }, ], skillMap2: [ - { index: 10, text: 593 }, + { index: 10, text: 595 }, - { index: 11, text: 255 }, + { index: 11, text: 257 }, - { index: 12, text: 1712 }, + { index: 12, text: 1714 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 678 }, ], config: [ @@ -4748,7 +4750,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1403, + nameLocale: 1405, element: "Dendro", weapon: "Sword", star: 4, @@ -4756,48 +4758,48 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 892, - skillName2: 400, - skillName3: 1368, + skillName1: 894, + skillName2: 402, + skillName3: 1370, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 54 }, - { index: 1, text: 124 }, + { index: 1, text: 126 }, - { index: 2, text: 76 }, + { index: 2, text: 78 }, - { index: 3, text: 77 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 427 }, - { index: 5, text: 1674 }, + { index: 5, text: 1678 }, - { index: 6, text: 1678 }, + { index: 6, text: 1681 }, - { index: 7, text: 1681 }, + { index: 7, text: 1683 }, - { index: 8, text: 86 }, + { index: 8, text: 88 }, - { index: 9, text: 174 }, + { index: 9, text: 176 }, - { index: 10, text: 1846 }, + { index: 10, text: 1848 }, ], skillMap2: [ - { index: 11, text: 1283 }, + { index: 11, text: 1285 }, - { index: 12, text: 1222 }, + { index: 12, text: 1224 }, - { index: 13, text: 1425 }, + { index: 13, text: 1427 }, ], skillMap3: [ - { index: 14, text: 676 }, + { index: 14, text: 678 }, - { index: 15, text: 1223 }, + { index: 15, text: 1225 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index 65ef8517..60fde18f 100644 --- a/src/assets/_gen_pf.js +++ b/src/assets/_gen_pf.js @@ -12,45 +12,45 @@ export default { badge: ArtifactEff_image, config: [ - {"default":false,"name":"atk_use","title":730,"type":"bool"}, + {"default":false,"name":"atk_use","title":732,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":731,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":733,"type":"float"}, - {"default":true,"name":"atk_p_use","title":722,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":724,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":723,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":725,"type":"float"}, - {"default":false,"name":"hp_use","title":1277,"type":"bool"}, + {"default":false,"name":"hp_use","title":1279,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1278,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1280,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1262,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1264,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1263,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1265,"type":"float"}, - {"default":false,"name":"def_use","title":1741,"type":"bool"}, + {"default":false,"name":"def_use","title":1743,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1744,"type":"float"}, - {"default":false,"name":"def_p_use","title":1736,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1738,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1737,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1739,"type":"float"}, - {"default":true,"name":"critical_use","title":995,"type":"bool"}, + {"default":true,"name":"critical_use","title":997,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":996,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":998,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":989,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":991,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":990,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":992,"type":"float"}, - {"default":false,"name":"elemental_mastery_use","title":234,"type":"bool"}, + {"default":false,"name":"elemental_mastery_use","title":236,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":235,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":237,"type":"float"}, - {"default":false,"name":"recharge_use","title":193,"type":"bool"}, + {"default":false,"name":"recharge_use","title":195,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":194,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":196,"type":"float"}, ], }, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 2245edd9..4a8b945c 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -212,8 +212,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 1011, - description: 1008, + nameLocale: 1013, + description: 1010, tags: [ "攻击", @@ -230,8 +230,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 1016, - description: 1010, + nameLocale: 1018, + description: 1012, tags: [ "防御", @@ -248,8 +248,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 1013, - description: 1009, + nameLocale: 1015, + description: 1011, tags: [ "生命", @@ -266,8 +266,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 1002, - description: 1006, + nameLocale: 1004, + description: 1008, tags: [ "元素精通", @@ -284,8 +284,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 1003, - description: 1005, + nameLocale: 1005, + description: 1007, tags: [ "", @@ -302,8 +302,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1158, - description: 1159, + nameLocale: 1160, + description: 1161, tags: [ "输出", @@ -315,15 +315,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 265, - description: 266, + nameLocale: 267, + description: 268, tags: [ "输出", @@ -335,15 +335,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1075, - description: 1076, + nameLocale: 1077, + description: 1078, tags: [ "输出", @@ -355,15 +355,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1767, - description: 1768, + nameLocale: 1769, + description: 1770, tags: [ "输出", @@ -375,15 +375,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1803, - description: 1805, + nameLocale: 1805, + description: 1807, tags: [ "输出", @@ -395,15 +395,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1454, - description: 1455, + nameLocale: 1456, + description: 1457, tags: [ "", @@ -415,15 +415,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 590, - description: 591, + nameLocale: 592, + description: 593, tags: [ "输出", @@ -435,15 +435,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1201, - description: 1202, + nameLocale: 1203, + description: 1204, tags: [ "输出", @@ -455,15 +455,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1385,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 1014, - description: 180, + nameLocale: 1016, + description: 182, tags: [ "输出", @@ -475,17 +475,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1555,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":677,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 1015, - description: 182, + nameLocale: 1017, + description: 184, tags: [ "输出", @@ -497,17 +497,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1555,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":677,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 1023, - description: 181, + nameLocale: 1025, + description: 183, tags: [ "输出", @@ -519,17 +519,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1555,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":677,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 1024, - description: 183, + nameLocale: 1026, + description: 185, tags: [ "输出", @@ -541,17 +541,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1555,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":677,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1749, - description: 839, + nameLocale: 1751, + description: 841, tags: [ "输出", @@ -568,8 +568,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 454, - description: 960, + nameLocale: 456, + description: 962, tags: [ "输出", @@ -586,8 +586,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 551, - description: 963, + nameLocale: 553, + description: 965, tags: [ "输出", @@ -604,8 +604,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1458, - description: 1460, + nameLocale: 1460, + description: 1462, tags: [ "输出", @@ -622,8 +622,8 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1443, - description: 179, + nameLocale: 1445, + description: 181, tags: [ "治疗", @@ -642,8 +642,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 327, - description: 840, + nameLocale: 329, + description: 842, tags: [ "输出", @@ -660,8 +660,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1237, - description: 836, + nameLocale: 1239, + description: 838, tags: [ "辅助", @@ -677,17 +677,17 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":159,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":161,"type":"float"}, ], }, "BennettDefault": { name: "BennettDefault", - nameLocale: 1238, - description: 951, + nameLocale: 1240, + description: 953, tags: [ "辅助", @@ -699,15 +699,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1664, - description: 838, + nameLocale: 1666, + description: 840, tags: [ "副C", @@ -726,8 +726,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1633, - description: 977, + nameLocale: 1635, + description: 979, tags: [ "输出", @@ -739,17 +739,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1501,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1636, - description: 944, + nameLocale: 1638, + description: 946, tags: [ "治疗", @@ -763,15 +763,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "EulaDefault": { name: "EulaDefault", - nameLocale: 169, - description: 832, + nameLocale: 171, + description: 834, tags: [ "输出", @@ -788,8 +788,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1493, - description: 833, + nameLocale: 1495, + description: 835, tags: [ "输出", @@ -806,8 +806,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1257, - description: 972, + nameLocale: 1259, + description: 974, tags: [ "输出", @@ -819,15 +819,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, ], }, "GorouDefault": { name: "GorouDefault", - nameLocale: 153, - description: 842, + nameLocale: 155, + description: 844, tags: [ "辅助", @@ -839,15 +839,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1435, - description: 956, + nameLocale: 1437, + description: 958, tags: [ "输出", @@ -859,17 +859,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1501,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1249, - description: 834, + nameLocale: 1251, + description: 836, tags: [ "副C", @@ -883,17 +883,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1091,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1093,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 1040, - description: 967, + nameLocale: 1042, + description: 969, tags: [ "输出", @@ -907,19 +907,19 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":672,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":674,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":159,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":161,"type":"float"}, ], }, "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 1039, - description: 950, + nameLocale: 1041, + description: 952, tags: [ "辅助", @@ -931,15 +931,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 293, - description: 835, + nameLocale: 295, + description: 837, tags: [ "输出", @@ -956,8 +956,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1352, - description: 831, + nameLocale: 1354, + description: 833, tags: [ "输出", @@ -969,15 +969,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1350, - description: 1022, + nameLocale: 1352, + description: 1024, tags: [ "输出", @@ -994,8 +994,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1346, - description: 943, + nameLocale: 1348, + description: 945, tags: [ "输出", @@ -1012,8 +1012,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 309, - description: 981, + nameLocale: 311, + description: 983, tags: [ "输出", @@ -1025,15 +1025,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1596,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1598,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 377, - description: 380, + nameLocale: 379, + description: 382, tags: [ "输出", @@ -1045,15 +1045,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "KujouSaraDamage": { name: "KujouSaraDamage", - nameLocale: 109, - description: 314, + nameLocale: 111, + description: 316, tags: [ "输出", @@ -1067,15 +1067,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "KujouSaraDefault": { name: "KujouSaraDefault", - nameLocale: 110, - description: 982, + nameLocale: 112, + description: 984, tags: [ "辅助", @@ -1092,8 +1092,8 @@ export default { "LisaDefault": { name: "LisaDefault", - nameLocale: 100, - description: 957, + nameLocale: 102, + description: 959, tags: [ "输出", @@ -1105,15 +1105,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1467, - description: 973, + nameLocale: 1469, + description: 975, tags: [ "输出", @@ -1127,15 +1127,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "NingguangDefault": { name: "NingguangDefault", - nameLocale: 287, - description: 958, + nameLocale: 289, + description: 960, tags: [ "输出", @@ -1152,8 +1152,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1576, - description: 975, + nameLocale: 1578, + description: 977, tags: [ "输出", @@ -1170,8 +1170,8 @@ export default { "QiqiDefault": { name: "QiqiDefault", - nameLocale: 67, - description: 946, + nameLocale: 69, + description: 948, tags: [ "治疗", @@ -1183,15 +1183,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1782, - description: 979, + nameLocale: 1784, + description: 981, tags: [ "输出", @@ -1203,15 +1203,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1775, - description: 971, + nameLocale: 1777, + description: 973, tags: [ "输出", @@ -1228,8 +1228,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1411, - description: 954, + nameLocale: 1413, + description: 956, tags: [ "辅助", @@ -1248,8 +1248,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1230, - description: 965, + nameLocale: 1232, + description: 967, tags: [ "输出", @@ -1268,8 +1268,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 812, - description: 959, + nameLocale: 814, + description: 961, tags: [ "输出", @@ -1283,15 +1283,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1290, - description: 952, + nameLocale: 1292, + description: 954, tags: [ "辅助", @@ -1303,15 +1303,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1320, - description: 953, + nameLocale: 1322, + description: 955, tags: [ "辅助", @@ -1323,15 +1323,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1627, - description: 976, + nameLocale: 1629, + description: 978, tags: [ "输出", @@ -1348,8 +1348,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 665, - description: 949, + nameLocale: 667, + description: 951, tags: [ "辅助", @@ -1361,15 +1361,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1142, - description: 968, + nameLocale: 1144, + description: 970, tags: [ "输出", @@ -1381,15 +1381,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":669,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":671,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1840, - description: 969, + nameLocale: 1842, + description: 971, tags: [ "输出", @@ -1401,21 +1401,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1501,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1602,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1604,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1849, - description: 980, + nameLocale: 1851, + description: 982, tags: [ "输出", @@ -1432,8 +1432,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1512, - description: 837, + nameLocale: 1514, + description: 839, tags: [ "输出", @@ -1445,15 +1445,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1621, - description: 948, + nameLocale: 1623, + description: 950, tags: [ "输出", @@ -1470,8 +1470,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1620, - description: 955, + nameLocale: 1622, + description: 957, tags: [ "辅助", @@ -1483,17 +1483,17 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":173,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":175,"type":"float"}, ], }, "YaeMikoDefault": { name: "YaeMikoDefault", - nameLocale: 243, - description: 710, + nameLocale: 245, + description: 712, tags: [ "输出", @@ -1505,21 +1505,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":237,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":239,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1629,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1631,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1596,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1598,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1597,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1599,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1185, - description: 970, + nameLocale: 1187, + description: 972, tags: [ "输出", @@ -1536,8 +1536,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 482, - description: 961, + nameLocale: 484, + description: 963, tags: [ "输出", @@ -1549,17 +1549,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1501,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 566, - description: 964, + nameLocale: 568, + description: 966, tags: [ "输出", @@ -1571,17 +1571,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1501,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, ], }, "YunjinDefault": { name: "YunjinDefault", - nameLocale: 139, - description: 841, + nameLocale: 141, + description: 843, tags: [ "辅助", @@ -1593,15 +1593,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1702, - description: 947, + nameLocale: 1704, + description: 949, tags: [ "爆发", @@ -1613,15 +1613,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "KukiShinobuDefault": { name: "KukiShinobuDefault", - nameLocale: 103, - description: 1615, + nameLocale: 105, + description: 1617, tags: [ "辅助", @@ -1640,8 +1640,8 @@ export default { "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1864, - description: 1616, + nameLocale: 1866, + description: 1618, tags: [ "输出", @@ -1658,8 +1658,8 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 716, - description: 177, + nameLocale: 718, + description: 179, tags: [ "", @@ -1671,15 +1671,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1501,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1503,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1592, - description: 661, + nameLocale: 1594, + description: 663, tags: [ "输出", @@ -1691,27 +1691,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":237,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":239,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1629,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1631,"type":"option"}, {"default":false,"name":"until_expire","title":19,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1596,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1598,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":652,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":654,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1601,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1603,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1597,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1599,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 534, - description: 962, + nameLocale: 536, + description: 964, tags: [ "", @@ -1723,23 +1723,23 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":203,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":205,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":221,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":223,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1406,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1408,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1732,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1734,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1733,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1735,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1391, - description: 184, + nameLocale: 1393, + description: 186, tags: [ "输出", @@ -1751,23 +1751,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1385,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1387,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1501,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1503,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1406,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1408,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1194,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1196,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1163,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1165,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1115, - description: 1561, + nameLocale: 1117, + description: 1563, tags: [ "输出", @@ -1779,29 +1779,29 @@ export default { config: [ - {"default":false,"name":"e_hydro","title":26,"type":"bool"}, + {"default":false,"name":"e_hydro","title":27,"type":"bool"}, - {"default":false,"name":"e_pyro","title":27,"type":"bool"}, + {"default":false,"name":"e_pyro","title":28,"type":"bool"}, - {"default":false,"name":"e_cryo","title":25,"type":"bool"}, + {"default":false,"name":"e_cryo","title":26,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1802,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1804,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":740,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":742,"type":"float"}, - {"default":3,"max":12,"min":0,"name":"dash_count","title":29,"type":"int"}, + {"default":3,"max":12,"min":0,"name":"dash_count","title":30,"type":"int"}, {"default":5,"max":5,"min":0,"name":"q_count","title":14,"type":"int"}, - {"default":12,"max":24,"min":0,"name":"swirl_count","title":671,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":673,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1232, - description: 178, + nameLocale: 1234, + description: 180, tags: [ "", @@ -1813,15 +1813,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":239,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1441, - description: 163, + nameLocale: 1443, + description: 165, tags: [ "", @@ -1833,21 +1833,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1688,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1690,"type":"float"}, - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":214,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":216,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":223,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":225,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1501,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1503,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1639, - description: 978, + nameLocale: 1641, + description: 980, tags: [ "输出", @@ -1859,19 +1859,19 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1501,"type":"float"}, - {"default":6,"max":20,"min":0,"name":"e_count","title":95,"type":"int"}, + {"default":6,"max":20,"min":0,"name":"e_count","title":97,"type":"int"}, ], }, "MikaDefault": { name: "MikaDefault", - nameLocale: 1382, - description: 945, + nameLocale: 1384, + description: 947, tags: [ "治疗", @@ -1885,17 +1885,17 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":240,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":997,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":999,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1491, - description: 974, + nameLocale: 1493, + description: 976, tags: [ "", @@ -1912,8 +1912,8 @@ export default { "LyneyDefault": { name: "LyneyDefault", - nameLocale: 1035, - description: 966, + nameLocale: 1037, + description: 968, tags: [ "", @@ -1930,8 +1930,8 @@ export default { "NeuvilletteDefault": { name: "NeuvilletteDefault", - nameLocale: 1659, - description: 1660, + nameLocale: 1661, + description: 1662, tags: [ "", @@ -1948,8 +1948,8 @@ export default { "WriothesleyDefault": { name: "WriothesleyDefault", - nameLocale: 1472, - description: 1007, + nameLocale: 1474, + description: 1009, tags: [ "", @@ -1961,6 +1961,10 @@ export default { config: [ + {"default":0.5,"max":5.0,"min":0.0,"name":"punch_ratio","title":50,"type":"float"}, + + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1509,"type":"float"}, + ], }, diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 2083e7ce..891c89fd 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -358,18 +358,18 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1788, + nameLocale: 1790, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1481, + effect: 1483, configs: [ - {"default":3,"max":3,"min":0,"name":"emblem_level","title":47,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"emblem_level","title":48,"type":"int"}, ], @@ -378,13 +378,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1825, + nameLocale: 1827, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 728, + effect: 730, configs: null, @@ -394,20 +394,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 763, + nameLocale: 765, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 695, + effect: 697, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":697,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":700,"type":"float"}, ], @@ -416,13 +416,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 497, + nameLocale: 499, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 992, + effect: 994, configs: null, @@ -432,18 +432,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1447, + nameLocale: 1449, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1828, + effect: 1830, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -452,13 +452,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1330, + nameLocale: 1332, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1276, + effect: 1278, configs: null, @@ -468,13 +468,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1373, + nameLocale: 1375, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 937, + effect: 939, configs: null, @@ -484,13 +484,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1875, + nameLocale: 1877, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 923, + effect: 925, configs: null, @@ -500,18 +500,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 985, + nameLocale: 987, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1550, + effect: 1552, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -520,7 +520,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1757, + nameLocale: 1759, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -536,13 +536,13 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1359, + nameLocale: 1361, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", - effect: 215, + effect: 217, configs: null, @@ -552,13 +552,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 560, + nameLocale: 562, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 738, + effect: 740, configs: null, @@ -568,18 +568,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1568, + nameLocale: 1570, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 938, + effect: 940, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -588,13 +588,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 495, + nameLocale: 497, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 778, + effect: 780, configs: null, @@ -604,18 +604,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 331, + nameLocale: 333, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 577, + effect: 579, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -624,18 +624,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1708, + nameLocale: 1710, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1649, + effect: 1651, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -644,13 +644,13 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1437, + nameLocale: 1439, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", - effect: 217, + effect: 219, configs: null, @@ -660,13 +660,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1535, + nameLocale: 1537, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 739, + effect: 741, configs: null, @@ -676,18 +676,18 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1624, + nameLocale: 1626, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", - effect: 216, + effect: 218, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -696,18 +696,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1880, + nameLocale: 1882, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 297, + effect: 299, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -716,18 +716,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1874, + nameLocale: 1876, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1279, + effect: 1281, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -736,13 +736,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 381, + nameLocale: 383, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 734, + effect: 736, configs: null, @@ -752,18 +752,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1830, + nameLocale: 1832, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 787, + effect: 789, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -772,18 +772,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 986, + nameLocale: 988, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1560, + effect: 1562, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -792,18 +792,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 280, + nameLocale: 282, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 570, + effect: 572, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -812,13 +812,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 796, + nameLocale: 798, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1487, + effect: 1489, configs: null, @@ -828,7 +828,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1709, + nameLocale: 1711, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -842,7 +842,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 810, + nameLocale: 812, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -856,18 +856,18 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1100, + nameLocale: 1102, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1483, + effect: 1485, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":31,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":32,"type":"float"}, ], @@ -876,18 +876,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1374, + nameLocale: 1376, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 917, + effect: 919, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -896,7 +896,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 351, + nameLocale: 353, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -905,7 +905,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -914,18 +914,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1533, + nameLocale: 1535, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1069, + effect: 1071, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -934,18 +934,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 440, + nameLocale: 442, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1274, + effect: 1276, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -954,18 +954,18 @@ export default { ToukabouShigure: { name: "ToukabouShigure", internalName: "Sword_Kasabouzu", - nameLocale: 94, + nameLocale: 96, star: 4, url: imageUrl("Sword_Kasabouzu"), type: "Sword", - effect: 733, + effect: 735, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -974,7 +974,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1524, + nameLocale: 1526, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -983,7 +983,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -992,20 +992,20 @@ export default { WolfFang: { name: "WolfFang", internalName: "Sword_Boreas", - nameLocale: 1207, + nameLocale: 1209, star: 4, url: imageUrl("Sword_Boreas"), type: "Sword", - effect: 202, + effect: 204, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":204,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":206,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":222,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":224,"type":"float"}, ], @@ -1014,20 +1014,20 @@ export default { FinaleOfTheDeep: { name: "FinaleOfTheDeep", internalName: "Sword_Vorpal", - nameLocale: 1126, + nameLocale: 1128, star: 4, url: imageUrl("Sword_Vorpal"), type: "Sword", - effect: 783, + effect: 785, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":746,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":748,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":747,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":750,"type":"float"}, ], @@ -1036,18 +1036,18 @@ export default { FleuveCendreFerryman: { name: "FleuveCendreFerryman", internalName: "Sword_Machination", - nameLocale: 1165, + nameLocale: 1167, star: 4, url: imageUrl("Sword_Machination"), type: "Sword", - effect: 213, + effect: 215, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1056,18 +1056,18 @@ export default { TheDockhandsAssistant: { name: "TheDockhandsAssistant", internalName: "Sword_Mechanic", - nameLocale: 1439, + nameLocale: 1441, star: 4, url: imageUrl("Sword_Mechanic"), type: "Sword", - effect: 362, + effect: 364, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":449,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":451,"type":"float"}, ], @@ -1076,18 +1076,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1208, + nameLocale: 1210, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 729, + effect: 731, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1096,13 +1096,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 496, + nameLocale: 498, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1650, + effect: 1652, configs: null, @@ -1112,20 +1112,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 805, + nameLocale: 807, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 695, + effect: 697, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":697,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":700,"type":"float"}, ], @@ -1134,18 +1134,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 1031, + nameLocale: 1033, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1827, + effect: 1829, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1154,13 +1154,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1595, + nameLocale: 1597, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1740, + effect: 1742, configs: null, @@ -1170,18 +1170,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 644, + nameLocale: 646, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1721, + effect: 1723, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1726,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1728,"type":"int"}, ], @@ -1190,13 +1190,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 555, + nameLocale: 557, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 738, + effect: 740, configs: null, @@ -1206,18 +1206,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1299, + nameLocale: 1301, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 933, + effect: 935, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -1226,18 +1226,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1699, + nameLocale: 1701, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 356, + effect: 358, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1246,13 +1246,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1763, + nameLocale: 1765, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 918, + effect: 920, configs: null, @@ -1262,13 +1262,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1536, + nameLocale: 1538, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 739, + effect: 741, configs: null, @@ -1278,13 +1278,13 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1053, + nameLocale: 1055, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", - effect: 220, + effect: 222, configs: null, @@ -1294,13 +1294,13 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1360, + nameLocale: 1362, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", - effect: 215, + effect: 217, configs: null, @@ -1310,18 +1310,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1508, + nameLocale: 1510, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1547, + effect: 1549, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -1330,18 +1330,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1878, + nameLocale: 1880, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 297, + effect: 299, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -1350,18 +1350,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1762, + nameLocale: 1764, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 574, + effect: 576, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1370,13 +1370,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1567, + nameLocale: 1569, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 935, + effect: 937, configs: null, @@ -1386,13 +1386,13 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1515, + nameLocale: 1517, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", - effect: 225, + effect: 227, configs: null, @@ -1402,18 +1402,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 333, + nameLocale: 335, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1724, + effect: 1726, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1730,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1732,"type":"int"}, ], @@ -1422,18 +1422,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1829, + nameLocale: 1831, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 934, + effect: 936, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -1442,13 +1442,13 @@ export default { DebateClub: { name: "DebateClub", internalName: "Claymore_Reasoning", - nameLocale: 162, + nameLocale: 164, star: 3, url: imageUrl("Claymore_Reasoning"), type: "Claymore", - effect: 776, + effect: 778, configs: null, @@ -1458,18 +1458,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1088, + nameLocale: 1090, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 576, + effect: 578, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1478,13 +1478,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1309, + nameLocale: 1311, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 299, + effect: 301, configs: null, @@ -1494,18 +1494,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1707, + nameLocale: 1709, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1269, + effect: 1271, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1514,7 +1514,7 @@ export default { OldMercsPal: { name: "OldMercsPal", internalName: "Claymore_Oyaji", - nameLocale: 176, + nameLocale: 178, star: 2, url: imageUrl("Claymore_Oyaji"), type: "Claymore", @@ -1528,7 +1528,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1564, + nameLocale: 1566, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1542,7 +1542,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1057, + nameLocale: 1059, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1551,7 +1551,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1560,18 +1560,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1227, + nameLocale: 1229, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1068, + effect: 1070, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1580,20 +1580,20 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1446, + nameLocale: 1448, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", - effect: 208, + effect: 210, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":737,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":739,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1280,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1282,"type":"float"}, ], @@ -1602,18 +1602,18 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1835, + nameLocale: 1837, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", - effect: 209, + effect: 211, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":616,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":619,"type":"float"}, ], @@ -1622,20 +1622,20 @@ export default { TalkingStick: { name: "TalkingStick", internalName: "Claymore_BeastTamer", - nameLocale: 1427, + nameLocale: 1429, star: 4, url: imageUrl("Claymore_BeastTamer"), type: "Claymore", - effect: 674, + effect: 676, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1517,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1519,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1518,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1520,"type":"float"}, ], @@ -1644,18 +1644,18 @@ export default { TidalShadow: { name: "TidalShadow", internalName: "Claymore_Vorpal", - nameLocale: 1118, + nameLocale: 1120, star: 4, url: imageUrl("Claymore_Vorpal"), type: "Claymore", - effect: 359, + effect: 361, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1664,18 +1664,18 @@ export default { PortablePowerSaw: { name: "PortablePowerSaw", internalName: "Claymore_Mechanic", - nameLocale: 186, + nameLocale: 188, star: 4, url: imageUrl("Claymore_Mechanic"), type: "Claymore", - effect: 362, + effect: 364, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":449,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":451,"type":"float"}, ], @@ -1684,18 +1684,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1503, + nameLocale: 1505, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 732, + effect: 734, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1704,13 +1704,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 500, + nameLocale: 502, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 993, + effect: 995, configs: null, @@ -1720,20 +1720,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 416, + nameLocale: 418, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 402, + effect: 404, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1153,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1155,"type":"float"}, ], @@ -1742,20 +1742,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 643, + nameLocale: 645, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1482, + effect: 1484, configs: [ {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":24,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":383,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":385,"type":"float"}, ], @@ -1764,18 +1764,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 693, + nameLocale: 695, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1275, + effect: 1277, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1267,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1269,"type":"float"}, ], @@ -1784,20 +1784,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1584, + nameLocale: 1586, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 695, + effect: 697, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":697,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":700,"type":"float"}, ], @@ -1806,18 +1806,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1569, + nameLocale: 1571, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 777, + effect: 779, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -1826,18 +1826,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 336, + nameLocale: 338, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1723, + effect: 1725, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1730,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1732,"type":"int"}, ], @@ -1846,13 +1846,13 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 420, + nameLocale: 422, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", - effect: 220, + effect: 222, configs: null, @@ -1862,13 +1862,13 @@ export default { TheCatch: { name: "TheCatch", internalName: "Pole_Mori", - nameLocale: 34, + nameLocale: 35, star: 4, url: imageUrl("Pole_Mori"), type: "Polearm", - effect: 226, + effect: 228, configs: null, @@ -1878,13 +1878,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1539, + nameLocale: 1541, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 739, + effect: 741, configs: null, @@ -1894,13 +1894,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1884, + nameLocale: 1886, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 918, + effect: 920, configs: null, @@ -1910,18 +1910,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 330, + nameLocale: 332, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 572, + effect: 574, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -1930,18 +1930,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 278, + nameLocale: 280, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1611, + effect: 1613, configs: [ - {"default":true,"name":"ge2","title":1610,"type":"bool"}, + {"default":true,"name":"ge2","title":1612,"type":"bool"}, ], @@ -1950,13 +1950,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1109, + nameLocale: 1111, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1484, + effect: 1486, configs: null, @@ -1966,18 +1966,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1876, + nameLocale: 1878, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 298, + effect: 300, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -1986,18 +1986,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 769, + nameLocale: 771, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1721, + effect: 1723, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1726,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1728,"type":"int"}, ], @@ -2006,13 +2006,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 557, + nameLocale: 559, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 738, + effect: 740, configs: null, @@ -2022,13 +2022,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1705, + nameLocale: 1707, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 579, + effect: 581, configs: null, @@ -2038,18 +2038,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1881, + nameLocale: 1883, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 569, + effect: 571, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2058,13 +2058,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1306, + nameLocale: 1308, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 941, + effect: 943, configs: null, @@ -2074,7 +2074,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1706, + nameLocale: 1708, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -2088,7 +2088,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 771, + nameLocale: 773, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -2102,7 +2102,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1582, + nameLocale: 1584, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -2111,7 +2111,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2120,18 +2120,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1804, + nameLocale: 1806, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1555, + effect: 1557, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2140,18 +2140,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1594, + nameLocale: 1596, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 459, + effect: 461, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2160,18 +2160,18 @@ export default { BalladOfTheFjords: { name: "BalladOfTheFjords", internalName: "Pole_Shanty", - nameLocale: 594, + nameLocale: 596, star: 4, url: imageUrl("Pole_Shanty"), type: "Polearm", - effect: 1720, + effect: 1722, configs: [ - {"default":true,"name":"use_effect","title":621,"type":"bool"}, + {"default":true,"name":"use_effect","title":623,"type":"bool"}, ], @@ -2180,13 +2180,13 @@ export default { RightfulReward: { name: "RightfulReward", internalName: "Pole_Vorpal", - nameLocale: 245, + nameLocale: 247, star: 4, url: imageUrl("Pole_Vorpal"), type: "Polearm", - effect: 363, + effect: 365, configs: null, @@ -2196,18 +2196,18 @@ export default { ProspectorsDrill: { name: "ProspectorsDrill", internalName: "Pole_Mechanic", - nameLocale: 323, + nameLocale: 325, star: 4, url: imageUrl("Pole_Mechanic"), type: "Polearm", - effect: 361, + effect: 363, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":435,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":437,"type":"float"}, ], @@ -2216,18 +2216,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 434, + nameLocale: 436, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1369, + effect: 1371, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2236,13 +2236,13 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 498, + nameLocale: 500, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", - effect: 190, + effect: 192, configs: null, @@ -2252,13 +2252,13 @@ export default { EverlastingMoonglow: { name: "EverlastingMoonglow", internalName: "Catalyst_Kaleido", - nameLocale: 93, + nameLocale: 95, star: 5, url: imageUrl("Catalyst_Kaleido"), type: "Catalyst", - effect: 1093, + effect: 1095, configs: null, @@ -2268,20 +2268,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 587, + nameLocale: 589, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 695, + effect: 697, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":697,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":700,"type":"float"}, ], @@ -2290,18 +2290,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 984, + nameLocale: 986, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 931, + effect: 933, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2310,22 +2310,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1111, + nameLocale: 1113, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1548, + effect: 1550, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":563,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":565,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":417,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":419,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1718,"type":"float"}, ], @@ -2334,20 +2334,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 329, + nameLocale: 331, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 928, + effect: 930, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":744,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":746,"type":"float"}, ], @@ -2356,13 +2356,13 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1362, + nameLocale: 1364, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", - effect: 215, + effect: 217, configs: null, @@ -2372,13 +2372,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 558, + nameLocale: 560, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 738, + effect: 740, configs: null, @@ -2388,13 +2388,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1571, + nameLocale: 1573, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 785, + effect: 787, configs: null, @@ -2404,18 +2404,18 @@ export default { MappaMare: { name: "MappaMare", internalName: "Catalyst_Exotic", - nameLocale: 72, + nameLocale: 74, star: 4, url: imageUrl("Catalyst_Exotic"), type: "Catalyst", - effect: 1556, + effect: 1558, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2424,13 +2424,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1307, + nameLocale: 1309, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1532, + effect: 1534, configs: null, @@ -2440,13 +2440,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 639, + nameLocale: 641, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 918, + effect: 920, configs: null, @@ -2456,13 +2456,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1538, + nameLocale: 1540, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 739, + effect: 741, configs: null, @@ -2472,13 +2472,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 824, + nameLocale: 826, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 920, + effect: 922, configs: null, @@ -2488,20 +2488,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 423, + nameLocale: 425, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 930, + effect: 932, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":744,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":746,"type":"float"}, ], @@ -2510,18 +2510,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1879, + nameLocale: 1881, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 298, + effect: 300, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2530,20 +2530,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1335, + nameLocale: 1337, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 781, + effect: 783, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1152,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1154,"type":"float"}, ], @@ -2552,18 +2552,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1565, + nameLocale: 1567, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 774, + effect: 776, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2572,18 +2572,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1854, + nameLocale: 1856, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 573, + effect: 575, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2592,13 +2592,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 622, + nameLocale: 624, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1485, + effect: 1487, configs: null, @@ -2608,18 +2608,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1424, + nameLocale: 1426, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1559, + effect: 1561, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2628,13 +2628,13 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1562, + nameLocale: 1564, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", - effect: 97, + effect: 99, configs: null, @@ -2644,18 +2644,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1284, + nameLocale: 1286, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 296, + effect: 298, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2664,7 +2664,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 370, + nameLocale: 372, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2678,7 +2678,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 542, + nameLocale: 544, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2692,7 +2692,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1310, + nameLocale: 1312, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2701,7 +2701,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2710,18 +2710,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1113, + nameLocale: 1115, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1068, + effect: 1070, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2730,20 +2730,20 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 332, + nameLocale: 334, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1722, + effect: 1724, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":382,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":384,"type":"int"}, - {"default":2,"max":3,"min":0,"name":"diff_count","title":92,"type":"int"}, + {"default":2,"max":3,"min":0,"name":"diff_count","title":94,"type":"int"}, ], @@ -2752,18 +2752,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 436, + nameLocale: 438, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 939, + effect: 941, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2772,18 +2772,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1329, + nameLocale: 1331, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 791, + effect: 793, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2792,18 +2792,18 @@ export default { SacrificialJade: { name: "SacrificialJade", internalName: "", - nameLocale: 1657, + nameLocale: 1659, star: 4, url: imageUrl(""), type: "Catalyst", - effect: 469, + effect: 471, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2812,20 +2812,20 @@ export default { FlowingPurity: { name: "FlowingPurity", internalName: "Catalyst_Vorpal", - nameLocale: 1388, + nameLocale: 1390, star: 4, url: imageUrl("Catalyst_Vorpal"), type: "Catalyst", - effect: 782, + effect: 784, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":746,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":748,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":747,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":750,"type":"float"}, ], @@ -2834,18 +2834,18 @@ export default { BalladOfTheBoundlessBlue: { name: "BalladOfTheBoundlessBlue", internalName: "Catalyst_DandelionPoem", - nameLocale: 803, + nameLocale: 805, star: 4, url: imageUrl("Catalyst_DandelionPoem"), type: "Catalyst", - effect: 936, + effect: 938, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2854,18 +2854,18 @@ export default { CashflowSupervision: { name: "CashflowSupervision", internalName: "Catalyst_Wheatley", - nameLocale: 1696, + nameLocale: 1698, star: 5, url: imageUrl("Catalyst_Wheatley"), type: "Catalyst", - effect: 725, + effect: 727, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2874,18 +2874,18 @@ export default { TomeOfTheEternalFlow: { name: "TomeOfTheEternalFlow", internalName: "Catalyst_Iudex", - nameLocale: 69, + nameLocale: 71, star: 5, url: imageUrl("Catalyst_Iudex"), type: "Catalyst", - effect: 1273, + effect: 1275, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2894,18 +2894,18 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 264, + nameLocale: 266, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", - effect: 210, + effect: 212, configs: [ - {"default":0,"max":4,"min":0,"name":"stack","title":38,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"stack","title":39,"type":"int"}, ], @@ -2914,18 +2914,18 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1832, + nameLocale: 1834, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 727, + effect: 729, configs: [ - {"default":0,"max":3,"min":0,"name":"stack","title":48,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"stack","title":49,"type":"int"}, ], @@ -2934,18 +2934,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1395, + nameLocale: 1397, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1826, + effect: 1828, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -2954,13 +2954,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 499, + nameLocale: 501, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 988, + effect: 990, configs: null, @@ -2970,18 +2970,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1744, + nameLocale: 1746, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 924, + effect: 926, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -2990,18 +2990,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 983, + nameLocale: 985, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1516, + effect: 1518, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -3010,13 +3010,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1451, + nameLocale: 1453, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 921, + effect: 923, configs: null, @@ -3026,13 +3026,13 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1400, + nameLocale: 1402, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", - effect: 200, + effect: 202, configs: null, @@ -3042,13 +3042,13 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1361, + nameLocale: 1363, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", - effect: 215, + effect: 217, configs: null, @@ -3058,13 +3058,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 624, + nameLocale: 626, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 942, + effect: 944, configs: null, @@ -3074,13 +3074,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 561, + nameLocale: 563, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 738, + effect: 740, configs: null, @@ -3090,7 +3090,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 713, + nameLocale: 715, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -3101,7 +3101,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -3110,18 +3110,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1570, + nameLocale: 1572, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1691, + effect: 1693, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3130,18 +3130,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 999, + nameLocale: 1001, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1721, + effect: 1723, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1726,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1728,"type":"int"}, ], @@ -3150,20 +3150,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 613, + nameLocale: 615, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 929, + effect: 931, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":744,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":746,"type":"float"}, ], @@ -3172,18 +3172,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1328, + nameLocale: 1330, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 940, + effect: 942, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3192,13 +3192,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1537, + nameLocale: 1539, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 739, + effect: 741, configs: null, @@ -3208,18 +3208,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1704, + nameLocale: 1706, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 919, + effect: 921, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -3228,18 +3228,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1877, + nameLocale: 1879, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 298, + effect: 300, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1523,"type":"float"}, ], @@ -3248,18 +3248,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1812, + nameLocale: 1814, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 784, + effect: 786, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3268,18 +3268,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1859, + nameLocale: 1861, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 571, + effect: 573, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3288,13 +3288,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 353, + nameLocale: 355, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 299, + effect: 301, configs: null, @@ -3304,13 +3304,13 @@ export default { Messenger: { name: "Messenger", internalName: "Bow_Msg", - nameLocale: 187, + nameLocale: 189, star: 3, url: imageUrl("Bow_Msg"), type: "Bow", - effect: 1692, + effect: 1694, configs: null, @@ -3320,18 +3320,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1338, + nameLocale: 1340, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1698, + effect: 1700, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3340,20 +3340,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 626, + nameLocale: 628, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 922, + effect: 924, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3362,7 +3362,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 349, + nameLocale: 351, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3376,7 +3376,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1217, + nameLocale: 1219, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3390,18 +3390,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1453, + nameLocale: 1455, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1272, + effect: 1274, configs: [ - {"default":true,"name":"is_enemy_around","title":401,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":403,"type":"bool"}, ], @@ -3410,18 +3410,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1497, + nameLocale: 1499, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 256, + effect: 258, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1204,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1206,"type":"option"}, ], @@ -3430,18 +3430,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1214, + nameLocale: 1216, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1480, + effect: 1482, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3450,13 +3450,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1372, + nameLocale: 1374, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 775, + effect: 777, configs: null, @@ -3466,7 +3466,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1226, + nameLocale: 1228, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3475,7 +3475,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3484,18 +3484,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1860, + nameLocale: 1862, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1684, + effect: 1686, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":588,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":590,"type":"float"}, ], @@ -3504,20 +3504,20 @@ export default { TheFirstGreatMagic: { name: "TheFirstGreatMagic", internalName: "Bow_Pledge", - nameLocale: 1000, + nameLocale: 1002, star: 5, url: imageUrl("Bow_Pledge"), type: "Bow", - effect: 1693, + effect: 1695, configs: [ - {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1727,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1729,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1718,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1720,"type":"float"}, ], @@ -3526,18 +3526,18 @@ export default { ScionOfTheBlazingSun: { name: "ScionOfTheBlazingSun", internalName: "Bow_Gurabad", - nameLocale: 1183, + nameLocale: 1185, star: 4, url: imageUrl("Bow_Gurabad"), type: "Bow", - effect: 1685, + effect: 1687, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3546,18 +3546,18 @@ export default { SongOfStillness: { name: "SongOfStillness", internalName: "Bow_Vorpal", - nameLocale: 1796, + nameLocale: 1798, star: 4, url: imageUrl("Bow_Vorpal"), type: "Bow", - effect: 360, + effect: 362, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1521,"type":"float"}, ], @@ -3566,18 +3566,18 @@ export default { RangeGauge: { name: "RangeGauge", internalName: "Bow_Mechanic", - nameLocale: 1117, + nameLocale: 1119, star: 4, url: imageUrl("Bow_Mechanic"), type: "Bow", - effect: 361, + effect: 363, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":435,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":437,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index f7067003..8eb9d071 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -24,6 +24,7 @@ "「千年的大乐章·抗争之歌」效果:普通攻击、重击、下落攻击造成的伤害提升16%/20%/24%/28%/32%,攻击力提升20%/25%/30%/35%/40%。", "「千年的大乐章·揭旗之歌」效果:普通攻击速度提升12%/15%/18%/21%/24%,攻击力提升20%/25%/30%/35%/40%。", "「Consummation」Avg Stack", + "Enable 「Chilling Penalty」", "Jade-Claimed Flower Cryo", "Jade-Claimed Flower Hydro", "Jade-Claimed Flower Pyro", @@ -48,6 +49,7 @@ "「Curiosity」Equivalent Stack", "「Mistsplitter's Emblem」Stack", "「Thunder Emblem」Stack", + "Punch per Normal Attack Combo", "1-Stack DMG", "Stack 1 Conductive Hold DMG", "Stack-1 Weight", @@ -210,8 +212,8 @@ "After the character’s Elemental Skill hits an opponent, their ATK will be increased by 20%-25%-30%-35%-40% for 8s. After the character takes DMG, their ATK will be increased by 20%-25%-30%-35%-40% for 8s. The 2 aforementioned effects can be triggered even when the character is not on the field. Additionally, when not protected by a shield, the character’s Max HP will be increased by 32%-40%-48%-56%-64%.", "Within 8s after the character’s Elemental Skill hits an opponent or triggers an Elemental Reaction, the character’s ATK and Elemental Mastery will be increased by 12%-15%-18%-21%-24% and 48-60-72-84-96 respectively.", "Elemental Skill and Elemental Burst DMG increased by 12%-15%-18%-21%-24%. After a Normal Attack, Charged Attack, Elemental Skill or Elemental Burst hits an opponent, 1 stack of Ashen Nightstar will be gained for 12s. When 1/2/3/4 stacks of Ashen Nightstar are present, ATK is increased by 10/20/30/48%-12.5/25/37.5/60%-15/30/45/72%-17.5/35/52.5/84%-20/40/60/96%. The stack of Ashen Nightstar created by the Normal Attack, Charged Attack, Elemental Skill or Elemental Burst will be counted independently of the others.", - "After Elemental Skills or Bursts hit opponents, the targets’ Dendro RES will be decreased by 30% for 8s. This effect can be triggered even if the equipping character is not on the field.", "元素战技或元素爆发命中敌人后,使命中目标的草元素抗性降低30%,持续8秒。装备者处于队伍后台时,依然能触发该效果。", + "After Elemental Skills or Bursts hit opponents, the targets’ Dendro RES will be decreased by 30% for 8s. This effect can be triggered even if the equipping character is not on the field.", "Increases Elemental Skill CRIT Rate by 8%-10%-12%-14%-16%. Additionally, increases Energy Recharge by 16%-20%-24%-28%-32% for 5s after using an Elemental Skill.", "E Hit", "After damaging an opponent with an Elemental Skill, the skill has a 40%-50%-60%-70%-80% chance to end its own CD. Can only occur once every 30-26-22s-19-16ss.", @@ -227,12 +229,12 @@ "Increases Elemental Burst DMG by 12%-15%-18%-21%-24%. When Elemental Burst hits opponents, there is a 100% chance of summoning a huge onrush of tuna that deals 100%-125%-150%-175%-200% ATK as AoE DMG. This effect can occur once every 15s.", "Increases Elemental Burst DMG by 16%-20%-24%-28%-32% and Elemental Burst CRIT Rate by 6%-7.5%-9%-10.5%-12%.", "Elemental Burst Rate", - "EM", "Elemental Mastery", + "EM", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", "Elemental Mastery +80", - "Increases Elemental Mastery by 80.", "Elemental Mastery +80.", + "Increases Elemental Mastery by 80.", "EM Valid", "EM Weight", "Energy Below 50%", @@ -402,9 +404,9 @@ "Meow-teor Kick", "Enemy around", "On hit, increases ATK by 3.2%-3.9%-4.6%-5.3%-6% for 6s. Max 7 stacks. This effect can only occur once every 0.3s. While in possession of the maximum possible stacks, DMG dealt is increased by 12%-15%-18%-21%-24%.", + "Regeneration on Hit", "HP Regeneration Per Hit", "HP Regeneration", - "Regeneration on Hit", "C2「Ceremony: Homecoming of Spirits」Stacks", "C2「Origins Known From the Stem」Ratio", "C2 Ratio", @@ -459,8 +461,8 @@ "Increases Elemental Burst DMG by 25% of Energy Recharge. A maximum of 75% bonus DMG can be obtained in this way.", "Each 1,000 points of Nilou’s Max HP above 30,000 will cause the DMG dealt by Bountiful Cores created by characters affected by Golden Chalice’s Bounty to increase by 7%.
The maximum increase in Bountiful Core DMG that can be achieved this way is 300%.", "The equipping character gains 52%-65%-78%-91%-104% of their Elemental Mastery as bonus ATK. When an Elemental Skill hits opponents, the Dream of the Scarlet Sands effect will be gained for 10s: The equipping character will gain 28%-35%-42%-49%-56% of their Elemental Mastery as bonus ATK. Max 3 stacks.", - "Basic DMG", "Base DMG", + "Basic DMG", "Under Windfavored State", "Under「Raging Oni King」", "Under「Suiyuu」", @@ -597,8 +599,8 @@ "Feather of Jagged Peaks", "Goblet of Chiseled Crag", "Saichimonji Slash DMG", - "Avg Stack", "AVG Stack", + "Avg Stack", "Avg Trigger Rate", "Thundersoother", "Thundersoother's Diadem", @@ -615,8 +617,8 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", - "Equivalent Rate of Effect", "Rate", + "Equivalent Rate of Effect", "Apply Ratio", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", @@ -696,8 +698,8 @@ "护盾强效提升15%。角色处于护盾保护状态时,①造成的伤害提升15%,对敌人造成伤害时会使敌人的的②岩元素抗性降低20%,持续15秒。", "Increases Shield Strength by 20%-25%-30%-35%-40%. Scoring hits on opponents increases ATK by 4%-5%-6%-7%-8% for 8s. Max 5 stacks. Can only occur once every 0.3s. While protected by a shield, this ATK increase effect is increased by 100%.", "Increases Shield Strength by 35%.", - "Shield Rate", "Shield Coverage", + "Shield Rate", "Floral Brush", "Picking up Mora restores 300 HP.", "When picked up, the Leaf will grant the character 60 Elemental Mastery for 12s", @@ -746,8 +748,8 @@ "Effect2 Ratio", "Effect① Ratio", "Effect 1 Rate", - "Effect 2 Rate", "Effect② Ratio", + "Effect 2 Rate", "Effect Apply Ratio", "Equivalent Stack", "Enemy Pyro Coverage", @@ -1006,7 +1008,7 @@ "Max Cutting DMG", "Maximize Energy Recharge", "Maximize Elemental Mastery", - "Maximize Rebuke: Vaulting Fist DMG", + "Maximize normal+charged combo DMG", "Maximize ATK", "Maximize HP", "Maximize DEF", @@ -1173,10 +1175,10 @@ "Spiritvein DMG", "Brilliance", "Leonine Bite", - "Tapping DMG", "Tap DMG", - "Tapping Skill DMG", + "Tapping DMG", "Tap Skill DMG", + "Tapping Skill DMG", "Press Skill DMG", "Fiery Collapse DMG", "Crimson Witch of Flames", @@ -1197,9 +1199,9 @@ "Burst DMG", "Explosion DMG", "Explosive Puppet", - "Explosion DMG", "", "Explosion DMG", + "Explosion DMG", "Physical DMG", "Maximize Crit or Avg Physical Damage", "Inuzaka All-Round Defense", @@ -1518,8 +1520,8 @@ "While the character equipped with this weapon is in the party but not on the field, their DMG increases by 2%-2.5%-3%-3.5%-4% every second up to a max of 20%-25%-30%-35%-40%. When the character is on the field for more than 4s, the aforementioned DMG buff decreases by 4%-5%-6%-7%-8% per second until it reaches 0%.", "Effect 1 Rate", "Effect 2 Rate", - "Effect Rate", "Avg Effect Ratio", + "Effect Rate", "Avg Effect Stack", "Maiden Beloved", "Moment of Judgment", @@ -1650,8 +1652,8 @@ "Marechaussee Hunter", "Dealing Elemental DMG increases all DMG by 6%-7.5%-9%-10.5%-12% for 6s. Max 2 stacks. Can occur once every 1s.", "Increases all DMG by 8%-10%-12%-14%-16%. After using an Elemental Burst, Normal or Charged Attack, on hit, creates a vacuum blade that does 80%-100%-120%-140%-160% of ATK as DMG to opponents along its path. Lasts for 20s or 8 vacuum blades.", - "Physical DMG +25%", "Physical DMG is increased by 25%.", + "Physical DMG +25%", "Fashioner’s Tanglevine Shaft", "Triggered Burning, Bloom, Catalyze or Spread", "Frost-Weaved Dignity", @@ -1673,13 +1675,13 @@ "Charged Attack: Equitable Judgment", "Charged Attack DMG", "Charged DMG-1", - "Charnged DMG-1", - "Charged Attack DMG-1", "Charged Attack-1", - "Charged DMG-2", - "Charnged DMG-2", + "Charged Attack DMG-1", + "Charnged DMG-1", "Charged Attack-2", "Charged Attack DMG-2", + "Charnged DMG-2", + "Charged DMG-2", "Charnged DMG-3", "Charged Attack DMG/3", "Charged Attack DMG(With talent)", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index 5d582aa7..1282dc8a 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -24,6 +24,7 @@ "「千年的大乐章·抗争之歌」效果:普通攻击、重击、下落攻击造成的伤害提升16%/20%/24%/28%/32%,攻击力提升20%/25%/30%/35%/40%。", "「千年的大乐章·揭旗之歌」效果:普通攻击速度提升12%/15%/18%/21%/24%,攻击力提升20%/25%/30%/35%/40%。", "「圆顿」等效层数", + "「寒烈的惩裁」状态", "「拾玉得花」染冰", "「拾玉得花」染水", "「拾玉得花」染火", @@ -48,6 +49,7 @@ "「问答」效果等效层数", "「雾切之巴印」层数", "「飞雷之巴印」层数", + "一套普攻打几个重击", "一层伤害", "一层引雷长按伤害", "一层权重", @@ -1006,7 +1008,7 @@ "最大切割伤害", "最大化元素充能效率", "最大化元素精通", - "最大化惩戒·凌跃拳伤害", + "最大化强化普+重混合伤害", "最大化攻击力", "最大化生命值", "最大化防御力",